calango@programming.dev to Programmer Humor@programming.dev · 4 days agoWho hasn't typed a risky command? Throw the first stone!programming.devimagemessage-square29fedilinkarrow-up1523arrow-down113file-text
arrow-up1510arrow-down1imageWho hasn't typed a risky command? Throw the first stone!programming.devcalango@programming.dev to Programmer Humor@programming.dev · 4 days agomessage-square29fedilinkfile-text
minus-squareghodawalaaman@programming.devlinkfedilinkarrow-up6·3 days agoI found this magical command to send 50kb of random text data to meta’s server to fill up their database with garbage data. I don’t know how to do it on massive scale but at least I am doing my part by running this command 24/7 :) while true; do echo "$(openssl rand -hex 500000)" | netcat instagram.com 80 & disown; done;
minus-squareulterno@programming.devlinkfedilinkEnglisharrow-up0·2 days agoAren’t you just providing them with free pseudo-random data, while reducing the randomness of your own system?
I found this magical command to send 50kb of random text data to meta’s server to fill up their database with garbage data. I don’t know how to do it on massive scale but at least I am doing my part by running this command 24/7 :)
while true; do echo "$(openssl rand -hex 500000)" | netcat instagram.com 80 & disown; done;Aren’t you just providing them with free pseudo-random data, while reducing the randomness of your own system?
love it :D