Skip to content

Instantly share code, notes, and snippets.

hashcat (v6.2.5) starting in benchmark mode
CUDA API (CUDA 11.4)
====================
* Device #1: NVIDIA GeForce GTX 980 Ti, 5216/6144 MB, 22MCU
Benchmark relevant options:
===========================
* --optimized-kernel-enable
@Xanadrel
Xanadrel / ms17-010-bsod.py
Created May 18, 2017 16:37
eternalblue poc
from impacket import smb
from struct import pack
import sys
'''
PoC for trigger EternalBlue bug (BSOD)
Reference:
- http://blogs.360.cn/360safe/2017/04/17/nsa-eternalblue-smb/
'''
@Xanadrel
Xanadrel / eternalblue7_exploit.py
Created May 18, 2017 16:37 — forked from worawit/eternalblue7_exploit.py
Eternalblue exploit for Windows 7/2008
#!/usr/bin/python
from impacket import smb
from struct import pack
import os
import sys
import socket
'''
EternalBlue exploit for Windows 7/2008 by sleepya
The exploit might FAIL and CRASH a target system (depended on what is overwritten)
@Xanadrel
Xanadrel / eternalblue8_exploit.py
Created May 17, 2017 22:15 — forked from worawit/eternalblue8_exploit.py
Eternalblue exploit for Windows 8/2012
#!/usr/bin/python
from impacket import smb
from struct import pack
import os
import sys
import socket
'''
EternalBlue exploit for Windows 8 and 2012 by sleepya
The exploit might FAIL and CRASH a target system (depended on what is overwritten)