Hmas Suggestion
May 19, 2025โข241 words
๐ฅ๏ธ HMAS API โ Bash Prank Script Example
Unleash your inner cyber trickster with this harmless terminal prank that pulls a dramatic hacker-style message using the HMAS API.
โ ๏ธ Disclaimer
This is meant for fun and educational purposes only.
Do not use this to disrupt real systems, mislead users, or impersonate a legitimate threat.
Use responsibly. Make people laugh, not panic.
๐ง Bash Script Prank Example
Create a file named
prank.sh:#!/bin/bash # HMAS Prank Script API_KEY="testkey123" FORMAT="txt" MSG="hacker" # Fetch the message from HMAS MESSAGE=$(curl -s "https://carlostkd.ch/hmas/api.php?msg=$MSG&format=$FORMAT&apikey=$API_KEY") # Print dramatic effect echo "" echo "Initializing security scan..." sleep 1 echo "Bypassing firewall..." sleep 1 echo "Accessing system core..." sleep 2 echo "" echo "$MESSAGE" echo "" sleep 1 echo "Trace complete. Identity compromised. ๐ง "
๐งช How to Run
chmod +x prank.sh ./prank.sh
๐ง Output Example
Initializing security scan... Bypassing firewall... Accessing system core... ๐ง admin: Message: ๐ฌ ๐ง ColdBoot Alert: A background service is logging your browsing activity, User session terminated. Trace complete. Identity compromised. ๐ง
๐งพ Customize It!
- Change the
MSGto other fun themes:ghost,ai,cyberpunk- Use
format=htmlto prank in a browser- Try
mode=dailyfor persistent messages๐ก Pro Tip
Alias it for quick fun:
alias prankhmas="bash ~/path/to/prank.sh"Then just run:
prankhmas
Happy hacking (the legal kind)!