How to play a sound and/or use discord webhook when a password is cracked - working! - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Developer (https://hashcat.net/forum/forum-39.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-40.html) +--- Thread: How to play a sound and/or use discord webhook when a password is cracked - working! (/thread-12226.html) |
How to play a sound and/or use discord webhook when a password is cracked - working! - digi - 11-21-2024 step 1) download a new hashcat copy Code: $ git clone https://github.com/hashcat/hashcat.git step2) edit the potfile.c Look for around line 249 for this: void potfile_write_append (hashcat_ctx_t *hashcat_ctx, const char *out_buf, const int out_len, u8 *plain_ptr, unsigned int plain_len) before it ends } I added this: Code: // Test Audio Playback remember to change the audio clip to something you want to hear. step 3) build the binary Code: make clean you will hear audio and get a discord webhook notification |