forked from NALCORPallhat/firefly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirefly.py
103 lines (91 loc) · 3.39 KB
/
firefly.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
#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys
import requests
import json
import time
import urllib
import os
class color:
PURPLE = '\033[95m'
CYAN = '\033[96m'
DARKCYAN = '\033[36m'
BLUE = '\033[94m'
GREEN = '\033[92m'
YELLOW = '\033[93m'
RED = '\033[91m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
END = '\033[0m'
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
class config:
key = "" #go to https://numverify.com/
def banner():
os.system('clear')
print color.YELLOW + """
███████╗██╗██████╗ ███████╗███████╗██╗ ██╗ ██╗
██╔════╝██║██╔══██╗██╔════╝██╔════╝██║ ╚██╗ ██╔╝
█████╗ ██║██████╔╝█████╗ █████╗ ██║ ╚████╔╝
██╔══╝ ██║██╔══██╗██╔══╝ ██╔══╝ ██║ ╚██╔╝
██║ ██║██║ ██║███████╗██║ ███████╗██║
╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚══════╝╚═╝
Version - dev-1.0
""" + color.END
def main():
banner()
if len(sys.argv) == 2:
number = sys.argv[1]
api = "http://apilayer.net/api/validate?access_key=" + config.key + "&number=" + number + "&country_code=&format=1"
output = requests.get(api)
content = output.text
obj = json.loads(content)
country_code = obj['country_code']
country_name = obj['country_name']
location = obj['location']
carrier = obj['carrier']
line_type = obj['line_type']
print color.YELLOW + "[+] " + color.END + "Phone number information gathering"
print "--------------------------------------"
time.sleep(0.2)
if country_code == "":
print " - Getting Country [ " + color.RED + "FAILED " + color.END + "]"
else:
print " - Getting Country [ " + color.GREEN + "OK " + color.END + "]"
time.sleep(0.2)
if country_name == "":
print " - Getting Country Name [ " + color.RED + "FAILED " + color.END + "]"
else:
print " - Getting Country Name [ " + color.GREEN + "OK " + color.END + "]"
time.sleep(0.2)
if location == "":
print " - Getting Location [ " + color.RED + "FAILED " + color.END + "]"
else:
print " - Getting Location [ " + color.GREEN + "OK " + color.END + "]"
time.sleep(0.2)
if carrier == "":
print " - Getting Carrier [ " + color.RED + "FAILED " + color.END + "]"
else:
print " - Getting Carrier [ " + color.GREEN + "OK " + color.END + "]"
time.sleep(0.2)
if line_type == None:
print " - Getting Device [ " + color.RED + "FAILED " + color.END + "]"
else:
print " - Getting Device [ " + color.GREEN + "OK " + color.END + "]"
print ""
print color.YELLOW + "[+] " + color.END + "Information Output"
print "--------------------------------------"
print " - Phone number: " + str(number)
print " - Country: " + str(country_code)
print " - Country Name: " + str(country_name)
print " - Location: " + str(location)
print " - Carrier: " + str(carrier)
print " - Device: " + str(line_type)
else:
print "[?] Usage:"
print " ./%s <phone-number>" % (sys.argv[0])
print " ./%s +13213707446" % (sys.argv[0])
main()