Closed Thread
Page 1 of 2 12 LastLast
Results 1 to 15 of 28

Thread: Start your own web host with HostBuilder!!!

  1. #1
    Junior Member tlsuess is on a distinguished road
    Join Date
    May 2006
    Posts
    21

    Lightbulb Start your own web host with HostBuilder!!!

    Starting your own web host is now much easier and simpler! Don't even bother buying/renting a web server! You can start your own host from a shared web hosting plan! NO LIE!!!

    My name is Todd, the creator of HostBuilder, and I am here to tell you that HostBuilder is the tool for you if you want to start a web host but just don't have the resources or the money for them.

    HostBuilder is a web hosting tool designed for people who want to start a web host but can't afford the web server with root access.

    If you're really enthusiastic about starting a web host and learning how web hosting works in a nice and user-friendly way, HostBuilder is just for you!

    Check out our screenshots:
    http://scripts.datacomponents.net/up...ages/hb1_f.png
    http://scripts.datacomponents.net/up...ages/hb2_f.png
    http://scripts.datacomponents.net/up...ages/hb3_f.png
    http://scripts.datacomponents.net/up...ages/hb4_f.png

    You can purchase the full copy for $49.99 at: http://scripts.datacomponents.net/index.php/hostbuilder

    Or you can download the FREE Edition here: http://scripts.datacomponents.net/hbf.zip

  2. #2
    b& Stan is a jewel in the roughStan is a jewel in the rough
    Join Date
    Jan 2008
    Location
    UK
    Posts
    413
    You my friend, may have just released an unholy evil upon the world.

    Now the forums and communities will be overcome by the ammount of 12 year olds running around overselling on a shared hosting account.

    Not only would that be bad for the people hosting them, it would make real hosts look bad.


    And you go on about how this scripts is for those that cant afford to start a webhost, then you charge $50 for the script. That my friend, is called a contradiction. But to be honest, if you cant afford to start a web host, dont bother.

  3. #3
    Devious Deviant Kwek is a glorious beacon of lightKwek is a glorious beacon of lightKwek is a glorious beacon of lightKwek is a glorious beacon of lightKwek is a glorious beacon of lightKwek is a glorious beacon of lightKwek is a glorious beacon of light Kwek's Avatar
    Join Date
    Feb 2004
    Location
    Singapore
    Posts
    1,649
    I actually think that is quite a good script if used correctly.

    I would say the price is too high though. You may want to consider that point.


  4. #4
    stop staring krakjoe is a splendid one to beholdkrakjoe is a splendid one to beholdkrakjoe is a splendid one to beholdkrakjoe is a splendid one to beholdkrakjoe is a splendid one to beholdkrakjoe is a splendid one to beholdkrakjoe is a splendid one to beholdkrakjoe is a splendid one to beholdkrakjoe is a splendid one to behold krakjoe's Avatar
    Join Date
    May 2006
    Location
    UK
    Posts
    3,616
    A bit offtopic, but should be said all the same; I'm sure users of this thread will look at your site and think they are getting something they are not ...

    Quote Originally Posted by tEncoder
    tEncoder is an encryption software designed to encrypt PHP files for use as software. tEncoder uses a complex encryption system to encode PHP scripts into standalone encrypted scripts. SCRIPTS RUN THROUGH tEncoder DO NOT REQUIRE ANY SOFTWARE TO RUN. They are standalone meaning they run by themselves. All you need to do is upload your script, encode it, and download it. It's as simple as that.
    It's certainly not complex. You'll never achieve decent protection using php, you must use C and write your own extension, look for vld ...

    PHP Code:
    <?
    /*
      tEncoder
      (C) 2007 Data Components Software Development
    */

    function encrypt1($source$dest) {
    $typedef chr(36);

    $b64dc1 "?><? 
    "
    .$typedef."_CHAR=\"\";
    "
    .$typedef."_CHAR2=\"\";
    for("
    .$typedef."i=0;".$typedef."i<255;".$typedef."i++)
    {
    "
    .$typedef."_CHAR.=chr(".$typedef."i);
    }
    for("
    .$typedef."i=255;".$typedef."i>=0;".$typedef."i--)
    {
    "
    .$typedef."_CHAR2.=chr(".$typedef."i);
    }
    "
    .$typedef."_DECODE64=base64_decode(".$typedef."_DECODE);
    "
    .$typedef."_DECRYPT=strtr(".$typedef."_DECODE64,".$typedef."_CHAR2,".$typedef."_CHAR);
    eval("
    .$typedef."_DECRYPT);
    return;
    die();
    ?>"
    ;

    $hnd fopen($source"r");
    $code fread($hndfilesize($source));
    fclose($hnd);
    for(
    $i=0;$i<255;$i++)
    {
    $_CHAR.=chr($i);
    }
    for(
    $i=255;$i>=0;$i--)
    {
    $_CHAR2.=chr($i);
    }
    $code "?>".$code;
    $code strtr($code$_CHAR2$_CHAR);
    $code base64_encode($code);

    $hnd fopen($dest"w");
    fwrite($hnd"<? ".$typedef."_DECODE='".$code."
    ';
    "
    .$typedef."_CMD='".base64_encode($b64dc1)."
    ';
    eval(base64_decode(stripslashes("
    .$typedef."_CMD)));
    return;
    ?>"
    );
    fclose($hnd);

    }

    function 
    encrypt($source$dest) {
    // Encrypts files
    encrypt1($source$source.".1");
    encrypt1($source.".1"$source.".2");
    encrypt1($source.".2"$source.".3");
    encrypt1($source.".3"$source.".4");
    encrypt1($source.".4"$dest);
    unlink($source.".1");
    unlink($source.".2");
    unlink($source.".3");
    unlink($source.".4");
    }

    function 
    encryptdir($source$dest) {
      
    $h opendir($source);
      while (
    $d readdir($h)) {
        if (
    $d != '.' && $d != '..') {
          
    $p pathinfo($source."/".$d);
          if (
    is_dir($source."/".$d)) {
            
    mkdir($dest."/".$d0777);
            
    encryptdir($source."/".$d$dest."/".$d);
          } elseif (
    strtolower($p['extension']) == "php" || strtolower($p['extension']) == "inc") {
            
    encrypt($source."/".$d$dest."/".$d);
            echo 
    $source."/".$d." => ".$dest."/".$d." - <font color=\"FF0000\">ENCRYPTED</font><br>";
          }
        }
      }
    }

    ?>
    as I disassembled your source code, in effect I wrote every character of the file and it's also legal to publish snippets of copyrighted material for criticism and review ... I haven't broken any laws, it's legal to reverse engineer software for educational purposes ...
    (\__/) Joe Watkins
    (='.'=) Software Architect
    (")_(") http://pthreads.org
    Copy and paste bunny into your sig, help him gain world domination.

  5. #5
    Jay Street iBrightDev has a reputation beyond reputeiBrightDev has a reputation beyond reputeiBrightDev has a reputation beyond reputeiBrightDev has a reputation beyond reputeiBrightDev has a reputation beyond reputeiBrightDev has a reputation beyond reputeiBrightDev has a reputation beyond reputeiBrightDev has a reputation beyond reputeiBrightDev has a reputation beyond reputeiBrightDev has a reputation beyond reputeiBrightDev has a reputation beyond repute iBrightDev's Avatar
    Join Date
    Oct 2005
    Location
    Not sure, need a GPS.
    Posts
    7,125
    i am just curious as to how you disassembled the code Joe. that is pretty impressive IMO. i wouldnt know where to even start doing something like that.
    Full-service digital agency based in Scottsdale, Arizona - iBright Development

  6. #6
    Junior Member tlsuess is on a distinguished road
    Join Date
    May 2006
    Posts
    21
    Try disassembling this:
    Code:
    <?
    // Encrypted by NexCoder v1.0
    require "nexcoder.php";
    
    /*
    --NEXCODER-VERSION-1.0-ENCODED-FILE-START--
    WGplQ3Z0ampReGJYOUNNV
    kdtVmJBRGJqRjQzVkZuMl
    ZQUHdXbE5qVmRhTlpwUmh
    DdlJiMW0zVW1sRGJZWFFU
    V2dVRVlxUDVqbEh0ZFg0O
    DBGZjRkdnBtSTkzQ1psR1
    lCUEhrbUFOampGWjhjZ1p
    3WnBLRkNxWURad0tZQlhE
    VWxpblp2TnRXUWZpa3FOZ
    UlHS25mUE5OPT0=
    --NEXCODER-VERSION-1.0-ENCODED-FILE-END--
    */
    ?>
    NexCoder is coming out soon which will have multiple encryptions.

    To 3RH-Stan, I said, "Or you can download the FREE Edition here."

    Think of it like this:

    You buy HostBuilder for $50. You start your web host paying $5/month in shared hosting fees. After one month, you are set back $55 but you received 20 or 30 clients with some promotion and advertising. You publish ads from an advertiser (e.g. AdSense) on your clients web pages and then after a number of months, you will be making more than enough to pay back the $50 and the hosting fees.

  7. #7
    stop staring krakjoe is a splendid one to beholdkrakjoe is a splendid one to beholdkrakjoe is a splendid one to beholdkrakjoe is a splendid one to beholdkrakjoe is a splendid one to beholdkrakjoe is a splendid one to beholdkrakjoe is a splendid one to beholdkrakjoe is a splendid one to beholdkrakjoe is a splendid one to behold krakjoe's Avatar
    Join Date
    May 2006
    Location
    UK
    Posts
    3,616
    I didn't just have the encoded file first time around, I had the file that encoded it ... show me nexcoder.php then ...
    (\__/) Joe Watkins
    (='.'=) Software Architect
    (")_(") http://pthreads.org
    Copy and paste bunny into your sig, help him gain world domination.

  8. #8
    Junior Member tlsuess is on a distinguished road
    Join Date
    May 2006
    Posts
    21
    I wrote tEncoder a while ago. It's pretty pointless but NexCoder will have something to show. Right now I have the "nexcoder.php" encrypted with ionCube but I'm thinking of maybe writing my own but the only problem would be making it multiplatform.

  9. #9
    Junior Member tlsuess is on a distinguished road
    Join Date
    May 2006
    Posts
    21
    But back on topic, what do you guys think of HostBuilder?

  10. #10
    JSHosts.com [JSH]John is a glorious beacon of light[JSH]John is a glorious beacon of light[JSH]John is a glorious beacon of light[JSH]John is a glorious beacon of light[JSH]John is a glorious beacon of light[JSH]John is a glorious beacon of light [JSH]John's Avatar
    Join Date
    Aug 2005
    Location
    Newcastle, UK
    Posts
    1,957
    It looks interesting but I'm just wondering how it would monitor the bandwidth usage since it doesn't have much access to the server and couldn't the ads just be removed by the users? I'm guessing it's using an htaccess to include the adcode or something similar since it won't have root access.

    I'll have to take a look at this when I get a bit more time.
    JSHosts - UK Web Hosting
    Web Hosting | Reseller Hosting | OpenVZ VPS | Xen VPS
    cPanel | Softaculous | CloudLinux | CloudFlare | R1Soft Backups

  11. #11
    Nlc You Say? Jordan Mclay is a name known to allJordan Mclay is a name known to allJordan Mclay is a name known to allJordan Mclay is a name known to allJordan Mclay is a name known to allJordan Mclay is a name known to allJordan Mclay is a name known to all
    Join Date
    Feb 2007
    Location
    Airdrie , Scotland
    Posts
    1,637
    Just a heads up, your demo links dont work

    it should be http://scripts.datacomponents.net/hb/manager.php

    you missed out the s in components
    ServerBros Limited
    UK Company Number - SC423338
    Reliable Shared, Reseller & VPS Hosting
    http://serverbros.co.uk

  12. #12
    Junior Member tlsuess is on a distinguished road
    Join Date
    May 2006
    Posts
    21
    Thanks for letting me know! Fixed it.

  13. #13
    Welcome to Life Skylar is just really niceSkylar is just really niceSkylar is just really niceSkylar is just really niceSkylar is just really nice
    Join Date
    May 2007
    Location
    Washington
    Posts
    1,360
    Can't wait to see somebody use this on hostgator or bluehost and get terminated

  14. #14
    Wo ist mein handy utcrazy is a name known to allutcrazy is a name known to allutcrazy is a name known to allutcrazy is a name known to allutcrazy is a name known to allutcrazy is a name known to allutcrazy is a name known to all utcrazy's Avatar
    Join Date
    Jul 2005
    Location
    Toronto
    Posts
    2,891
    There's already a plethora of 12 year old hosts, even on FWS. I'm actually surprised to find people actually accepting hosting from monitors who aren't even liable for any misappropriation on their part. This really isn't going to cause the number to grow much in my opinion.

  15. #15
    Junior Member tlsuess is on a distinguished road
    Join Date
    May 2006
    Posts
    21
    My motto: "Why not help someone achieve a vision?" There are people I talk to who want to build a web host but just don't want to pay fees nearly $100/month for a server where they won't know how to install anything or run anything. This tool is like a step-up for them. It's so they can learn about web hosting: managing accounts, creating the best hosting plans, making profits through advertising, etc. So if it's not illegal, why not help them achieve that goal? I talked to several web hosts and they said with paid web hosting plans, you can start your own free web host (but obviously running a paid host is illegal).

    Most free web hosts now-a-days are run by younger generations in society until eventually they either die out or just shut down because of either inactivity or not being able to cover the costs. But it's a learning experience nonetheless.

    This is what HostBuilder is meant to achieve along with the satisfaction of running a free web host.

Closed Thread

Similar Threads

  1. Replies: 0
    Last Post: April 4th, 2004, 13:06
  2. i want to start a host....need help...
    By bobdoom in forum Free hosting requests
    Replies: 12
    Last Post: June 22nd, 2002, 04:05
  3. Start a web host
    By brettmeyers in forum Paid hosting requests
    Replies: 14
    Last Post: August 18th, 2001, 06:10
  4. What do you need to start a web host?
    By jonnyt in forum Paid hosting requests
    Replies: 22
    Last Post: July 17th, 2001, 20:03

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts