-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
44 lines (34 loc) · 2.08 KB
/
main.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
import argparse
from tools.num_scripts import *
banner = """
888b d888 888 d8b 888 .d88888b. .d8888b. 8888888 888b 888 88888888888
8888b d8888 888 Y8P 888 d88P" "Y88b d88P Y88b 888 8888b 888 888
88888b.d88888 888 888 888 888 Y88b. 888 88888b 888 888
888Y88888P888 .d88b. 88888b. 888 888 .d88b. 888 888 "Y888b. 888 888Y88b 888 888
888 Y888P 888 d88""88b 888 "88b 888 888 d8P Y8b 888 888 "Y88b. 888 888 Y88b888 888
888 Y8P 888 888 888 888 888 888 888 88888888 888 888 "888 888 888 Y88888 888
888 " 888 Y88..88P 888 d88P 888 888 Y8b. Y88b. .d88P Y88b d88P 888 888 Y8888 888
888 888 "Y88P" 88888P" 888 888 "Y8888 "Y88888P" "Y8888P" 8888888 888 Y888 888
https://github.com/viralvaghela/OSINT_MOBILE @ViralVaghela
"""
# Create a dictionary to map service names to functions
services = {
"swiggy": check_swiggy,
"flipkart": check_flipkart,
"upstox": check_upstox,
"instagram": check_instagram,
"snapdeal": check_snapdeal
}
def main():
print(banner) # Print the ASCII banner
parser = argparse.ArgumentParser(description="Check various services with a phone number.")
parser.add_argument("phone_number", type=str, help="Phone number to use")
args = parser.parse_args()
phone_number = args.phone_number
# Loop through all available services and call their respective functions
for service_name, service_function in services.items():
print(f"Checking {service_name}...")
service_function(phone_number)
print()
if __name__ == "__main__":
main()