Skip to content

Instantly share code, notes, and snippets.

View mdawsonuk's full-sized avatar
💻

Matt mdawsonuk

💻
  • Public Sector
  • UK
  • 23:41 (UTC)
View GitHub Profile
@mdawsonuk
mdawsonuk / ms17-010_exploit.py
Last active November 30, 2019 21:53
A Python 3 port of the script that checks if a computer is vulnerable to MS17-010
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# This is a Python 3 port of the script found at the below URL
# https://github.com/nixawk/labs/blob/master/MS17_010/smb_exploit.py
from ctypes import *
import socket
import struct
import logging