Search Results
|
Post |
Author |
Forum |
Replies |
Views
[desc]
|
Posted |
|
|
Thread: Unicode == FUN
Post: RE: Unicode == FUN
Ah, I was reading too quickly - if you're especially interested in multibyte, the stock charsets won't help, but Rurapenthe's post about bruteforcing should still be helpful. The essential insight is ... |
|
royce |
hashcat
|
9 |
8,851 |
02-01-2017, 09:59 PM |
|
|
Thread: Unicode == FUN
Post: RE: Unicode == FUN
Huh - yeah, I went back through my notes/scripts and all the iconv items were just -f [source-format] -t [dest-format]. I thought it was harder than that, but I guess not! |
|
royce |
hashcat
|
9 |
8,851 |
02-02-2017, 01:50 AM |
|
|
Thread: No password candidates received in stdin mode, aborting...
Post: RE: No password candidates received in stdin mode,...
alexb, to clarify: you've told hashcat that you want to use your own wordlist (-a 0), but you haven't supplied one. |
|
royce |
hashcat
|
10 |
8,858 |
02-13-2019, 04:03 PM |
|
|
Thread: 8 Character Unix DES Question
Post: RE: 8 Character Unix DES Question
Using --loopback might be helpful.
Have you been through some common masks (Korelogic pathwell, and the ones that come with hashcat) and rulesets (d3ad0n3, etc.) ?
Have you looked at PRINCE... |
|
royce |
Old oclHashcat Support
|
6 |
8,866 |
11-10-2015, 07:07 AM |
|
|
Thread: Best GPU
Post: RE: Best GPU
Neither. :) Go NVIDIA, 10xx series (1070, 1080, 1080Ti). If you get Founder's Edition (recommended), the vendor doesn't matter, because they all follow the same NVIDIA spec. |
|
royce |
General Talk
|
8 |
9,094 |
06-14-2017, 08:53 PM |
|
|
Thread: Best GPU
Post: RE: Best GPU
|
royce |
General Talk
|
8 |
9,094 |
06-17-2017, 08:25 AM |
|
|
Thread: Buying wordlists/rules
Post: RE: Buying wordlists/rules
Have you looked at the rulesets in ./rules/, including its subfolders? |
|
royce |
General Talk
|
8 |
9,327 |
05-10-2017, 07:26 PM |
|
|
Thread: Hash craked with John the ripper but failed with Hashcat
Post: RE: Hash craked with John the ripper but failed wi...
Since this is a demo hash with a known plaintext, OK to post it here.
Works for me:
Code:
--
$ echo -n 'trumpette' | md5sum
6d980c97874860347312769e9854dab6 -
$ echo 'trumpette' | hashcat... |
|
royce |
hashcat
|
4 |
9,493 |
02-01-2018, 11:50 PM |
|
|
Thread: My practice attempt to decrypt a SHA-256 hash of an IP address
Post: RE: My practice attempt to decrypt a SHA-256 hash ...
Your example in crackitBruteForce.sh will only match three-digits-per-octet IPs (111.111.111.111) and miss other possibilities (111.111.111.1, 1.1.1.1, 11.11.11.11, etc.)
This is closer: https://pa... |
|
royce |
hashcat
|
13 |
9,515 |
02-26-2018, 02:10 AM |
|
|
Thread: My practice attempt to decrypt a SHA-256 hash of an IP address
Post: RE: My practice attempt to decrypt a SHA-256 hash ...
Couple of niggles:
- That larger file I linked to covers actual possible IP addresses. Many ?d?d?d (above 254) are invalid in an IP-address octet. So your masks will try many IPs that are not valid... |
|
royce |
hashcat
|
13 |
9,515 |
02-26-2018, 08:15 AM |
|
|
Thread: My practice attempt to decrypt a SHA-256 hash of an IP address
Post: RE: My practice attempt to decrypt a SHA-256 hash ...
undeath Wrote: (02-27-2018, 06:29 PM)
--
no, it doesn't. there are no instances of .?1 or .?2
--
That's what I get for not escaping my '?' in my egrep. :) Then I have no idea why the OP got that as... |
|
royce |
hashcat
|
13 |
9,515 |
02-27-2018, 07:03 PM |
|
|
Thread: My practice attempt to decrypt a SHA-256 hash of an IP address
Post: RE: My practice attempt to decrypt a SHA-256 hash ...
I didn't write that paste, just grabbed it because it did the job. :)
Works for me:
Code:
--
# Get the masks file.
$ wget -O ip.masks https://pastebin.com/raw/4HQ6C8gG
[...]
# For effici... |
|
royce |
hashcat
|
13 |
9,515 |
02-27-2018, 05:25 PM |
|
|
Thread: How to change password length (min/max)
Post: RE: How to change password length (min/max)
Short answer: add the '-O' flag.
The default min and max lengths shown are very broad, and not as specific as any particular attack (though they do have broad impact on attack speed). It's about yo... |
|
royce |
hashcat
|
4 |
9,652 |
02-06-2018, 03:35 AM |
|
|
Thread: Weird exception when cracking DES(unix)
Post: RE: Weird exception when cracking DES(unix)
Does hashed_file.txt contain only hashes -- no usernames, etc.?
Does it work OK with other masks? |
|
royce |
Old oclHashcat Support
|
6 |
9,656 |
11-09-2015, 03:17 AM |
|
|
Thread: Weird exception when cracking DES(unix)
Post: RE: Weird exception when cracking DES(unix)
Whoops - I totally missed the command order in your original post.
Simply follow the broad usage guidance from --help:
Code:
--
Usage: cudaHashcat [options]... hash|hashfile|hccapfile [dictiona... |
|
royce |
Old oclHashcat Support
|
6 |
9,656 |
11-09-2015, 04:33 AM |
|
|
Thread: Using newline character as part of mask attack
Post: RE: Using newline character as part of mask attack
[heh, yeah - what philsmd said. :) ]
Are you getting an error, by any chance?
I think if you use --hex-charset, hashcat expects the other literals in the mask to either also be hex or else to be ... |
|
royce |
hashcat
|
16 |
9,677 |
04-22-2018, 07:34 AM |
|
|
Thread: Using newline character as part of mask attack
Post: RE: Using newline character as part of mask attack
Regardless of attack, -m 0 is unsalted and -m 20 is salted. If this concept isn't familiar, search a bit for "password" and "salting". |
|
royce |
hashcat
|
16 |
9,677 |
04-25-2018, 07:28 AM |
|
|
Thread: [ANSWERED] New user, custom brute force help
Post: RE: New user, custom brute force help
cryptozin, please don't hijack threads. If you have a different question, please start a new thread. |
|
royce |
hashcat
|
16 |
9,777 |
05-12-2018, 03:56 PM |
|
|
Thread: [ANSWERED] New user, custom brute force help
Post: RE: New user, custom brute force help
Not much to go on to help you here.
Please also note that you're not 'decrypting' - there is no 'reversing' or 'decrypting' of true hashes. Hashes are not encryption. When you're trying to crack a... |
|
royce |
hashcat
|
16 |
9,777 |
05-13-2018, 04:00 AM |
|
|
Thread: [ANSWERED] New user, custom brute force help
Post: RE: [ANSWERED] New user, custom brute force help
Yep, that happens automatically - state is saved periodically to a restore file, and you use --restore to restore. |
|
royce |
hashcat
|
16 |
9,777 |
05-14-2018, 12:59 AM |