This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rundll32.exe keymgr.dll, KRShowKeyMgr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(转)creating binary patch files (.p files) with bsdiff | |
I was looking through a .602 update.zip and noticed the .p files; I opened one up in notepad++ and saw that the file begins with "bsdiff" so did a search and found this tool: | |
http://www.daemonology.net/bsdiff/ | |
bsdiff takes an original file and a modified file as input and creates a binary patch file. | |
bspatch takes an original file and a patch file as input and creates a modified file. | |
usage (windows): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Cracking an FTP server (use whatever service you want THC Hydra supports lots! | |
hydra -L wordlist.txt -P passlist.txt 192.168.1.1 ftp | |
#Other handy THC Hydra commands~! | |
#Log in to ftp service with -l user and -p password: | |
./hydra -l john -p doe 192.168.0.1 ftp | |
#Log in to IMAP service using user wordlist with -L user.txt and the password -p secret: | |
./hydra -L user.txt -p secret 192.168.0.1 imap PLAIN | |