Quantcast
Channel: hashcat Forum - All Forums
Viewing all 8180 articles
Browse latest View live

Hash File No Hashes Loaded error.

$
0
0
Hey

So I keep getting the error every time I try run the crack. I know I have ran the right mode in cmd as they are md5 hashes. Basically all I have done is copied all my hashes which I have in a excel document and copied them into my hash text file in my hashcat folder. I have looked around the web and YouTube but not sure what is causing this problem. Is there more I need to copy into my hash text file?

BTW I am of course on windows 10. Any help would be appreciated.

Hash-encoding exception?¿

$
0
0
Okay i have some hashes to break i managed to get work hashcat in my server but problem is thath i have something bad in txt file i think ill try to explain everything

I edited the txt in Windows in UTF-8 coding with EmEditor text editor.
Through SSH i send the txt to my server with WinsSCP
I install everything needed and clean all wordlist, currently downloading last one off 220GB once done ill just put all in same txt and remove duplicated and ill have 300GB good wordlist.

Well i go to search the type off hash i have

http://finder.insidepro.com/history/tf6uEKHQ

in hashcat i understand these is
2611
vBulletin < v3.8.5
16780ba78d2d5f02f3202901c1b6d975:568




I just load 16 inside thath finder in hashConfusedalt  but in txt there are in user:hashConfusedalt  and you will say ok but then why you dont remove user?  Cause i need to have the password and user in the same lane obviusly.



Well then i go to my server and run these command.
Inside OPT/Hashcat 
./Hashcat64.bin -m 2611 - 0 ./root/to/userhashsalt.txt /root/to/wordlist.txt and output is these

