logo
logo
  • Home
  • Whoami
  • Services
    • Web Application Penetration Testing
    • Social Engineering Penetration Testing
    • Network Penetration Testing
  • Scripts
  • Blog
  • Shop
    • Clothing
    • Tech
    • Gifts
  • Contact
logo

Find Gateway IP

Run this Python script on your kali terminal to find your gateway IP using subprocess and regex modules.

				
					#!/usr/bin/env python

import subprocess
import re

#function to find gateway IP using subprocess and regex
def get_gateway():
    get_route = subprocess.check_output(["ip route"], shell=True)
    gateway_result = re.search(r"(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]\
    |2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)", str(get_route))
    return gateway_result.group(0)

gateway = get_gateway()
print(gateway)
				
			
setting up a virtual lab
All Blogs, Beginners, Network
Sceptre
On March 11, 2022
Setting Up A Virtual Lab
Read more
0
how and when to use monitor mode
All Blogs, Beginners, Hacking, Network, Python
Sceptre
On March 18, 2022
How And When To Use Monitor Mode
Read more
0
3-ways-to-change-your-mac-address
All Blogs, Beginners, Network, Python
Sceptre
On March 25, 2022
3 Ways To Change Your Mac Address
Read more
0
  • 1
  • 2
  • 3
  • …
  • 5

© 2022 Sceptre Security, All Rights Reserved.