Wow. Stripped-down, reading-ready summary follows below, but here's the original link:
https://twitter.com/sarahmei/status/783340259073335296
The author, Sarah Mei (@sarahmei) has also registered liveablecode.com (no content yet).
[begin summary]
| # 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 |
| aardvark | |
| absurd | |
| accrue | |
| acme | |
| adrift | |
| adroitness | |
| adult | |
| adviser | |
| afflict | |
| aftermath |
| 123456 | |
| 12345 | |
| 123456789 | |
| password | |
| iloveyou | |
| princess | |
| 1234567 | |
| rockyou | |
| 12345678 | |
| abc123 |
| # 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 |
| $ 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 |
Wow. Stripped-down, reading-ready summary follows below, but here's the original link:
https://twitter.com/sarahmei/status/783340259073335296
The author, Sarah Mei (@sarahmei) has also registered liveablecode.com (no content yet).
[begin summary]
| # 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 |
| # 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; |