It looks like you're new here. If you want to get involved, click one of these buttons!
#!/usr/bin/perl
use IO::Socket;
my $sock = new IO::Socket::INET (
PeerAddr => 'netbook1-linux',
PeerPort => '8880',
Proto => 'tcp',
);
die \"Could not create socket: $!\n\" unless $sock;
print $sock \"Connected!!\n\";
while ($sock) {
print \"Connected, here's your choices\n\";
print \"1. Say Hello\n\";
print \"2. quit\n\";
print \">> \";
$choice = <STDIN>;
chomp ($choice);
if ($choice eq \"1\") {
print \"What is your msg?\n\";
print \">> \";
$msg = <STDIN>;
chomp($msg);
print $sock (\"$msg \n\");
system(\"clear\");
} elsif ($choice eq \"2\") {
close($sock);
exit
}
}
#!/usr/bin/perl
use IO::Socket;
my $sock = new IO::Socket::INET (
LocalHost => 'Netbook1-Linux',
LocalPort => '8880',
Proto => 'tcp',
Listen => 1,
Reuse => 1,
);
die \"Could not create socket: $!\n\" unless $sock;
my $new_sock = $sock->accept();
while (<$new_sock>) {
print $_;
}
close($sock);
Nice work Semtex prime .. I am a python Fanboy but stil i must concede this code looks slick .. you can make a IRC bot using it which will greet ppl when they visit iexploit irc .. :D .. That would be cool :D ..
Yes i understand :) .. One tends to be inclined towards one of the scripting languages more and your auto rooter plan is good :)you can also add the functionality of "defacing" .. i mean changing the index page with what user wants to be .. I dont support defacing though but that would help a lot of skids though .. What i like about your project is concept of automating the same old shit .. This is what hackers do :) .. Automate the routine steps and turn mind towards bigger problems .. Kudos to ur project
Yes i understand :) .. One tends to be inclined towards one of the scripting languages more and your auto rooter plan is good :)you can also add the functionality of "defacing" .. i mean changing the index page with what user wants to be .. I dont support defacing though but that would help a lot of skids though .. What i like about your project is concept of automating the same old shit .. This is what hackers do :) .. Automate the routine steps and turn mind towards bigger problems .. Kudos to ur project
Auto-deface is now implemented, it deletes the current index and downloads a deface page (index) to where the old one was. For the greyhats i'm thinking of a greyhat option which moves the old index page instead of deleting it. I love finding different ways of doings things. Exploiter's features could probably be done by 3 or 4 different programs/scripts or manually a lot slower. Nice to bring them all together :)