Getting Hashfiles/Passwords from Pastebin and co.
#1
Hi guys,

so actually i want to know how i can get the hashes/passwords from pastebin and co sites? People on Twitter are posting always some, so anyone can help me how i can do it via bash to save these files without doin it completly by hand?
I am using cygwin.

Thx for ur help.
Reply
#2
I guess most of them wrote their own tools to do so
Reply
#3
Retrieve the raw post
example :http://nopaste.me/raw/29902733150c8aed3b6549.txt
then you can do a cut -d: -f2-|sort|uniq to only retrieve the passwords and them to your dics.
Reply
#4
Well this is actually something where i can start to work with, thank you.

Can u say me what this -d and -f2- functionality is?
Reply
#5
man cut
Reply