Skip to content

Instantly share code, notes, and snippets.

@kennwhite
kennwhite / nvidia_2060_hashcat.txt
Last active June 29, 2020 20:31
Nvidia GTX 2060 hashcat benchmark
$ ./hashcat64.bin -b
hashcat (v5.1.0) starting in benchmark mode...
Benchmarking uses hand-optimized kernel code by default.
You can use it in your cracking session by setting the -O option.
Note: Using optimized kernel code limits the maximum supported password length.
To disable the optimized kernel code in benchmark mode, use the -w option.
* Device #1: WARNING! Kernel exec timeout is not disabled.
This may cause "CL_OUT_OF_RESOURCES" or related errors.
@kennwhite
kennwhite / Nvidia_2060_Super_Hashcat_v_5.1.txt
Created February 9, 2020 21:53
Nvidia 2060 Super Hashcat v 5.1
Hashcat: v5.1.0-1384-g9268686e
OS: Ubuntu 18.04.3 LTS
Nvidia Drivers: 430.40
GPU: PNY NVIDIA GeForce RTX 2060 SUPER 8GB x 3
Manufacturer code: VCG20608SDFPPB
Code:
hashcat (v5.1.0-1384-g9268686e) starting in benchmark mode...
Benchmarking uses hand-optimized kernel code by default.
You can use it in your cracking session by setting the -O option.
@kennwhite
kennwhite / 2080ti-hashcat.txt
Created February 9, 2020 21:46 — forked from binary1985/2080ti-hashcat.txt
Gigabyte RTX 2080ti Hashcat Benchmarks
hashcat (v5.0.0) starting in benchmark mode...
* Device #1: WARNING! Kernel exec timeout is not disabled.
This may cause "CL_OUT_OF_RESOURCES" or related errors.
To disable the timeout, see: https://hashcat.net/q/timeoutpatch
OpenCL Platform #1: NVIDIA Corporation
======================================
* Device #1: GeForce RTX 2080 Ti, 2816/11264 MB allocatable, 68MCU
Benchmark relevant options:
@kennwhite
kennwhite / rtx2080.md
Created February 9, 2020 21:46 — forked from epixoip/rtx2080.md
Nvidia RTX 2080 FE Hashcat Benchmarks

Nvidia RTX 2080 FE Hashcat Benchmarks

Product: As there is currently no Linux driver, we had to use chick3nman's desktop (Windows 7)

Software: Hashcat v4.2.1, Nvidia driver 411.63

Accelerator: 1x Nvidia RTX 2080 Founders Edition

Notes

@kennwhite
kennwhite / 2080S.md
Created February 9, 2020 21:34 — forked from epixoip/2080S.md
Nvidia RTX 2080 SUPER FE Hashcat Benchmarks

Nvidia RTX 2080 SUPER FE Hashcat Benchmarks

Software: Hashcat v5.1.0, Nvidia driver 430.34

Accelerator: 1x Nvidia RTX 2080 SUPER Founders Edition

Notes

  1. Only ~ 3% faster than non-SUPER 2080. Future drivers may show slightly better performance, but this seems like a pretty good driver as far as release-day drivers go.
@kennwhite
kennwhite / GeForce_RTX_2070_hashcat.txt
Created February 2, 2020 04:10
GeForce RTX 2070 hashcat
hashcat (v5.0.0) starting in benchmark mode...
* Device #1: WARNING! Kernel exec timeout is not disabled.
This may cause "CL_OUT_OF_RESOURCES" or related errors.
To disable the timeout, see: https://hashcat.net/q/timeoutpatch
OpenCL Platform #1: NVIDIA Corporation
======================================
* Device #1: GeForce RTX 2070, 2048/8192 MB allocatable, 36MCU
OpenCL Platform #2: Intel(R) Corporation
@kennwhite
kennwhite / 2080.Benchmark
Created February 2, 2020 04:04 — forked from Chick3nman/2080.Benchmark
RTX 2080 benchmark in hashcat v 4.2.1
Nvidia Driver version 411.63
hashcat (v4.2.1) starting in benchmark mode...
OpenCL Platform #1: Intel(R) Corporation
========================================
* Device #1: Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz, skipped.
OpenCL Platform #2: NVIDIA Corporation
======================================
@kennwhite
kennwhite / southern_biscuits.md
Last active December 19, 2019 22:34
Easy southern biscuits

Southern Biscuits

Ingredients

  • 3 cups SELF-RISING White Lilly flour
  • 3 Tbsp sugar
  • 1/2 tsp salt
  • 1/2 tsp cream of tartar
  • 3/4 cup COLD or FROZEN salted butter
  • 1 egg
  • 2/3 cup whole milk
@kennwhite
kennwhite / SecurityProvidersAndAlgorithms.java
Created December 4, 2019 18:53 — forked from nicoulaj/SecurityProvidersAndAlgorithms.java
List all Java Security providers and algorithms available in the environment.
import java.security.Provider;
import java.security.Security;
import java.util.Enumeration;
public class SecurityProvidersAndAlgorithms {
public static void main(String[] args) throws Exception {
try {
Provider p[] = Security.getProviders();
for (int i = 0; i < p.length; i++) {
System.out.println(p[i]);