https://github.com/megadose/ignorant
ignorant allows you to check if a phone number is used on different sites like snapchat, instagram.
https://github.com/megadose/ignorant
amazon instagram osint phone-number python snapchat trio
Last synced: 9 months ago
JSON representation
ignorant allows you to check if a phone number is used on different sites like snapchat, instagram.
- Host: GitHub
- URL: https://github.com/megadose/ignorant
- Owner: megadose
- License: gpl-3.0
- Created: 2021-03-24T14:40:34.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-07-27T06:11:44.000Z (over 1 year ago)
- Last Synced: 2025-04-11T10:15:58.376Z (10 months ago)
- Topics: amazon, instagram, osint, phone-number, python, snapchat, trio
- Language: Python
- Homepage:
- Size: 34.2 KB
- Stars: 1,162
- Watchers: 22
- Forks: 143
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Funding: FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Ignorant
👋 Hi there! For any professional inquiries or collaborations, please reach out to me at:
megadose@protonmail.com
📧 Preferably, use your professional email for correspondence. Let's keep it short and sweet, and all in English!
#### For BTC Donations : 1FHDM49QfZX6pJmhjLE5tB2K6CaTLMZpXZ
### ignorant does not alert the target phone number
ignorant allows you to check if a phone number is used on different sites like snapchat, instagram.

## 💡 Prerequisite
[Python 3](https://www.python.org/downloads/release/python-370/)
## 🛠️ Installation
### With PyPI
```pip3 install ignorant```
### With Github
```bash
git clone https://github.com/megadose/ignorant.git
cd ignorant/
python3 setup.py install
```
## 📚 Example
```bash
ignorant 33 644637111
```
### Rate limit, just change your IP
## 📈 Example of use
```python
import trio
import httpx
from ignorant.modules.shopping.amazon import amazon
async def main():
phone="644637111"
country_code="33"
client = httpx.AsyncClient()
out = []
await amazon(phone, country_code, client, out)
print(out)
await client.aclose()
trio.run(main)
```
## The output of the modules
The result of the modules is in this form : ```{"name": "instagram","domain":"instagram.com","method":"orther","frequent_rate_limit":"False","rateLimit": False,"exists": False}```
- rateLitmit : is to find out if you've been rate-limited
- exists : know an account is associated with the mail
## Thank you to :
- [yazeed44](https://github.com/yazeed44)
## 📝 License
[GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.fr.html)
## Modules :
| name | domain | method | frequent_rate_limit |
| ------------------- | -------------------------------------- | ----------------- | ------------------- |
| amazon | amazon.com | login | ✘ |
| instagram | instagram.com | register | ✘ |
| snapchat | snapchat.com | other | ✘ |