-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathip_checker.py
220 lines (188 loc) · 6.87 KB
/
ip_checker.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
"""
IP Information Checker Module
This module provides a command-line interface (CLI) tool to retrieve IP information
from various APIs, including ipinfo.io, ipapi.co, AbuseIPDB, and VirusTotal.
"""
# pylint:disable=wildcard-import, unused-wildcard-import, logging-fstring-interpolation, unnecessary-lambda, reportMissingImports
from argparse import ArgumentParser
import ipaddress
import logging
import os
import sys
import time
import asyncio
import json
import aiohttp
from tenacity import *
import requests
# pylint:disable=line-too-long
# Configure logging
logging.basicConfig(filename='ip_checker.log', level=logging.ERROR, format='%(asctime)s - %(levelname)s - %(message)s')
API_TIMEOUT = 10 # seconds
def display_menu():
"""
Prints a menu with options to check IP information using different APIs.
"""
print("\n--- IP Information Checker ---")
print("1. Check IP using ipinfo.io")
print("2. Check IP using ipapi.co")
print("3. Check IP using AbuseIPDB")
print("4. Check IP using VirusTotal")
print("5. Exit")
def enforce_rate_limit():
"""
This function is used to prevent excessive API requests and avoid rate limiting.
"""
time.sleep(5) # Add 5 seconds delay between requests
@retry(stop=stop_after_attempt(3), wait=wait_exponential(multiplier=1, min=4, max=10))
async def check_ip_ipinfo(ip):
"""
Retrieves IP information from ipinfo.io.
Args:
ip (str): The IP address to check.
Returns:
dict: The IP information from ipinfo.io.
Raises:
Exception: If the API request fails.
"""
async with aiohttp.ClientSession() as session:
async with session.get(f"https://ipinfo.io/{ip}/json", timeout=API_TIMEOUT) as response:
if response.status == 200:
data = await response.json()
print("\n--- IP Information from ipinfo.io ---")
print(json.dumps(data, indent=4))
return data
else:
logging.error(f"Failed to retrieve IP information from ipinfo.io for IP {ip}. Status code: {response.status}")
print(f"Error: {response.status}")
@retry(stop=stop_after_attempt(3), wait=wait_exponential(multiplier=1, min=4, max=10))
async def check_ip_ipapi(ip):
"""
Retrieves IP information from ipapi.co.
Args:
ip (str): The IP address to check.
Returns:
dict: The IP information from ipapi.co.
Raises:
Exception: If the API request fails.
"""
async with aiohttp.ClientSession() as session:
async with session.get(f"https://ipapi.co/{ip}/json", timeout=API_TIMEOUT) as response:
if response.status == 200:
data = await response.json()
print("\n--- IP Information from ipapi.co ---")
print(json.dumps(data, indent=4))
return data
else:
logging.error(f"Failed to retrieve IP information from ipinfo.io for IP {ip}. Status code: {response.status}")
print(f"Error: {response.status}")
@retry(stop=stop_after_attempt(3), wait=wait_exponential(multiplier=1, min=4, max=10))
def check_ip_abuseipdb(ip, api_key):
"""
Retrieves IP information from AbuseIPDB.
Args:
ip (str): The IP address to check.
api_key (str): The AbuseIPDB API key.
Returns:
dict: The IP information from AbuseIPDB.
Raises:
Exception: If the API request fails.
"""
url = "https://api.abuseipdb.com/api/v2/check"
querystring = {"ipAddress": ip, "maxAgeInDays": "90"}
headers = {"Accept": "application/json", "Key": api_key}
try:
response = requests.get(url, headers=headers, params=querystring, timeout=API_TIMEOUT)
response.raise_for_status()
data = response.json()
print("\n--- IP Information from AbuseIPDB ---")
print(json.dumps(data, indent=4))
return data
except requests.exceptions.RequestException as e:
logging.error(f"Error during API call to AbuseIPDB: {e}")
print(f"Error retrieving data from AbuseIPDB: {e}")
@retry(stop=stop_after_attempt(3), wait=wait_exponential(multiplier=1, min=4, max=10))
def check_ip_virustotal(ip, api_key):
"""
Retrieves IP information from VirusTotal.
Args:
ip (str): The IP address to check.
api_key (str): The VirusTotal API key.
Returns:
dict: The IP information from VirusTotal.
Raises:
Exception: If the API request fails.
"""
url = "https://www.virustotal.com/vtapi/v2/ip-address/report"
params = {'apikey': api_key, 'ip': ip}
try:
response = requests.get(url, params=params, timeout=API_TIMEOUT)
response.raise_for_status()
data = response.json()
print("\n--- IP Information from VirusTotal ---")
print(json.dumps(data, indent=4))
return data
except requests.exceptions.RequestException as e:
logging.error(f"Error during API call to VirusTotal: {e}")
print(f"Error retrieving data from VirusTotal: {e}")
def check_ip_details(choice, ip):
"""
Function for mapping user input to different function
Args:
ip (str): The IP address to check.
choice (str): User selected choice from menu
Raises:
Exception: If the provided option is invalid.
"""
api_key_abuseipdb = os.getenv("ABUSEIPDB_API_KEY")
api_key_virustotal = os.getenv("VIRUSTOTAL_API_KEY")
menu_actions = {
"1": lambda: asyncio.run(check_ip_ipinfo(ip)),
"2": lambda: asyncio.run(check_ip_ipapi(ip)),
"3": lambda: check_ip_abuseipdb(ip, api_key_abuseipdb),
"4": lambda: check_ip_virustotal(ip, api_key_virustotal),
"5": lambda: sys.exit()
}
action = menu_actions.get(choice)
if action:
action()
else:
logging.error(f"Invalid option {choice} selected for IP {ip}")
print("Invalid option. Please choose again.")
def validate_ip(ip):
"""
Validate the IP address.
Args:
ip (str): The IP address to check.
Raises:
Exception: If the IP Address is invalid.
"""
try:
ipaddress.ip_address(ip)
return True
except ValueError:
logging.error(f"Invalid IP address format or range: {ip}")
print("Invalid IP address format or range. Please try again.")
return False
def get_cli_arguments():
"""
Extract the ip address from the CLI arguement
"""
parser = ArgumentParser(description="IP Information Checker")
parser.add_argument("ip", help="IP address to check")
return parser.parse_args()
def main():
"""
Main function
"""
ip_arg = get_cli_arguments()
ip_value = ip_arg.ip
if not validate_ip(ip_value):
return
while True:
display_menu()
option = input("Select a tool (1-5): ")
enforce_rate_limit()
check_ip_details(option, ip_value)
if __name__ == "__main__":
main()