Download the last 3200 @PastebinDorks with a simple command. - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Misc (https://hashcat.net/forum/forum-15.html) +--- Forum: General Talk (https://hashcat.net/forum/forum-33.html) +--- Thread: Download the last 3200 @PastebinDorks with a simple command. (/thread-1705.html) |
Download the last 3200 @PastebinDorks with a simple command. - Soc@pex - 10-29-2012 So I've been away for a while (school is crazy). I wanted to get back on top of the latest stuff and @PastebinDorks is great for that. Heres what I came up with, I'm sure some of you guys will correct and point out a better way, but it worked Download 3200 latest @PastebinDorks files: Code: curl -s --user-agent 'Mozilla/5.0' -uUSERNAME:'PASSWORD' 'http://api.twitter.com/1/statuses/user_timeline.xml?screen_name=PastebinDorks&count=100[1-32]' | grep '<text>' | sed 's/\<text\>//;s/\<\/text\>//' | sed -n 's/\[\(.*\)\][ *]//p' | wget -i - ./directory Now, @passfile has many passes cracks, it would be nice to merge those files and be able to extract his cracks. Here's my first ever bash script: Code: #!/bin/bash Now all that is left is to extract the passes, sort -u, and remove the https://twitter.com... (or not, he does do a great job!). You can figure out the rest, which awk makes stupid simple. See you, Socapex edit: Maybe this is better suited for General Talk, I let you be the judge, oh almighty Atom |