Skip to content

Instantly share code, notes, and snippets.

View roycewilliams's full-sized avatar
💭
:cheeeeeese:

Royce Williams roycewilliams

💭
:cheeeeeese:
View GitHub Profile
@roycewilliams
roycewilliams / irongiant-benchmarks_hashcat~3.10b97_v3.00-97-g57ce1fd_2016-08-18.txt
Last active January 4, 2017 09:34
irongiant-benchmarks_hashcat~3.10b97_v3.00-97-g57ce1fd_2016-08-18.txt
# Devices: 6x EVGA 04G-P4-2974-KR, factory overclocked but otherwise unmodified
# Hashes are in order from slowest (better for the defender) to fastest (better for the attacker)
hashcat (v3.00-97-g57ce1fd)
OpenCL Platform #1: NVIDIA Corporation
======================================
- Device #1: GeForce GTX 970, 1009/4036 MB allocatable, 13MCU
- Device #2: GeForce GTX 970, 1009/4036 MB allocatable, 13MCU
- Device #3: GeForce GTX 970, 1009/4036 MB allocatable, 13MCU
@roycewilliams
roycewilliams / gpg-wordlist.txt
Created August 27, 2016 14:35
gpg-wordlist.txt
aardvark
absurd
accrue
acme
adrift
adroitness
adult
adviser
afflict
aftermath
@roycewilliams
roycewilliams / rockyou-top15k.txt
Created August 27, 2016 15:09
rockyou-top15k.txt
123456
12345
123456789
password
iloveyou
princess
1234567
rockyou
12345678
abc123
@roycewilliams
roycewilliams / kp-hosts_scans.io_20160903_dnsrecords_all.list
Created September 20, 2016 13:33
kp-hosts_scans.io_20160903_dnsrecords_all.list
# DNS "any" data from scans.io for .kp - 2016-09-03
176.45.175.in-addr.arpa,ns,ns1.kptc.kp
176.45.175.in-addr.arpa,ns,ns2.kptc.kp
airkoryo.com.kp,a,175.45.176.69
airkoryo.com.kp,mx,10 mail.airkoryo.com.kp
airkoryo.com.kp,ns,ns1.airkoryo.com.kp
airkoryo.com.kp,ns,ns2.airkoryo.com.kp
airkoryo.com.kp,soa,ns1.airkoryo.com.kp postmaster.airkoryo.com.kp 2012042612 28800 7200 1209600 3600
airkoryo.com.kp,txt,|vspf1 ipv4:175.45.176.70 -all
com.kp,ns,ns1.com.kp
mail.airkoryo.com.kp
mail.silibank.net.kp
mail.star.edu.kp
smtp.star-co.net.kp
smtp.star.net.kp
www.airkoryo.com.kp
www.event-expo.jp
www.event-expo.kp
www.friend.com.kp
www.gnu.rep.kp
@roycewilliams
roycewilliams / bcrypt-example
Last active May 18, 2021 18:34
bcrypt-example
$ cat ~/bcrypt.hash
$2a$05$LhayLxezLhK1LhWvKxCyLOj0j1u.Kj0jZ0pEmm134uzrQlFvQJLF6
$ cat ~/bcrypt.dict
hashcat
$ ./hashcat64.bin -a 0 -m 3200 ~/bcrypt.hash ~/bcrypt.dict
hashcat (v3.10-143-g7f59a82) starting...
OpenCL Platform #1: NVIDIA Corporation
@roycewilliams
roycewilliams / liveablecode.md
Last active July 15, 2021 04:53
summary of Sarah Mei's idea or Konmari and liveable code - liveablecode.com
@roycewilliams
roycewilliams / ubuntu-https-mirrors.txt
Last active February 5, 2019 13:24
ubuntu-https-mirrors.txt
# A subset of Ubuntu HTTPS mirrors that serve up proper (non-self-signed) HTTPS.
# Based on checks of https://launchpad.net/ubuntu/+archivemirrors
# Basically:
#
# rm https.list;
# for item in `cat archivemirrors | sed 's/http:/https://g'`; do
# wget -t 1 --timeout=5 $item && echo $item >>https.list;
# done
#
# Updated: 2016-12-14
@roycewilliams
roycewilliams / hexhosts.c
Created December 21, 2016 05:50
hexhosts.c
# Via: https://up1ink.tumblr.com/post/132370869368/bruteforcing-knownhosts-file-with-hashcat
# Credit: https://github.com/persona5/hexhosts
#define _GNU_SOURCE
#include ""
#include ""
int main(void) {
FILE *fp;
char *line = NULL;