mirror of
https://github.com/infinition/Bjorn.git
synced 2026-03-15 17:01:58 +00:00
- Implemented LokiUtils class with GET and POST endpoints for managing scripts, jobs, and payloads. - Added SentinelUtils class with GET and POST endpoints for managing events, rules, devices, and notifications. - Both classes include error handling and JSON response formatting.
10 lines
232 B
JavaScript
10 lines
232 B
JavaScript
// Hello World — Test payload that types a message in Notepad (Windows)
|
|
layout('us');
|
|
delay(1000);
|
|
press("GUI r");
|
|
delay(500);
|
|
type("notepad\n");
|
|
delay(1000);
|
|
type("Hello from Bjorn Loki!\n");
|
|
type("HID injection is working.\n");
|