Skip to content

Instantly share code, notes, and snippets.

View freeroute's full-sized avatar

freeroute freeroute

  • Merrit, British Columbia
View GitHub Profile
@sleshep
sleshep / cvt.py
Created May 5, 2023 07:54
Hashcat mode 2500 to 22000 converter Python Script. hccapx to mode 22000
import sys
import os
import struct
def main():
if len(sys.argv) != 2:
print("Usage: python convert_hccapx_to_22000.py <input_hccapx_file>")
sys.exit(1)
@Chick3nman
Chick3nman / RTX_4090_v6.2.6.Benchmark
Created October 14, 2022 00:07
Hashcat v6.2.6 benchmark on the Nvidia RTX 4090
NVIDIA Driver Version: 522.25 CUDA Version: 11.8
Credit: blazer
For benchmarking the card and allowing me to release the benchmarks here
The hashcat installation used includes a change to the tuning ALIAS.hctune file to include the RTX 4090 as "ALIAS_nv_sm50_or_higher".
The "Kernel exec timeout" warning is cosmetic and does not affect the speed of any of the benchmarked modes.
Benchmark was run at stock clocks on an Asus Strix 4090.
@matrix
matrix / AppleM1-Metal-v6.2.5-209-g431c46f43-FullBenchmark-arm64-Vec2
Created February 10, 2022 23:18
Hashcat v6.2.5-209-g431c46f43+, Full Benchmark on Apple M1 (arm64 binary) using Metal runtime, Vector size 2
% ./hashcat -I
hashcat (v6.2.5-209-g431c46f43+) starting in backend information mode
System Info:
============
OS.Name......: Darwin
OS.Release...: 21.3.0
HW.Model.....: Macmini9,1
HW.Platform..: arm64
@singe
singe / README.md
Last active March 19, 2022 03:15
Windows Arabic Code Page (1265) for hashcat

A Windows Arabic Code Page (CP1256) hashcat charset file. Its use is described by hashcat here. The original blog post describing it can be found at NTHashes and Encodings.

@roycewilliams
roycewilliams / bcrypt-ascending.txt
Last active May 30, 2025 19:10
bcrypt hashes for 'password', all possible work factors / costs (cost 4 through cost 31)
#-----------------------------------------------------------------------------
# bcrypt hashes for the plain 'password', costs 4 through 31, and how much
# time it took to generate the hash on a reference system (CPU).
#-----------------------------------------------------------------------------
#
# htpasswd version matters - this one is from apache2-utils (2.4.18-2ubuntu3.10)
# Note that the official Apache version now stops at bcrypt cost 18:
#
# https://bz.apache.org/bugzilla/show_bug.cgi?id=62078
#
@alexanderjsingleton
alexanderjsingleton / infosexy.md
Last active May 22, 2024 16:37
Alexander J. Singleton's InfoSexy tutorial with Hashcat
@soxrok2212
soxrok2212 / Nvidia GeForce GTX 1080 Founder's Edition 8GB (9001G4132500001) - Hashcat Benchmark.md
Last active November 17, 2021 03:55
Nvidia GeForce GTX 1080 Founder's Edition 8GB (9001G4132500001) - Hashcat Benchmark

Nvidia GeForce GTX 1080 Founder's Edition 8GB (9001G4132500001) - Hashcat Benchmark

Driver: 470.57.02
CUDA Version: 11.4
Hashcat Version: 6.2.3

Stock Boost Clock: 1733 MHz

CUDA API (CUDA 11.4)
====================
[List.Rules:Try]
cAz"[0-9]"
cAz"[£!$@#-=_]"
cAz"[0-9][0-9]"
cAz"[0-9][£!$@#-=_]"
cAz"[£!$@#-=_][0-9]"
cAz"[0-9][0-9][0-9]"
cAz"[0-9][0-9][0-9][0-9]"
cA0"[0-9]"
cA0"[£!$@#-=_]"
@roycewilliams
roycewilliams / allbench.sh
Last active August 26, 2022 13:48
allbench.sh - run hashcat benchmarks one at a time
#!/bin/bash
#-----------------------------------------------------------------------
# Created: 2017-10-17
# License: MIT
# Author: tychotithonus
#-----------------------------------------------------------------------
# Get list of algorithms.
@roycewilliams
roycewilliams / md5-10k-rounds-password.txt
Last active March 19, 2022 19:54
The first 10,000 rounds of MD5("password")
# The first 10,000 rounds of MD5("password")
# Courtesy MDXfind - https://hashes.org/mdxfind.php
# (Mirror: https://www.techsolvency.com/pub/bin/mdxfind/)
# Source: https://gist.github.com/roycewilliams/794e4d7a81e7840deae29fdc7c03fa10
#
# See also: https://gist.github.com/roycewilliams/5e8d676ac4fe54fb7b6cb233b0721f57
#
# Windows:
# echo password | mdxfind -h "^MD5$" -z -f NUL -i 10000 stdin
#