Skip to content

Instantly share code, notes, and snippets.

@Chick3nman
Chick3nman / RTX_3090_v6.1.1.Benchmark
Last active April 26, 2024 02:28
Hashcat v6.1.1 benchmark on the Nvidia RTX 3090
NVIDIA Driver Version: 456.38 CUDA Version: 11.1
Credit: blazer
For benchmarking the card and allowing me to release the benchmarks here
There are some warnings about the CUDA Toolkit/Driver version but they dont appear to affect functionality or speed.
It appears to be some sort of version missmatch issue during detection and is seemingly just cosmetic. Noted for further investigation.
hashcat (v6.1.1-83-g90fb4aad) starting in benchmark mode...
@gustavohenrique
gustavohenrique / archlinux.md
Last active April 14, 2023 23:23
Arch Linux installation and setup

Installation

loadkeys us-acentos

Network

Wireless connection

@atoponce
atoponce / rates.md
Last active March 16, 2025 03:59
Verifiable brute force strength rates across different projects

Verifiable brute force strength

Below are table of various projects that can completely exhaust n-bits of keyspace. In other words, counting completely and fully from 0 to 2ⁿ-1.

This Gist implies no discussion about how this is relevant to quantum computing using Grover's algorithm, meet-in-the-middle or birthday attacks, or anything of the like. It's strictly a Gist about raw speed, measuring the result in bits.

If you know of other noteworthy and verifiable brute force searching projects,

@binary1985
binary1985 / 2080ti-hashcat.txt
Created November 21, 2018 16:53
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:
@codeandsec
codeandsec / 2x 2080Ti Hashcat Benchmark
Created October 24, 2018 21:34
2x 2080Ti Hashcat Benchmark
OS: Linux Mint
OC: None (stock)
NVIDIA-SMI 410.66 Driver Version: 410.66 CUDA Version: 10.0
hashcat (v4.2.0-11-g95b420df) starting in benchmark mode...
OpenCL Platform #1: NVIDIA Corporation
======================================
* Device #1: GeForce RTX 2080 Ti, 2746/10986 MB allocatable, 68MCU
* Device #2: GeForce RTX 2080 Ti, 2747/10989 MB allocatable, 68MCU
@Chick3nman
Chick3nman / 2080.Benchmark
Last active February 2, 2020 04:04
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
======================================
@W-Floyd
W-Floyd / SolidWorks_Spoof.sh
Created September 1, 2018 19:01
Simple script to make a Virtualbox VM hidden enough to install SolidWorks
#!/bin/bash
__get_random_string () {
openssl rand -hex "${1}" | cut -c "1-${1}"
}
__my_vm='W10'
@Chick3nman
Chick3nman / 4xV100
Last active March 14, 2024 16:19
Hashcat 4.1.0 Benchmarks on 4xV100
This benchmark was run on an Amazon EC2 p3.8xLarge instance with 4x Nvidia Tesla Volta V100 GPUs.
Nvidia Driver Version: 390.30
Hashcat Release: 4.1.0
hashcat (v4.1.0) starting in benchmark mode...
OpenCL Platform #1: NVIDIA Corporation
@mgeeky
mgeeky / playRTPStream.sh
Last active January 15, 2021 18:11
Simple script using rtpdump to play RTP streams from PCAP files with VLC. (https://github.com/hdiniz/rtpdump)
#!/bin/bash
rtpdump_bin=/home/user/tools/rtpdump/rtpdump
if (( $# < 2 )); then
echo
echo This script tries to extract RTP streams from PCAP file using
echo https://github.com/hdiniz/rtpdump
echo utility and passing that stream to VLC player, or to output file.
echo
@loretoparisi
loretoparisi / react_inject.js
Created October 18, 2017 21:25
React Code Injection
injc=(src,cbk) => { let script = document.createElement('script');script.src = src;document.getElementsByTagName('head')[0].appendChild(script);script.onload=()=>cbk() }
injc("https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js",() => injc("https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js",() => console.log("ready")))