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.
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
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) |
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
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. | |
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
% ./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 |
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
#----------------------------------------------------------------------------- | |
# 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 | |
# |
This tutorial is a mash-up derived from several blogs and presentations:
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
[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"[£!$@#-=_]" |
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
#!/bin/bash | |
#----------------------------------------------------------------------- | |
# Created: 2017-10-17 | |
# License: MIT | |
# Author: tychotithonus | |
#----------------------------------------------------------------------- | |
# Get list of algorithms. |
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
# 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 | |
# |
NewerOlder