USBNova/USBNova.ino

140 lines
3.5 KiB
Arduino
Raw Normal View History

2022-06-30 12:19:02 -07:00
/*
* Note2: If your flash is not formatted as FAT12 previously, you could format it using
* follow sketch https://github.com/adafruit/Adafruit_SPIFlash/tree/master/examples/SdFat_format
*/
#include "config.h"
#include "debug.h"
#include "src/keyboard/keyboard.h"
#include "src/led/led.h"
#include "src/duckparser/duckparser.h"
#include "src/msc/msc.h"
#include "src/selector/selector.h"
enum Mode {
SETUP, ATTACK
};
Mode mode;
void setup() {
debug_init();
debugln("Started");
msc::init();
2022-06-30 12:19:02 -07:00
keyboard::init();
selector::init();
led::init();
2022-07-03 09:41:25 -07:00
/*
// Wait until Serial Monitor was opened
while (!Serial) {
2022-07-03 09:41:25 -07:00
delay(1);
}
*/
2022-07-03 09:41:25 -07:00
debugln("[Started]");
2022-07-03 09:41:25 -07:00
mode = selector::read() ? SETUP : ATTACK;
// ========== Setup Mode ========== //
if (mode == SETUP) {
// Set LED to green
led::setColor(0, 255, 0);
while (true) {
if (selector::changed()) {
mode = selector::read() ? SETUP : ATTACK;
if (mode == ATTACK) {
led::setColor(255, 0, 0); // Turn LED red
start_attack(); // Start attack
led::setColor(0, 255, 0); // Turn LED green
mode = SETUP;
}
}
delay(100);
}
}
// ========== Setup Mode ========== //
else if (mode == ATTACK) {
// Set LED to red
led::setColor(255, 0, 0);
2022-07-03 09:41:25 -07:00
// Start running keystroke injection attack
2022-07-03 09:41:25 -07:00
start_attack();
}
2022-07-03 09:41:25 -07:00
debugln("[Finished]");
}
void loop() {}
void start_attack() {
// Open main BadUSB script
msc::open("/payload.script");
// Wait 1s to give the computer time to initialize the keyboard
delay(1000);
2022-07-03 09:41:25 -07:00
// Read and parse file
char buffer[READ_BUFFER];
size_t len = 0;
uint32_t prev_pos = 0;
uint32_t cur_pos = 0;
int repeats = 0;
// For LOOP_START and LOOP_END
uint32_t start_pos = 0;
int loops = 0;
while (true) {
debug("Reading line...");
if (!msc::getInLine()) cur_pos = msc::getPosition();
len = msc::readLine(buffer, READ_BUFFER);
debugln(len);
debugln(std::string(buffer, len-1).c_str());
// Reached end of file
if (len == 0) {
debugln("Reached end of file");
if (msc::openNextFile()) continue;
else break;
}
debug("Parsing...");
duckparser::parse(buffer, len);
// For REPEAT/REPLAY
repeats = duckparser::getRepeats();
for (int i = 0; i<repeats; ++i) {
msc::gotoPosition(prev_pos);
do {
len = msc::readLine(buffer, READ_BUFFER);
duckparser::parse(buffer, len);
} while (msc::getInLine());
}
if (!msc::getInLine()) prev_pos = cur_pos;
// For LOOP_START/LOOP_STOP
if (duckparser::loopBegin()) {
start_pos = msc::getPosition();
loops = duckparser::getLoops();
2022-07-03 09:41:25 -07:00
} else if (duckparser::loopEnd() && (loops > 1)) {
msc::gotoPosition(start_pos);
--loops;
}
// For IMPORT
if (duckparser::import()) {
std::string path = duckparser::getImport();
msc::open(path.c_str());
}
debugln("OK");
}
}