-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathosint_script.py
217 lines (183 loc) · 9.11 KB
/
osint_script.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
import requests
from bs4 import BeautifulSoup
import whois
import shodan
from twython import Twython
import json
import socket
# Set your API keys here
SHODAN_API_KEY = 'your_shodan_api_key'
TWITTER_API_KEY = 'your_twitter_api_key'
TWITTER_API_SECRET_KEY = 'your_twitter_api_secret_key'
TWITTER_ACCESS_TOKEN = 'your_twitter_access_token'
TWITTER_ACCESS_SECRET = 'your_twitter_access_secret'
HUNTER_API_KEY = 'your_hunter_api_key' # For email harvesting
SECURITYTRAILS_API_KEY = 'your_securitytrails_api_key'
CERTSPOTTER_API_KEY = 'your_certspotter_api_key'
ZOOMEYE_API_KEY = 'your_zoomeye_api_key'
CRIMINAL_IP_API_KEY = 'your_criminal_ip_api_key'
CENSYS_API_ID = 'your_censys_api_id'
CENSYS_API_SECRET = 'your_censys_api_secret'
ABUSEIPDB_API_KEY = 'your_abuseipdb_api_key'
# Initialize Shodan and Twitter API clients
shodan_api = shodan.Shodan(SHODAN_API_KEY)
twitter_api = Twython(TWITTER_API_KEY, TWITTER_API_SECRET_KEY, TWITTER_ACCESS_TOKEN, TWITTER_ACCESS_SECRET)
def get_domain_info(domain):
print(f"Gathering WHOIS information for {domain}...")
domain_info = whois.whois(domain)
return domain_info
def get_dns_records(domain):
print(f"Gathering DNS records for {domain}...")
dns_url = f"https://api.hackertarget.com/dnslookup/?q={domain}"
response = requests.get(dns_url)
return response.text
def get_social_media_profiles(domain):
social_media_profiles = {}
print(f"Gathering LinkedIn profiles for {domain}...")
linkedin_search_url = f"https://www.google.com/search?q=site:linkedin.com+%22{domain}%22"
response = requests.get(linkedin_search_url)
soup = BeautifulSoup(response.text, 'html.parser')
social_media_profiles['LinkedIn'] = [link['href'] for link in soup.find_all('a', href=True) if 'linkedin.com/in/' in link['href']]
print(f"Gathering Twitter profiles for {domain}...")
twitter_search = twitter_api.search_users(q=domain)
social_media_profiles['Twitter'] = [user['screen_name'] for user in twitter_search]
return social_media_profiles
def get_shodan_info(domain):
print(f"Gathering Shodan information for {domain}...")
dns_lookup = shodan_api.dns.resolve(domain)
ip_addresses = dns_lookup['matches'][0]['ips']
shodan_info = []
for ip in ip_addresses:
host = shodan_api.host(ip)
shodan_info.append(host)
return shodan_info
def get_reverse_ip_lookup(ip):
print(f"Performing reverse IP lookup for {ip}...")
reverse_ip_url = f"https://api.hackertarget.com/reverseiplookup/?q={ip}"
response = requests.get(reverse_ip_url)
return response.text
def get_breached_data(domain):
print(f"Checking for breached data related to {domain}...")
breach_url = f"https://haveibeenpwned.com/api/v2/breachedaccount/{domain}"
headers = {'User-Agent': 'Mozilla/5.0'}
response = requests.get(breach_url, headers=headers)
return response.json() if response.status_code == 200 else "No breaches found."
def get_emails(domain):
print(f"Harvesting email addresses for {domain}...")
hunter_url = f"https://api.hunter.io/v2/domain-search?domain={domain}&api_key={HUNTER_API_KEY}"
response = requests.get(hunter_url)
return response.json() if response.status_code == 200 else "No emails found."
def get_pastebin_mentions(domain):
print(f"Searching for Pastebin mentions for {domain}...")
pastebin_url = f"https://www.google.com/search?q=site:pastebin.com+%22{domain}%22"
response = requests.get(pastebin_url)
soup = BeautifulSoup(response.text, 'html.parser')
pastebin_mentions = [link['href'] for link in soup.find_all('a', href=True) if 'pastebin.com' in link['href']]
return pastebin_mentions
def get_securitytrails_info(domain):
print(f"Gathering SecurityTrails information for {domain}...")
url = f"https://api.securitytrails.com/v1/domain/{domain}"
headers = {'APIKEY': SECURITYTRAILS_API_KEY}
response = requests.get(url, headers=headers)
return response.json() if response.status_code == 200 else "No data found."
def get_publicwww_results(domain):
print(f"Searching PublicWWW for {domain}...")
publicwww_url = f"https://publicwww.com/websites/%22{domain}%22/"
response = requests.get(publicwww_url)
soup = BeautifulSoup(response.text, 'html.parser')
results = [link['href'] for link in soup.find_all('a', href=True) if domain in link['href']]
return results
def get_certspotter_info(domain):
print(f"Gathering CertSpotter information for {domain}...")
url = f"https://api.certspotter.com/v1/issuances?domain={domain}&include_subdomains=true&expand=dns_names"
headers = {'Authorization': f"Bearer {CERTSPOTTER_API_KEY}"}
response = requests.get(url, headers=headers)
return response.json() if response.status_code == 200 else "No certificates found."
def get_github_repositories(domain):
print(f"Searching GitHub for repositories mentioning {domain}...")
github_url = f"https://api.github.com/search/repositories?q={domain}"
response = requests.get(github_url)
return response.json() if response.status_code == 200 else "No repositories found."
def get_wayback_machine_snapshots(domain):
print(f"Gathering Wayback Machine snapshots for {domain}...")
url = f"http://archive.org/wayback/available?url={domain}"
response = requests.get(url)
return response.json() if response.status_code == 200 else "No snapshots found."
def get_zoomeye_info(domain):
print(f"Gathering ZoomEye information for {domain}...")
url = f"https://api.zoomeye.org/domain/search?query={domain}"
headers = {'API-KEY': ZOOMEYE_API_KEY}
response = requests.get(url, headers=headers)
return response.json() if response.status_code == 200 else "No data found."
def get_criminal_ip_info(domain):
print(f"Gathering Criminal-IP information for {domain}...")
url = f"https://api.criminalip.io/v1/domain/{domain}"
headers = {'x-api-key': CRIMINAL_IP_API_KEY}
response = requests.get(url, headers=headers)
return response.json() if response.status_code == 200 else "No data found."
def get_censys_info(domain):
print(f"Gathering Censys information for {domain}...")
url = f"https://censys.io/api/v1/search/ipv4"
data = {
'query': domain,
'fields': ['ip', 'protocols', 'location', 'updated_at']
}
response = requests.post(url, auth=(CENSYS_API_ID, CENSYS_API_SECRET), json=data)
return response.json() if response.status_code == 200 else "No data found."
def get_crtsh_info(domain):
print(f"Gathering crt.sh information for {domain}...")
url = f"https://crt.sh/?q={domain}&output=json"
response = requests.get(url)
return response.json() if response.status_code == 200 else "No certificates found."
def get_abuseipdb_info(ip):
print(f"Checking AbuseIPDB information for {ip}...")
url = f"https://api.abuseipdb.com/api/v2/check"
params = {'ipAddress': ip, 'maxAgeInDays': '90'}
headers = {'Key': ABUSEIPDB_API_KEY, 'Accept': 'application/json'}
response = requests.get(url, headers=headers, params=params)
return response.json() if response.status_code == 200 else "No data found."
def validate_ip_availability(ip):
print(f"Validating IP availability for {ip}...")
try:
socket.gethostbyname(ip)
return True
except socket.error:
return False
def perform_osint(domain):
osint_report = {}
osint_report['WHOIS'] = get_domain_info(domain)
osint_report['DNS'] = get_dns_records(domain)
osint_report['Social Media'] = get_social_media_profiles(domain)
osint_report['Shodan'] = get_shodan_info(domain)
# Perform reverse IP lookup on each IP address found
dns_lookup = shodan_api.dns.resolve(domain)
ip_addresses = dns_lookup['matches'][0]['ips']
osint_report['Reverse IP'] = {}
for ip in ip_addresses:
osint_report['Reverse IP'][ip] = get_reverse_ip_lookup(ip)
osint_report['Breached Data'] = get_breached_data(domain)
osint_report['Emails'] = get_emails(domain)
osint_report['Pastebin Mentions'] = get_pastebin_mentions(domain)
osint_report['SecurityTrails'] = get_securitytrails_info(domain)
osint_report['PublicWWW'] = get_publicwww_results(domain)
osint_report['CertSpotter'] = get_certspotter_info(domain)
osint_report['GitHub'] = get_github_repositories(domain)
osint_report['Wayback Machine'] = get_wayback_machine_snapshots(domain)
osint_report['ZoomEye'] = get_zoomeye_info(domain)
osint_report['Criminal-IP'] = get_criminal_ip_info(domain)
osint_report['Censys'] = get_censys_info(domain)
osint_report['crt.sh'] = get_crtsh_info(domain)
# Validate IP availability and check AbuseIPDB for each IP
osint_report['IP Validation'] = {}
osint_report['AbuseIPDB'] = {}
for ip in ip_addresses:
ip_valid = validate_ip_availability(ip)
osint_report['IP Validation'][ip] = ip_valid
if ip_valid:
osint_report['AbuseIPDB'][ip] = get_abuseipdb_info(ip)
with open(f'osint_report_{domain}.json', 'w') as f:
json.dump(osint_report, f, indent=4)
print(f"OSINT report saved to osint_report_{domain}.json")
if __name__ == '__main__':
target_domain = input("Enter the target domain: ")
perform_osint(target_domain)