mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-04-26 02:29:07 -04:00
16 lines
206 B
Python
16 lines
206 B
Python
#!/usr/bin/env python
|
|
|
|
__author__ = "Mia Stein"
|
|
|
|
from scapy.all import *
|
|
|
|
print conf.route
|
|
|
|
conf.route.add(host='192.168.118.2', gw='192.168.1.114')
|
|
|
|
print conf.route
|
|
|
|
conf.route.resync()
|
|
|
|
print conf.route
|