-
Notifications
You must be signed in to change notification settings - Fork 1
/
iptracer.py
executable file
·66 lines (53 loc) · 1.62 KB
/
iptracer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python3
# imports
import argparse
import requests, json
import sys
from sys import argv
import os
# parser
parser = argparse.ArgumentParser()
parser.add_argument("-v", help="target/host IP address", type=str, dest='target', required=True)
args = parser.parse_args()
# colors
red = '\033[31m'
yellow = '\033[93m'
lgreen = '\033[92m'
clear = '\033[0m'
bold = '\033[01m'
cyan = '\033[96m'
# banner
def banner():
print (red+"IP TRACER")
banner()
ip = args.target
api = "http://ip-api.com/json/"
try:
data = requests.get(api+ip).json()
sys.stdout.flush()
a = lgreen+bold+"[$]"
b = cyan+bold+"[$]"
print (a, "[Victim]:", data['query'])
print(red+"<--------------->"+red)
print (b, "[ISP]:", data['isp'])
print(red+"<--------------->"+red)
print (a, "[Organisation]:", data['org'])
print(red+"<--------------->"+red)
print (b, "[City]:", data['city'])
print(red+"<--------------->"+red)
print (a, "[Region]:", data['region'])
print(red+"<--------------->"+red)
print (b, "[Longitude]:", data['lon'])
print(red+"<--------------->"+red)
print (a, "[Latitude]:", data['lat'])
print(red+"<--------------->"+red)
print (b, "[Time zone]:", data['timezone'])
print(red+"<--------------->"+red)
print (a, "[Zip code]:", data['zip'])
print (" "+yellow)
except KeyboardInterrupt:
print ('Terminating, Bye'+lgreen)
sys.exit(0)
except requests.exceptions.ConnectionError as e:
print (red+"[~]"+" check your internet connection!"+clear)
sys.exit(1)