Search Results
|
Post |
Author |
Forum |
Replies |
Views |
Posted
[asc]
|
|
|
Thread: Newbie Wallet
Post: RE: Newbie Wallet
you use bitcoin2john.py to convert the wallet.dat file into a hash:
https://raw.githubusercontent.com/magnumripper/JohnTheRipper/bleeding-jumbo/run/bitcoin2john.py
install and use python 2.7 to ... |
|
philsmd |
General Talk
|
9 |
3,606 |
07-11-2019, 09:55 AM |
|
|
Thread: Newbie Wallet
Post: RE: Newbie Wallet
What is the thread you are referring at ?
What are the files that you have ? wallet.dat ?
Which software (and which version of that software) did generate this wallet ?
hashcat support bitcoi... |
|
philsmd |
General Talk
|
9 |
3,606 |
07-10-2019, 11:41 AM |
|
|
Thread: Cannot load module ./modules/module_02000.dll
Post: RE: Cannot load module ./modules/module_02000.dll
there is no such file like hashcat64.exe within the beta version. if you have that file extracted, you are doing something horribly wrong (pebcak). It's easy to proof that the file under https://hashc... |
|
philsmd |
hashcat
|
6 |
2,951 |
07-08-2019, 08:57 AM |
|
|
Thread: Cannot load module ./modules/module_02000.dll
Post: RE: Cannot load module ./modules/module_02000.dll
if I download the beta version from https://hashcat.net/beta/ I definitely see a file in the modules folder named
module_02000.dll
32-bit support was removed in recent versions of hashcat, but if... |
|
philsmd |
hashcat
|
6 |
2,951 |
07-07-2019, 09:34 PM |
|
|
Thread: Passphrase make .rule
Post: RE: Passphrase make .rule
https://hashcat.net/wiki/doku.php?id=combinator_attack
if you want to add space, you can use the rule -j "$ " (or '$ ' or "\$ " on linux to escape the dollar).
This is actually not a "rule" but ... |
|
philsmd |
hashcat
|
1 |
1,045 |
07-06-2019, 10:26 AM |
|
|
Thread: My master Password
Post: RE: My master Password
are you talking about blockchain.com / blockchain.info wallets ? what files do you have ?
hashcat supports these:
-m 12700 = Blockchain, My Wallet, $blockchain$...
-m 15200 = Blockchain, My Walle... |
|
philsmd |
hashcat
|
3 |
2,049 |
07-04-2019, 11:31 AM |
|
|
Thread: Hashcat token length exception
Post: RE: Hashcat token length exception
-o is only used for the outfile (that's why "-o" is a shorter version of --outfile)
the general format is -a 0 hash.txt dict.txt, but you are only specifying the outfile (-o) and a dict.
this sh... |
|
philsmd |
hashcat
|
1 |
1,638 |
06-30-2019, 07:05 PM |
|
|
Thread: how to make an attack
Post: RE: how to make an attack
probably just an escaping problem. for instance use "$-" instead on some operating system, some need \$- etc.
I would test with a rule that doesn't need escaping at all, like:
hashcat -j u ...
... |
|
philsmd |
hashcat
|
4 |
2,139 |
06-25-2019, 08:08 AM |
|
|
Thread: PKZip Length Question
Post: RE: PKZip Length Question
short answer: not supported
long answer: it would actually be easily possible to support longer compressed data lengths (the decompressed length is even less problematic because we "only" need to c... |
|
philsmd |
hashcat
|
2 |
1,684 |
06-22-2019, 09:57 AM |
|
|
Thread: Guidance for creation of custom kernels
Post: RE: Guidance for creation of custom kernels
I would say that the best thing for now is to just have a look at the github commit history and check for the addition of (already added) new hash types, like this one: https://github.com/hashcat/hash... |
|
philsmd |
General Talk
|
2 |
1,858 |
06-15-2019, 09:33 AM |
|
|
Thread: Custom charsets for Cyrillic passwords in NTLM hashes
Post: RE: Custom charsets for Cyrillic passwords in NTLM...
no, it's perfectly fine to answer like you did and clarify the situation.
Thanks for the clarification !
It just wasn't very clear (maybe only to me) that this was just a general clarification/s... |
|
philsmd |
hashcat
|
8 |
2,730 |
06-15-2019, 07:42 AM |
|
|
Thread: Custom charsets for Cyrillic passwords in NTLM hashes
Post: RE: Custom charsets for Cyrillic passwords in NTLM...
this discussion is very difficult to follow. are you using 2 forum accounts or why are you BotPass answering like it was an answer to you (but actually given to boreas). How are you related if I may a... |
|
philsmd |
hashcat
|
8 |
2,730 |
06-14-2019, 09:42 PM |
|
|
Thread: Mac OSX Mojave .plist format conversion
Post: RE: Mac OSX Mojave .plist format conversion
if I understood this correctly you can access the file when mounting the file system with a different operating system ?!
I think we can't do anything about that. You can't just use a totally diffe... |
|
philsmd |
hashcat
|
9 |
4,502 |
06-14-2019, 06:53 PM |
|
|
Thread: Custom charsets for Cyrillic passwords in NTLM hashes
Post: RE: Custom charsets for Cyrillic passwords in NTLM...
just sort and unique it
Code:
--
echo -n хер | iconv -f utf8 -t utf16le | xxd -p -c 1 | sort -un | tr -d '\n'
--
|
|
philsmd |
hashcat
|
8 |
2,730 |
06-13-2019, 10:49 PM |
|
|
Thread: hashcat ends without error message
Post: RE: hashcat ends without error message
would be actually quite interesting to debug this to find out who the culprit is here.
Did you try to test it with all the GPUs (physically) removed ? does it also crash with only the CPU within yo... |
|
philsmd |
hashcat
|
3 |
1,515 |
06-12-2019, 12:04 PM |
|
|
Thread: hashcat ends without error message
Post: RE: hashcat ends without error message
in general these are problems with drivers. maybe you have some further drivers installed e.g. for your OpenCL CPU etc.
I think driver fusion and/or ddu (Display Driver Uninstaller) might help you ... |
|
philsmd |
hashcat
|
3 |
1,515 |
06-12-2019, 09:56 AM |
|
|
Thread: Encoding problem?
Post: RE: Encoding problem?
known limitation of utf16le conversion in kernel, use this:
Code:
--
hashcat -m 900 --encoding-to utf16le /tmp/my.hashes /tmp//test.wordlist
--
|
|
philsmd |
hashcat
|
1 |
1,485 |
06-11-2019, 07:31 AM |
|
|
Thread: Token length exception
Post: RE: Token length exception
please make sure that the file exist.
hashcat searched for the file and didn't find it.
The file does NOT exist
maybe it's stored somewhere else or you renamed it or it has .txt.txt extension... |
|
philsmd |
hashcat
|
6 |
2,710 |
06-10-2019, 06:59 PM |
|
|
Thread: Brain - couple of questions
Post: RE: Brain - couple of questions
features should be used as they were meant to be used. brain is not a replacement for the -s / -l option or a distributed cracking setup.
you could/should use something like hashtopolis (which btw ... |
|
philsmd |
hashcat
|
2 |
1,271 |
06-10-2019, 01:03 PM |
|
|
Thread: Token length exception
Post: RE: Token length exception
the hash file must exist
/root/HASH/MySQL5.txt no such file . file does not exist |
|
philsmd |
hashcat
|
6 |
2,710 |
06-09-2019, 10:01 PM |