Skip to content

Commit

Permalink
added documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
viralvaghela committed Sep 1, 2023
1 parent 0e23260 commit e4b54a7
Show file tree
Hide file tree
Showing 6 changed files with 86 additions and 4 deletions.
49 changes: 49 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,51 @@
# OSINT_MOBILE
Check given number is registered on sites like Swiggy, Flipkart, etc...

### Screenshots
![Screenshot](screenshots/menu.png)

### Installation
```bash
git clone https://github.com/viralvaghela/OSINT_MOBILE
cd OSINT_MOBILE
pip install -r requirements.txt
```

### Usage
```bash
python main.py NUMBER
```

### help
```bash
python main.py -h


python main.py -h

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
@ViralVaghela https://github.com/viralvaghela/OSINT_MOBILE
usage: main.py [-h] phone_number
Check various services with a phone number.
positional arguments:
phone_number Phone number to use
options:
-h, --help show this help message and exit
```
### Support
Hit the ⭐️ button if this repo helped you in any way.
40 changes: 36 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,44 @@
import argparse
from scripts.swiggy import check_swiggy
from scripts.flipkart import check_flipkart
from scripts.upstox import check_upstox

# Define your ASCII banner
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
@ViralVaghela https://github.com/viralvaghela/OSINT_MOBILE
"""

# Create a dictionary to map service names to functions
services = {
"swiggy": check_swiggy,
"flipkart": check_flipkart,
"upstox": check_upstox,
}

def main():
num="7485994073"
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()

# check_swiggy(num)
# check_flipkart(num)
check_upstox(num)
if __name__ == "__main__":
main()
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
requests
Binary file added screenshots/menu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified scripts/__pycache__/flipkart.cpython-311.pyc
Binary file not shown.
Binary file modified scripts/__pycache__/upstox.cpython-311.pyc
Binary file not shown.

0 comments on commit e4b54a7

Please sign in to comment.