loadkeys us-acentos
Wireless connection
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... |
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,
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: |
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 |
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 | |
====================================== |
#!/bin/bash | |
__get_random_string () { | |
openssl rand -hex "${1}" | cut -c "1-${1}" | |
} | |
__my_vm='W10' |
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 |
#!/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 |
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"))) |