> cat /dev/github | grep security-tools
discovered 30 Mar 2026

ignorant

Python โ˜… 1610 via github-topic
โ†’ View on GitHub

AI Summary: Ignorant is a tool designed to check the presence of a phone number across various platforms, such as Snapchat and Instagram, without alerting the target. Its primary use case is to facilitate user verification linked to phone numbers for security assessments, while notable features include support for asynchronous operations, rate limiting detection, and integration with multiple modules for different websites.


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

๐Ÿ› ๏ธ Installation

With PyPI

pip3 install ignorant

With Github

git clone https://github.com/megadose/ignorant.git
cd ignorant/
python3 setup.py install

๐Ÿ“š Example

ignorant 33 644637111

Rate limit, just change your IP

๐Ÿ“ˆ Example of use

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 :

๐Ÿ“ License

GNU General Public License v3.0

Modules :

namedomainmethodfrequent_rate_limit
amazonamazon.comloginโœ˜
instagraminstagram.comregisterโœ˜
snapchatsnapchat.comotherโœ˜