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
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
mDMEZ1wQ4RYJKwYBBAHaRw8BAQdArkE1W3LBkW1Mqii3z3RbP8I0khz5q1hAFNTs | |
vn+I4H20H0ExMTMxIDxudWxscG9pbnRlckBpMnBtYWlsLm9yZz6IkgQTFgoAOwIb | |
IwULCQgHAgIiAgYVCgkICwIEFgIDAQIeBwIXgBYhBEsKOGUw14kVdDXcdIkTj7Uv | |
3X/BBQJnXMqJAAoJEIkTj7Uv3X/BzdsA9ia8VCHcGskWvRbKi/fnWXehMYNLilhJ | |
NL1SoboggssBAKIEa/WRGHTyKq+Gw/Ac04yfgceZQhTwsQfzTTW4uCoJiJMEExYK | |
ADsWIQRLCjhlMNeJFXQ13HSJE4+1L91/wQUCZ1w+AgIbIwULCQgHAgIiAgYVCgkI | |
CwIEFgIDAQIeBwIXgAAKCRCJE4+1L91/wRRiAP4xLROw5JScqno+e4t1H5myAeBJ | |
rTMA247GdO8L5lqybQD5AfRTuK0wqdh5ZfC9cQ9zx6GI/NFdqLyjhlhgtHN7Dgm0 |
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 -m 99999 base.txt target.txt -r rulefile.rule --debug-file outputRules.txt --debug-mode 1 --hwmon-temp-abort=95 -O --hwmon-disable && sort outputRules.txt | uniq -c | sort -nr | awk '{$1=""; sub(/^ /, ""); print}' > output.rule |
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
mono App.Merge.exe o="wordlist_cleaned.txt" t=4 c=4 min=1 max=31 "wordlist1.txt" "wordlist2.txt" |
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
CUDA API (CUDA 11.6) | |
==================== | |
* Device #1: NVIDIA GeForce GTX 1050 Ti, 754/4042 MB, 6MCU | |
OpenCL API (OpenCL 3.0 CUDA 11.6.134) - Platform #1 [NVIDIA Corporation] | |
======================================================================== | |
* Device #2: NVIDIA GeForce GTX 1050 Ti, skipped | |
OpenCL API (OpenCL 2.0 beignet 1.3) - Platform #2 [Intel] | |
========================================================= |
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
LC_ALL=C find . -type f -exec grep -E -o -a -h "\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,6}\b" {} \; | sort -S60% --parallel=8 -T TMP -u > emails.txt |