calango@programming.dev to Programmer Humor@programming.dev · 3 days agoWho hasn't typed a risky command? Throw the first stone!programming.devimagemessage-square35linkfedilinkarrow-up1521arrow-down113file-text
arrow-up1508arrow-down1imageWho hasn't typed a risky command? Throw the first stone!programming.devcalango@programming.dev to Programmer Humor@programming.dev · 3 days agomessage-square35linkfedilinkfile-text
minus-squareghodawalaaman@programming.devlinkfedilinkarrow-up6·2 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·10 hours 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