在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):octomagon/davegrohl开源软件地址(OpenSource Url):https://github.com/octomagon/davegrohl开源编程语言(OpenSource Language):C 86.4%开源软件介绍(OpenSource Introduction):DaveGrohl 3.01 alphaA What's new?Version 3.0 is a complete rewrite of DaveGrohl. Version 2 was suffering from a severe case of code-stank and it will eventually be euthanized. The goal is to create a completely modern object-oriented codebase and make it extremely easy to use for both the developer and the end user. This code is currently in the very early stages, but will focus on a few central design goals. Design Goals
Quick How-ToIf you're pulling Dave from Github, make sure XCode is installed then clone the repository. MacBook-Pro:~$ git clone https://github.com/octomagon/davegrohl.git Compile away... MacBook-Pro:~$ cd davegrohl
MacBook-Pro:~/davegrohl$ make
*** A bunch of stuff happens here ***
Make succeeded...
Created: dave
MacBook-Pro:~/davegrohl$ Then run Dave. Press spacebar to see the progress of each thread. Threads running a dictionary attack will be in MacBook-Pro:~/davegrohl$ sudo ./dave -u someuser
-- Loaded PBKDF2 (Salted SHA512) hash...
-- Starting attack
TIME GUESSES
0000:00:08 351 (aaru) (loveme) [x] [86n] [bpc] [2s5] [ojf] [wkea] [52la] [caha]
0000:00:14 613 (abaculus) (samantha) [9a] [38n] [t3c] [an5] [yjf] [k4ea] [dmla] [ieha]
0000:00:20 875 (abandoning) (spongebob) [pe] [n7n] [x3c] [8n5] [bvf] [25ea] [odla] [weha]
-- Found password : 'shorty'
-- (dictionary attack)
Finished in 31.330 seconds / 1,318 guesses...
42 guesses per second. In this example, I purposely set my password to one I knew Dave would guess early. When using PBKDF2, OS X throttles the time it takes to hash a password. This is great for password security, but bad for brute force attacks. Out of the box, Dave will not check every possible password because it is insanely impractical. With no special arguments, Dave will check every password between 0 and 16 digits long using the default character set of 'aeorisn1tl2md0cp3hbuk45g9687yfwjvzxq'. With these settings on my 8-core Macbook Pro, it would take longer than the age of the universe to check every possibility. You can greatly improve your time-to-crack if you have an idea of how long the password is and what characters may be in it. The following example tells Dave the password is between 5 & 7 digits long and may contain the characters 'sbeio'. MacBook-Pro:~/davegrohl$ sudo ./dave -c sbeio -m 5 -M 7 -u someuser
Password:
-- Loaded PBKDF2 (Salted SHA512) hash...
-- Starting attack
TIME GUESSES
0000:00:07 245 (aardwolves) (chocolate) [oosss] [oossbe] [ssbsess] [oossiis] [ssbsobb]
0000:00:20 682 (abaiser) (666666) [iiess] [eiesbe] [iiesess] [iiesiis] [iiesobb] You can get a time estimate by pressing 't'. 0000:00:27 894 1 Hour 26 Seconds left...
0000:00:34 1,152 (abashes) (sayang) [oeoss] [oeosbe] [siosess] [siosiis] [siosobb]
-- Found password : 'boobs'
-- (incremental attack)
Finished in 74.250 seconds / 2,477 guesses...
33 guesses per second. The time estimate is how long Dave will take to check every possibility, not how long to find the password. Using Dave with HashcatIf you'd like to use a real password cracker, try hashcat. You can use Dave to extract a user's hash formatted for hashcat. Like this: MacBook-Pro:~/davegrohl$ sudo ./dave --hashcat=USERNAME > hash.txt
MacBook-Pro:~/davegrohl$ hashcat -m 7100 hash.txt wordlist.txt HistoryDaveGrohl was initially created in early 2011 as a password hash extractor & companion tool to John the Ripper. It's blossoming into a multithreaded distributed password cracker was a product of sheer curiosity/boredom. Dave has always been aimed at brute-forcing OS X user passwords, although he's been known to get lost staring into a cloud of Linux machines. Sadly, my day job as a ninja spy astronaut and my highly Scandinavian level of ethanol consumption has led to an old stanky code base. In light of these facts, I've decided to unleash the stank upon the world in hopes that it brings joy and nerdgasms to whomever finds it. Vintage CodeThe old version of Dave is still available. It's currently the most stable and may have some features that have not yet been implemented in V3. MacBook-Pro:~$ git clone https://github.com/octomagon/davegrohl-old.git
Why |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论