# Happy Frog Script - Demo Automation
# Educational payload demonstrating basic automation capabilities
# 
# ⚠️ WARNING: This script opens YouTube and runs PowerShell commands
# Use only in controlled environments with proper authorization!
# 
# Educational Purpose: Demonstrates how automated input can be used
# for both legitimate automation and potential security testing

# Wait for system to recognize the device
DELAY 2000

# Open Run dialog (MOD + R)
MOD r
DELAY 500

# Type YouTube URL
STRING https://www.youtube.com/watch?v=dQw4w9WgXcQ
DELAY 500
ENTER

# Wait for browser to load
DELAY 3000

# Open PowerShell as administrator
MOD r
DELAY 500
STRING powershell
DELAY 500
CTRL SHIFT ENTER

# Wait for PowerShell to open
DELAY 2000

# Accept UAC prompt (if needed)
ENTER
DELAY 1000

# Run a simple PowerShell command (educational example)
STRING Get-Process | Select-Object Name, CPU | Sort-Object CPU -Descending | Select-Object -First 5
ENTER

# Wait for command to complete
DELAY 2000

# Close PowerShell
STRING exit
ENTER

# Educational note: This demonstrates how automated input can be used
# for system administration tasks, but also shows potential security implications 