Code:
Hashfile '/root/Private/to/to/to/to/to.netuserhashsalt.txt' on line 136975 (Snilex:d573a2b39874e918eff8479f5066de18:G6"): Hash-encoding exception
Hashfile '/root/Private/to/to/to/to/to.netuserhashsalt.txt' on line 136976 (marks11:83721f7c46c41e95b331b95cea5a6faa:W2!): Hash-encoding exception
Hashfile '/root/Private/to/to/to/to/to.netuserhashsalt.txt' on line 136977 (qhedd0:2b30f2304fdf0225aef4bdbd4bf28a2c:dXI): Hash-encoding exception


Some hashes so you can check its the right command

txt file format:
UTF-8 in windows then uploadeed with WinSCP to my server
User:hashConfusedalt

Pastebin Hash


These happens in every line off txt seems to be corrupt or something with all lines. 

Why can be? any solution?

User:plain output

$
0
0
Okay so my source has user:hashConfusedalt in special md5 vbulletin just checked and its 2611 in hashcat.
Im running these  command

Code:
#       ./hashcat64.bin -m 2611 --username --potfile-path md5.pot --show -o formated_output.txt --outfile-format 2 /root/wordlist.txt


and apparently isnt working

i know im doing something bad cause here in these command there arent any hashes but i dont know where to put wordlist and where to put hashes.txt


hashes format is

user:hashConfusedalt

i want the output with

user:password





Im ussing hashcat 3.6.0

Performance difference Win 7 vs Win 10?

$
0
0
Somewhat by luck, I've got my hands on two systems for a short time, one Win 7 and the other Win 10. Both have a GTX 1060 FE card. But when I run hashcat 3.6.0 on both, doing MD5, I'm getting quite a bit different speeds. The Win 7 is doing 9000 - 9500 MH/s, while the Win 10 is doing about 5600 MH/s. The Win 10 system is newer.

Why such a big difference? Does the OS really matter that much? Both are running the latest drivers.

Name of this Hashtype?

$
0
0
Who knows which Hash it could be?
Code:
$2y$10$LAi61B3Pv/AHeH76kSwqwusxQkfsD8P9R0JrYpcFK47TxNMuXjoCy?
I never saw something like this before.

Word List format?

$
0
0
Hey. 

So after finally getting my hashcat to start since it wouldn't load Hashes I had a question about wordlist format. 

I downloaded rockyou word list but all the words are joined together with no spaces between. Does it have to be one word per line like that hash file? If so anyway to fix it?

Want to implement SHA3-256 with Iterations

$
0
0
Hello!

I try to implement sha3-256 with multiple iterations on the basis of m05000_a0.cl. The kernel code is quite difficult to understand. Perhaps someone might be interested in it and would like to help. I tried something like this. Any idea? Im am guessing around about the details. It is quite simple. First iteration: make sha3-256 of password, next make sha3-256 of the last hash. I am struggeling with the details and do not fully understand the implementation Undecided

Code:
__
kernel void m05000_m04 (...)
{
 /**
  * modifier
  */

 const u32 lid = get_local_id (0);

 /**
  * base
  */

 const u32 gid = get_global_id (0);

 if (gid >= gid_max) return;

 u32 pw_buf0[4];
 u32 pw_buf1[4];

 pw_buf0[0] = pws[gid].i[0];
 pw_buf0[1] = pws[gid].i[1];
 pw_buf0[2] = pws[gid].i[2];
 pw_buf0[3] = pws[gid].i[3];
 pw_buf1[0] = pws[gid].i[4];
 pw_buf1[1] = pws[gid].i[5];
 pw_buf1[2] = pws[gid].i[6];
 pw_buf1[3] = pws[gid].i[7];

 const u32 pw_len = pws[gid].pw_len;

 /**
  * constants
  */

 const u8 keccakf_rotc[24] =
 {
    1,  3,  6, 10, 15, 21, 28, 36, 45, 55,  2, 14,
   27, 41, 56,  8, 25, 43, 62, 18, 39, 61, 20, 44
 };

 const u8 keccakf_piln[24] =
 {
   10,  7, 11, 17, 18,  3,  5, 16,  8, 21, 24,  4,
   15, 23, 19, 13, 12,  2, 20, 14, 22,  9,  6,  1
 };

 /**
  * 0x80 keccak, very special
  */

 const u32 mdlen = salt_bufs[salt_pos].keccak_mdlen;
/* ###################### NEW */
 /*
  * All the SHA-3 functions share code structure.  They
  * differ only in the size of the chunks they split the message into:
  * for digest size d, they are split into chunks of 200 - mdlen bytes.
  * So for several rounds mdlen = 32 (this is 256bit). For add80w we get 16
  */
 const u32 rsiz = 200 - (2 * mdlen);

 const u32 add80w = (rsiz - 1) / 8;
 const u32 add80w_256bit_input = 16; /* ###################### NEW */

 /**
  * loop
  */

 for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
 {
   u32x w0[4] = { 0 };
   u32x w1[4] = { 0 };
   u32x w2[4] = { 0 };
   u32x w3[4] = { 0 };
   
   u64x st_roundResult[4] = {0};
   
   const u32x out_len = apply_rules_vect (pw_buf0, pw_buf1, pw_len, rules_buf, il_pos, w0, w1);

   append_0x01_2x4_VV (w0, w1, out_len);

   /**
    * Keccak
    */

   u64x st[25];

   int round;
   int hashIter; /* ###################### NEW */
   for (hashIter = 0; hashIter < HASHITER_NUM; hashIter++)
   {
       if(hashIter == 0)
       {
           st[ 0] = hl32_to_64 (w0[1], w0[0]);
           st[ 1] = hl32_to_64 (w0[3], w0[2]);
           st[ 2] = hl32_to_64 (w1[1], w1[0]);
           st[ 3] = hl32_to_64 (w1[3], w1[2]);
           st[ 4] = 0;
           st[ 5] = 0;
           st[ 6] = 0;
           st[ 7] = 0;
           st[ 8] = 0;
           st[ 9] = 0;
           st[10] = 0;
           st[11] = 0;
           st[12] = 0;
           st[13] = 0;
           st[14] = 0;
           st[15] = 0;
           st[16] = 0;
           st[17] = 0;
           st[18] = 0;
           st[19] = 0;
           st[20] = 0;
           st[21] = 0;
           st[22] = 0;
           st[23] = 0;
           st[24] = 0;

           st[add80w] |= 0x8000000000000000;
       }
       /* ###################### NEW, take the result from last iteration*/
       else{
           st[ 0] = st_roundResult[0];
           st[ 1] = st_roundResult[1];
           st[ 2] = st_roundResult[2];
           st[ 3] = st_roundResult[3];
           st[ 4] = 0;
           st[ 5] = 0;
           st[ 6] = 0;
           st[ 7] = 0;
           st[ 8] = 0;
           st[ 9] = 0;
           st[10] = 0;
           st[11] = 0;
           st[12] = 0;
           st[13] = 0;
           st[14] = 0;
           st[15] = 0;
           st[16] = 0;
           st[17] = 0;
           st[18] = 0;
           st[19] = 0;
           st[20] = 0;
           st[21] = 0;
           st[22] = 0;
           st[23] = 0;
           st[24] = 0;

           st[add80w_256bit_input] |= 0x8000000000000000;                
       }

       for (round = 0; round < KECCAK_ROUNDS; round++)
       {
         // Theta

         u64x bc0 = Theta1 (0);
         u64x bc1 = Theta1 (1);
         u64x bc2 = Theta1 (2);
         u64x bc3 = Theta1 (3);
         u64x bc4 = Theta1 (4);

         u64x t;

         t = bc4 ^ rotl64 (bc1, 1); Theta2 (0);
         t = bc0 ^ rotl64 (bc2, 1); Theta2 (1);
         t = bc1 ^ rotl64 (bc3, 1); Theta2 (2);
         t = bc2 ^ rotl64 (bc4, 1); Theta2 (3);
         t = bc3 ^ rotl64 (bc0, 1); Theta2 (4);

         // Rho Pi

         t = st[1];

         Rho_Pi (0);
         Rho_Pi (1);
         Rho_Pi (2);
         Rho_Pi (3);
         Rho_Pi (4);
         Rho_Pi (5);
         Rho_Pi (6);
         Rho_Pi (7);
         Rho_Pi (8);
         Rho_Pi (9);
         Rho_Pi (10);
         Rho_Pi (11);
         Rho_Pi (12);
         Rho_Pi (13);
         Rho_Pi (14);
         Rho_Pi (15);
         Rho_Pi (16);
         Rho_Pi (17);
         Rho_Pi (18);
         Rho_Pi (19);
         Rho_Pi (20);
         Rho_Pi (21);
         Rho_Pi (22);
         Rho_Pi (23);

         //  Chi

         Chi (0);
         Chi (5);
         Chi (10);
         Chi (15);
         Chi (20);

         //  Iota

         st[0] ^= keccakf_rndc[round];
       }
       /* ###################### NEW, remember for next round */
       st_roundResult[0] = st[ 0];
       st_roundResult[1] = st[ 1];
       st_roundResult[2] = st[ 2];
       st_roundResult[3] = st[ 3];
   }
   const u32x r0 = l32_from_64 (st[1]);
   const u32x r1 = h32_from_64 (st[1]);
   const u32x r2 = l32_from_64 (st[2]);
   const u32x r3 = h32_from_64 (st[2]);

   COMPARE_M_SIMD (r0, r1, r2, r3);
 }
}

Lost passphrase, help with syntax!

$
0
0
I am trying to use Hashcat to crack a personal Bitcoin wallet with a lost passphrase. The wallet was created on WarpWallet, which uses the XOR'd output of scrypt and PBFDK2, with a salt and passphrase, to generate a key pair. I do remember the salt, and the relatively short length of my original passphrase. I also know the wallet address. Basically, I want to try to brute force all combinations within my known character set using the known salt until I find one that matches the known public key.

Having trouble with the parameters/setup for this. I have hashcat running nicely but could use some assistance with syntax.

Thanks all.

Cant Decrypt

$
0
0
Every database i try to decrypt dosnt works, i have a powerfull 200GB database with no 2 same words take me like 1 week to do it and put all together in my server. I download some databases and put them in user:hashConfusedalt everyone. Now i go to hashcat and i do these :


./hashcat64.bin -m 2711 --username  /mpgh.txt /wordlist/1.txt


i also try with -m 2611 and dosnt work. 

I just need output to be user:pass and thath hashcat can crack the hash is user:hashConfusedalt format nothing more. Any idea?
and i know these

https://hashcat.net/wiki/doku.php?id=frequently_asked_questions#how_can_i_show_previously_cracked_passwords_and_output_them_in_a_specific_format_eg_emailpassword


Just i dont know in thath command where you put wordlist.txt

and i have in every line these error:
on line 238663  Line-length exception

in the other 238662 lines the same, i have a 20m hashes db to decrypt and still no way to do it. any possible solution?





Remove Cracked Hash

$
0
0
Hello i'm using hashcat-cli64

so file hashlist.txt dosent remove lines of the cracked hash.

any idea the remove founded hash and keep the left uncracked hash !!

how to output left hash / and found hash i get only hashcat.pot with list of the found passwd :///

HMAC-SHA1

$
0
0
Hi all,
I'm doing an ethical hacking activity and I want to test if developers used a good or bad "secret" for cookie signing.
The software is made with mojolicious that signs his cookie using HMAC-SHA1.

The problem is that the smaller signed cookie I can get from the application is 72 char long!
Using HMAC-SHA1 (150) and giving HASH:cookie (I need to "crack" the key) results in a "Line-length exception".

Am I doing something wrong? The hashcat limitation is something related to the gpu implementation or just a sanity check with passwords in mind?
HMAC is message authentication algo, it sound strange for me that it's impossible to brute a 72 char long text!

Anyone have a good advice for me?
Thank you in advance
Paolo

Use of multiple GPUs

$
0
0
Hi All, 

I've got 4x 1080Ti's in a system running the latest Windows Insider build that shows GPU usage in the Task Manager.

The task manager is only reporting one GPU being used.  Driver issue?


.png   GPus.PNG (Size: 7.12 KB / Downloads: 2)

Old version for CoreDuo ?

$
0
0
Hello world,

I have an old CoreDuo 2.4 laptop with NV 9400 and Win XP for testing purposes.

Tried recent versions of Hashcat - they're very hardware demanding, wont even run without latest OpenCL and 1 gig on VRAM.

Which one would work on this setup? I don't need any outstanding performance - its for tests only.
Any 5, 6 year old version will suffice.

So, which one? Thanks!

Command structure?

$
0
0
Hey is this possible to do if so how would the command look? at the moment i am running the following command on windows 10.

hashcat64.exe -m0 -a0 -o cracked.txt hash.txt word2.txt

I just want to be able to modify the command so the wordlist is a folder instead of a single txt file. Also if my hash.txt file is a email:hash format how can i have it so the output file will keep email:cracked hash.

If anybody can help me with the command and write the right format out for me i will be really grateful. all the things i have seen and tried are linux based and I am having trouble.

Slow Speed On My Nvidia GPU

$
0
0
Hi,

I am new to hashcat and I am trying to crack WPA Handshake file using "Hashcat" for windows.
I have a hp laptop with Nvidia GTX 740M Graphics card & Intel i7 Processor. I am only getting about 15000 keys per second speed. Is there something wrong?

Hash-encoding exception problems with colon in username

$
0
0
hello,

i used the forum search but didnt find any solution to this particular problem, but i dont think i'm the first one with this problem, so maybe someone can help

as mentioned in the thread subject, i have a list
Code:
username:pass:salt

when using this list i get multiple Hash-encoding exceptions because in some usernames the users used the : as character, example lines look like this
Code:
namepart1:namepart2:hash:salt

::::name:::::hash:salt

is there any workaround or has someone an idea how to deal with lines like that?

edit: had to use the codetag because of : s  = Confused

Laptop Overheating Problem on Hashcat

$
0
0
Hi,

After I run Hashcat to crack WPA Password, My laptop gets on upto 90 Celcius within 3-4 minutes and the process is stopped due to temperature limit. What should I do to cool the GPU?

I have NVIDIA GTX 740m with Intel's i7 Processor...

Sort and de-dupe without merging together?

$
0
0
Is there anyway to "sort and de-dupe" the entirety of my Wordlist folder without merging them together?

It's hard to explain what I exactly mean, hopefully someone understands, lol.

NEED HELP

$
0
0
HI i have problem with hashcat  3.6.0 when i start to crack i got this message

Cracking performance lower than expected?

* Update your OpenCL runtime / driver the right way:
  https://hashcat.net/faq/wrongdriver

* Create more work items to make use of your parallelization power:

  https://hashcat.net/faq/morework

My OS is Windows 8.1 64 bit my video is amd 7990 my video driver is 17.7.1

Thank you Smile

hashcat - strange behavior

$
0
0
Today I tried to install new kernel, but it was fail. So I deleted and return the old kernel.
After that hashcat not respond the "s" or "q" key. So I can not update the screen, pressing "s" key.

hashcat version: v3.6.0 (installed from source)


l
Code:
[b]sb_release -a:[/b]
[code]LSB Version:    core-9.20160110ubuntu0.2-amd64:core-9.20160110ubuntu0.2-noarch:security-9.20160110ubuntu0.2-amd64:security-9.20160110ubuntu0.2-noarch
Distributor ID:    Ubuntu
Description:    Ubuntu 16.04.3 LTS
Release:    16.04
Codename:    xenial
[/code]


uname -r: 4.4.0-96-generic

lspci | grep VGA: 00:02.0 VGA compatible controller: Intel Corporation HD Graphics 620 (rev 02)

"OpenCL Runtime for Intel Core and Intel Xeon Processors" driver installed for CPU.


Code:
[b]vivien@vivien-Inspiron-5567:~$ lspci[/b]
00:00.0 Host bridge: Intel Corporation Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers (rev 02)
00:02.0 VGA compatible controller: Intel Corporation HD Graphics 620 (rev 02)
00:04.0 Signal processing controller: Intel Corporation Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem (rev 02)
00:14.0 USB controller: Intel Corporation Sunrise Point-LP USB 3.0 xHCI Controller (rev 21)
00:14.2 Signal processing controller: Intel Corporation Sunrise Point-LP Thermal subsystem (rev 21)
00:15.0 Signal processing controller: Intel Corporation Sunrise Point-LP Serial IO I2C Controller #0 (rev 21)
00:15.1 Signal processing controller: Intel Corporation Sunrise Point-LP Serial IO I2C Controller #1 (rev 21)
00:16.0 Communication controller: Intel Corporation Sunrise Point-LP CSME HECI #1 (rev 21)
00:17.0 SATA controller: Intel Corporation Sunrise Point-LP SATA Controller [AHCI mode] (rev 21)
00:1c.0 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port #5 (rev f1)
00:1c.5 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port #6 (rev f1)
00:1f.0 ISA bridge: Intel Corporation Sunrise Point-LP LPC Controller (rev 21)
00:1f.2 Memory controller: Intel Corporation Sunrise Point-LP PMC (rev 21)
00:1f.3 Audio device: Intel Corporation Sunrise Point-LP HD Audio (rev 21)
00:1f.4 SMBus: Intel Corporation Sunrise Point-LP SMBus (rev 21)
01:00.0 Network controller: Intel Corporation Wireless 3165 (rev 79)
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller (rev 07)



I attached the clinfo, also. Download

Could you help, please?
Viewing all 8180 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>