mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-04-26 02:29:07 -04:00
17 lines
255 B
Python
17 lines
255 B
Python
#!/usr/bin/env python
|
|
|
|
__author__ = "Mia Stein"
|
|
|
|
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()
|