scapy scripts (including ddos)

This commit is contained in:
Mari Wahl 2014-12-28 15:50:05 -05:00
parent 2acc68c3dd
commit 8ca96e0b02
28 changed files with 172723 additions and 125 deletions

View file

@ -0,0 +1,16 @@
#!/usr/bin/env python
__author__ = "bt3"
from scapy.all import *
def nmap_simple():
load_module("nmap")
nmap_fp("192.168.0.114")
def os_finger():
load_module('p0f')
sniff(prn=prnp0f)
if __name__ == '__main__':
nmap_simple()