Skip to content

Instantly share code, notes, and snippets.

@epixoip
epixoip / TitanX.md
Last active December 23, 2016 10:56
World's First Nvidia GTX Titan X cudaHashcat Benchmarks

Nvidia GTX Titan X cudaHashcat Benchmarks

Product: Sagitta Inceptus (PN S1430X-GTX-TITANX) (my dev box)

Software: cudaHashcat 1.36b31, ForceWare 346.35

Accelerator: 1x Nvidia GTX Titan X reference design

Observations

@epixoip
epixoip / 8x290X
Last active August 21, 2017 10:52
World's First 8x R9 290X oclHashcat Benchmark
System: Sagitta Brutalis (S2480-RAD-290X) with 8x 290X
https://sagitta.systems/hardware/gpu-compute-nodes/brutalis/
epixoip@token:~/oclHashcat-1.00$ od6config --list
Adapter 0: AMD Radeon R9 290 Series
Adapter 1: AMD Radeon R9 290 Series
Adapter 2: AMD Radeon R9 290 Series
Adapter 3: AMD Radeon R9 290 Series
@epixoip
epixoip / 8x980_init.md
Last active August 21, 2017 10:52
World's First 8x GTX 980 cudaHashcat Benchmark

This benchmark is outdated!

This benchmark was made with the first beta driver to support GM2xx chips. Unfortunately, it was a half-baked driver that failed to unleash this card's true potential. The production version of the driver resolved all performance issues with this card.

For the latest benchmarks, see https://gist.github.com/epixoip/abd64f1af800013abb1f

8x GTX 980 cudaHashcat Benchmark -- Inital

Product: Sagitta Brutalis 980 (PN S2480-GTX-980)

@epixoip
epixoip / 8x980_updated.md
Last active October 25, 2017 03:16
** UPDATED 4/16 ** 8x GTX 980 cudaHashcat Benchmark

8x GTX 980 cudaHashcat Benchmark

Product: Sagitta Brutalis 980 (PN S2480-GTX-980)

Software: cudaHashcat 1.36b25, ForceWare 346.35

Accelerator: 8x Nvidia GTX 980 reference design, +250 clock offset

Highlights

@epixoip
epixoip / 970.md
Created April 28, 2015 02:20
GTX 970 cudaHashcat Benchmark

Nvidia GTX 970 cudaHashcat Benchmarks

Product: Sagitta Inceptus (PN S2430X-GTX-970) (my dev box)

Software: cudaHashcat 1.36b31, ForceWare 346.35

Accelerator: 1x Nvidia GTX 970 reference design, +250 clock offset

Observations

@epixoip
epixoip / bcrypt.md
Last active March 21, 2019 17:14
Maxwell/Pascal bcrypt Benchmark

Maxwell/Pascal bcrypt Benchmarks

Product: Sagitta Invictus-based dev box

Software: Hashcat v3.6.0-39-gc918173, Nvidia driver 381.22

Accelerator: 1x GTX 970 reference, 1x GTX 980 reference, 1x GTX Titan X (Maxwell) reference, 1x GTX 1080 Ti FE

root@dev:~/hashcat# ./hashcat -w 4 -b -m 3200
@epixoip
epixoip / oracle_tm.pl
Last active June 15, 2019 17:35
Oracle Transportation Management reference hash implementation
#!/usr/bin/env perl
# Oracle Transportation Management reference hash implementation
# Fri 14 Jun 2019 11:02:08 PM CDT, jgosney@terahash.com
use strict;
use warnings;
use Crypt::Digest::SHA256 qw(sha256);
use MIME::Base64;
@epixoip
epixoip / 1080.md
Last active August 21, 2019 14:04

Nvidia GTX 1080 Hashcat Benchmarks

Product: Sagitta Invictus (PN S2440X-GTX-1080)

Software: Hashcat 3.00-beta-116-g9a54829, Nvidia driver 367.18

Accelerator: 1x Nvidia GTX 1080 Founders Edition

Highlights

@epixoip
epixoip / 8xTitanX.md
Last active October 10, 2019 23:10
World's First 8x Nvidia GTX Titan X cudaHashcat Benchmarks
@epixoip
epixoip / test_delims.pl
Created November 5, 2019 07:07
Brute force field delimiters in a text file
#!/usr/bin/env perl
use strict;
use warnings;
my @delims = ( 9, 11, 28, 29, 30, 31, 32 .. 47, 58 .. 64, 91 .. 96, 123 .. 126 );
my $file = $ARGV[0] || die "Usage: $0 <filename>\n";
open (my $fh, "<", $file) || die "Unable to open $file: $!\n";