This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /** | |
| * shiro1 cracking snippet | |
| * So apparently hashcat and JtR don't support these kind of specific hashes | |
| * with salt and iterations so I needed to code my own. | |
| * It has shit performance, code is probably retarded; I don't do java so I just | |
| * hacked this to verify a hash I dumped from Sonatype Nexus wasn't in a basic dictionnary. | |
| * And if you're here you likely can't afford to be picky... | |
| * Based on this snippet: https://gist.github.com/mdeggies/cdfd22a9cf28b4e909489b877681a209 | |
| * | |
| * Usage: | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /** | |
| * gcc shiro1.c -lcrypto -lssl -fopenmp | |
| * | |
| * Crack salted iterated SHA512 hashes. | |
| * Just wanted to check how much faster it was rather in C than in Java: | |
| * https://gist.github.com/gquere/365cfcceef9ac8d145cc59bbf2c27648 | |
| * | |
| * Here are the results I got using rockyou, 1024 iterations, so about 15 billion hashes: | |
| * time ./a.out ../rockyou.txt | |
| * 8130,86s user 1,05s system 787% cpu 17:12,07 total | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | 60 ff 54 24 44 61 31 c0 48 c3 55 89 e5 5d e9 07 00 00 00 0f 1f 80 00 00 00 00 55 89 e5 53 57 56 81 ec 2c 12 00 00 e8 00 00 00 00 5b 64 a1 30 00 00 00 89 85 70 ff ff ff 8b 40 4c 64 8b 0d 30 00 00 00 c7 45 e4 00 00 00 00 ba 00 00 00 00 be 00 00 00 00 89 4d cc 85 c9 74 35 8b 4d cc 8b 79 34 ba 00 00 00 00 be 00 00 00 00 85 ff 74 21 8b bf b8 00 00 00 ba 00 00 00 00 be 00 00 00 00 85 ff 74 0d 8b 57 3c 8b 54 17 78 8b 74 17 1c 89 fa 8b 74 16 58 80 7c 16 11 8b 89 5d a0 75 10 80 7c 32 12 0d 75 09 8b 4c 32 13 8b 09 89 4d e4 c7 85 5c ff ff ff 00 00 00 00 c7 45 f0 00 00 00 00 c7 45 e8 00 00 00 00 be 00 00 00 00 bf 00 00 00 00 b9 00 00 00 00 85 c0 75 1c e9 b7 00 00 00 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 00 8b 00 85 c0 0f 84 8c 00 00 00 0f b7 50 10 8b 4d e4 8b 14 91 8b 72 10 8a 1e 84 db 74 e3 46 b9 43 49 54 53 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 00 0f be db 89 cf c1 e7 05 01 f9 01 d9 0f b6 1e 46 84 db 75 ec 81 f9 64 9c 0b 7c 75 b4 8b 42 24 c7 45 f0 00 00 00 00 c7 45 e8 00 00 00 00 be 00 00 00 00 bf 00 00 00 00 b9 00 00 00 0 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/env python3 | |
| # http://lasecwww.epfl.ch/pub/lasec/doc/Vau98a.ps | |
| import sys | |
| from pyfinite import ffield # don't forget to patch to include your field! | |
| # CIPHER CONSTANTS ############################################################# | |
| c = 0xb7e15162 | |
| S = [ | |
| 0x8AED2A, 0x6ABF71, 0x58809C, 0x0F4F3C7, 0x62E716, 0x0F38B4, 0x0DA56A7, 0x84D904, | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <stdint.h> | |
| #include <string.h> | |
| void ripemd(int *output, int *input) | |
| { | |
| uint iVar1; | |
| uint iVar2; | |
| uint iVar3; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/env python2 | |
| import gmpy | |
| # MODULAR QUADRATIC EQUATION SOLVER ############################################ | |
| def compute_next_sqrt(prev_sqrt, x, N): | |
| if x % (2**N) == (prev_sqrt * prev_sqrt) % (2**N): | |
| return prev_sqrt | |
| elif (2**(N - 1) + x) % (2**N) == (prev_sqrt * prev_sqrt) % (2**N): | |
| return 2**(N-2) - prev_sqrt | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/env python3 | |
| import argparse | |
| import requests | |
| import json | |
| import urllib3 | |
| from urllib.parse import urlparse | |
| import os | |
| import re | |
| from getpass import getpass | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/env python3 | |
| import argparse | |
| import requests | |
| import json | |
| import urllib3 | |
| from urllib.parse import urlparse | |
| import os | |
| import re | |
| from getpass import getpass | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/env python3 | |
| import requests | |
| import json | |
| import urllib3 | |
| import sys | |
| # SUPPRESS WARNINGS ############################################################ | |
| urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #include <stdlib.h> | |
| #include <stdio.h> | |
| #include <stdint.h> | |
| #include <fcntl.h> | |
| #include <linux/i2c-dev.h> | |
| #define READ_SIZE (256) | |
| #define NB_PAGES (256) | 
OlderNewer