Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.

Shell Hosting


ghost's Avatar
0 0

Does any one here know how i can host my own shell accounts? Help would be GREATLY appreciated. if what u post is very usefull u can have ann acount if/when i get it to work. thanks :D -z3r0phr34k


ghost's Avatar
0 0

100webspace.com


Mr_Cheese's Avatar
0 1

i dont think 100webspace gives out shell accounts.

correct me if im wrong though.


ghost's Avatar
0 0

they dont give out shell accounts, but you can easily use a php script to passthru() and commands you want and display them in a text box or sometyhing


AldarHawk's Avatar
The Manager
0 0

for what reason do you want a shell account? PM me with full details on what you want it for and I can figure something out :P


ghost's Avatar
0 0

i dont think u guys see what im saying. i want to host shells for people to telnet to like the ones that the black show network or hbx has. thanks


ghost's Avatar
0 0

If you've got the box yourself, then you just need a static IP from your ISP.

If not, then you'll need to buy/rent a server.


ghost's Avatar
0 0

ya, i already set it to static


ghost's Avatar
0 0

Then set up an SSH/telnet server on your box.

I've never set one up myself, so the best thing you could probably do is download the one you want, and get a tutorial for your own OS.

Sorry I can't be of more help.


ghost's Avatar
0 0

Well any thing helps so thanks. Im running it on a fairly old computer and ive got DSL so im lookin for a way to get it to use a network card. If not ill just buy a newer computer and set it up on there i guess. Thanks Bobby :)


ghost's Avatar
0 0

Cant ANYONE help me?


ghost's Avatar
0 0

Run FreeBSD or CentOS.

Install the ssh-server package, or preferrably compile it yourself.

Install Apache and PHP.

Create a script that has a username form that submits to this:

<?php
$user=clean_this_up($_POST['user']);
$pass=clean_this_up($_POST['user']);
system("adduser . $user . "-p " . $pass);
?>

Make a method called clean_this_up to make sure no piping or ampersands are used. The script itself is still insecure, but it's a start for you.


ghost's Avatar
0 0

THANKS SO MUCH. :D:D:D