Please note, this is a STATIC archive of website hashcat.net from 08 Oct 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.

hashcat Forum

Full Version: load/save from/to http-server
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I would love to be able to load wordlists, hashes etc from an url and likewise save cracked hashes to an url (e.g LoadWordList.php and SaveHashes.php)

It would help with distrubuted cracking ;-)
(10-09-2010, 12:41 AM)MK.v.4 Wrote: [ -> ]https://hashcrack.blogspot.com

Big Grin

Hey,
Well I read a lot on your blog but I didn't find what I was looking for.

I want an option that for example loads a wordlist from my private webserver.
Like this:
(pc1 working on first set @home)
hashcat-cli.exe -a 1 -r https://mywebserver.com/rules/ruleset1.php -m 400 -o https://mywebserver.com/pot/crackedhash.php -n 1 https://mywebserver.com/hashes/hashset1.php https://mywebserver.com/dicts/dictset1.php

(pc 2 working on first set @work)
hashcat-cli.exe -a 1 -r https://mywebserver.com/rules/ruleset1.php -m 400 -o https://mywebserver.com/pot/crackedhash.php -n 1 https://mywebserver.com/hashes/hashset1.php https://mywebserver.com/dicts/dictset1.php
.
.
.
.

(pc 102 working on 10th: set @friends mothers home)
hashcat-cli.exe -a 1 -r https://mywebserver.com/rules/ruleset10.php -m 400 -o https://mywebserver.com/pot/crackedhash.php -n 1 https://mywebserver.com/hashes/hashset10.php https://mywebserver.com/dicts/dictset10.php

And then it's up to me to write the php-code that input/output data to hashcat. All I need is a simple get-request-function in hashcat, and optionally some auth-function.
I know that this can be done with other tools combined with hashcat, like wget, tail, custom perlscripts etc, but it would be so cool (and easy) to have the get-request built-in.
nice idea but as long as you can do it with external commands there is no real need for it. also, from an architectonic view its somehow strange to add a http client to a password cracker.