Search Results
|
Post
[desc]
|
Author |
Forum |
Replies |
Views |
Posted |
|
|
Thread: new hcstat files
Post: new hcstat files
I've got a bunch of hcstat2 files I generated, feel free to pillage or even merge into the hashcat source repo.
https://github.com/evilmog/hashcat-hcstat
Enjoy |
|
evilmog |
User Contributions
|
0 |
3,173 |
02-13-2018, 09:51 PM |
|
|
Thread: NTLMv1 to NTLM Reversing
Post: NTLMv1 to NTLM Reversing
So I made life easy for the mode 14000 reversing NTLMv1 to NTLM both with and without SSP, I am adding this writeup on hashcat to save people time while searching for it. The original credit goes to a... |
|
evilmog |
User Contributions
|
4 |
2,749 |
03-03-2020, 11:26 PM |
|
|
Thread: Raking writeup
Post: Raking writeup
Credit on this first goes to atom for doing the hard work of sorting through all the crap rules, this rule wouldn't have existed without him.
https://github.com/evilmog/evilmog/wiki/Hashcat-Raking-... |
|
evilmog |
User Contributions
|
0 |
2,523 |
11-24-2017, 12:46 AM |
|
|
Thread: Deep Learning on wordlist.
Post: RE: Deep Learning on wordlist.
powermi Wrote: (03-03-2020, 07:18 PM)
--
I was reading today about deep learning on password gessing. PassGan
https://arxiv.org/pdf/1709.00440.pdf
anyone has experience with that? Seems to be inter... |
|
evilmog |
General Talk
|
2 |
976 |
03-03-2020, 11:31 PM |
|
|
Thread: Do not try to write --keyspace yourself
Post: RE: Do not try to write --keyspace yourself
royce Wrote: (11-24-2017, 11:00 AM)
--
*lightbulb*
Ahhhh ... so they only need to be "proportional" within specific attack type/combos, and that's why they can't be compared across them! Because i... |
|
evilmog |
hashcat
|
15 |
20,275 |
11-25-2017, 09:10 PM |
|
|
Thread: Epixoip was right
Post: RE: Epixoip was right
I even did a full talk on this after taking epixoip's advice, confessions of a crypto cluster operator was just a sweary rant against AMD. Moral of the story listen to him, even if he does forget to ... |
|
evilmog |
General Talk
|
3 |
3,922 |
03-27-2017, 06:03 AM |
|
|
Thread: Hashcat two separators - Other Questions
Post: RE: Hashcat two separators - Other Questions
tiren1337 Wrote: (06-29-2016, 09:52 PM)
--
Hello,
Is there any way to import UserID:Email:Hash in hashcat without removing user id? Because that file is huge it will take time... Also would it go ... |
|
evilmog |
General Talk
|
3 |
4,694 |
11-24-2017, 12:39 AM |
|
|
Thread: Hashes from hostapd-wpe - MSCHAPv2 - Challenge and Response
Post: RE: Hashes from hostapd-wpe - MSCHAPv2 - Challenge...
echo 'marcelo:$NETNTLM$a1xxxxb56axxxxcb$aa324xxxx0ce25d97xxxx1d96af58014exxxxf016fxxxx8f' | perl -ne '/(.*?):\$.*?\$(.*?)\$(.*)/; print "$1::::$3:$2\n";'
marcelo::::aa324xxxx0ce25d97xxxx1d96af58014e... |
|
evilmog |
hashcat
|
3 |
5,387 |
11-23-2017, 02:08 AM |
|
|
Thread: Hashes from hostapd-wpe - MSCHAPv2 - Challenge and Response
Post: RE: Hashes from hostapd-wpe - MSCHAPv2 - Challenge...
alexpache Wrote: (11-23-2017, 02:24 AM)
--
Thank you so much. Worked fine.
edit by philsmd:
stop posting hashes. It is against the forum rules. do not use 2 accounts to post
--
Only reason I re... |
|
evilmog |
hashcat
|
3 |
5,387 |
11-24-2017, 12:28 AM |
|
|
Thread: Hashtopussy Mask Attack
Post: RE: Hashtopussy Mask Attack
You need to do a bulk import for multiple masks
1) Click on tasks->import supertask
2) under name type in the mask name, such as 8x bf or pathwell etc
3) select if its a small task, I tend to... |
|
evilmog |
General Talk
|
2 |
1,693 |
08-28-2019, 10:46 PM |
|
|
Thread: Hashtopussy vs Linux Beowulf
Post: RE: Hashtopussy vs Linux Beowulf
hashtopussy
gocrack
hashview
evil mogs skip and limit calculator
stone tablets
and if you have $$$$$$$$ go buy hashstack with hardware |
|
evilmog |
General Talk
|
3 |
3,558 |
01-24-2018, 10:04 PM |
|
|
Thread: LM Hashes
Post: RE: LM Hashes
Assuming your ntds dump is ntds.dit you need to do the following (don't do it from a mac, it just doesn't work)
1) Create a list of just lanman
Code:
--
cut -d: -f3 < ntds.dit | sort -u > ntds.lm... |
|
evilmog |
General Talk
|
11 |
5,692 |
08-28-2019, 10:40 PM |
|
|
Thread: NetNTLMv1 Help!
Post: RE: NetNTLMv1 Help!
I will be redoing my post with up to date python and bash to automate all the components, if you can wait until monday it should be up by then. Sorry for any of the confusion, the final crack part wa... |
|
evilmog |
hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip
|
5 |
7,281 |
04-21-2017, 08:41 PM |
|
|
Thread: NetNTLMv1 Help!
Post: RE: NetNTLMv1 Help!
magnum Wrote: (04-24-2017, 09:43 PM)
--
Perhaps these procedures should be added to the wiki as well?
--
Agreed, I got delayed with my day job but a half written python prototype is up to automate... |
|
evilmog |
hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip
|
5 |
7,281 |
04-25-2017, 12:35 PM |
|
|
Thread: NTLMv1 to NTLM Reversing
Post: RE: NTLMv1 to NTLM Reversing
Btw I realized there was an error in my DES KEY generation part of the post, the corrected execution is here:
Code:
--
evilmogs-MacBook-Pro-2:ntlmv1-multi evilmog$ python ntlm-to-des.py --ntlm 8846... |
|
evilmog |
User Contributions
|
4 |
2,749 |
03-04-2020, 02:31 AM |
|
|
Thread: NTLMv1 to NTLM Reversing
Post: RE: NTLMv1 to NTLM Reversing
DanielG Wrote: (03-04-2020, 10:10 AM)
--
Also check out https://crack.sh/netntlm/, they crack NTLMv1 to NTLM for free fast if you set responder to the static challenge of 1122334455667788
--
Yep an... |
|
evilmog |
User Contributions
|
4 |
2,749 |
03-13-2020, 01:19 AM |
|
|
Thread: Reversing MSCHAPv2 to NTLM
Post: RE: Reversing MSCHAPv2 to NTLM
Lets break this down:
johndoe::test-domain:1FA1B9C4ED8E570200000000000000000000000000000000:1B91B89CC1A7417DF9CFAC47CCDED2B77D01513435B36DCA:1122334455667788
https://davenport.sourceforge.net/ntlm.ht... |
|
evilmog |
User Contributions
|
18 |
36,629 |
10-01-2016, 09:19 PM |
|
|
Thread: Reversing MSCHAPv2 to NTLM
Post: RE: Reversing MSCHAPv2 to NTLM
I screwed up in my post:
Step 9) EvilMog writes a script to use atoms script to generate a raw NTLM hash for use in PTH
#!/bin/bash
challenge=$(echo -n "$1" | base64 -d | xxd | head -n1 | cut... |
|
evilmog |
User Contributions
|
18 |
36,629 |
11-03-2016, 11:24 PM |
|
|
Thread: Reversing MSCHAPv2 to NTLM
Post: RE: Reversing MSCHAPv2 to NTLM
Sorry for reviving an old thread but I felt compelled to publish a few corrections as my original post wasn't exactly clear.
For NTLMv1-ESS, the plaintext password for the below hash is 'hashcat' a... |
|
evilmog |
User Contributions
|
18 |
36,629 |
04-25-2018, 01:10 AM |
|
|
Thread: Reversing MSCHAPv2 to NTLM
Post: RE: Reversing MSCHAPv2 to NTLM
And the first release of the NTLMv1 multi tool is out
https://github.com/evilmog/ntlmv1-multi |
|
evilmog |
User Contributions
|
18 |
36,629 |
04-30-2018, 08:07 PM |