What is Mamba? Mamba is a production-ready OSINT (Open Source Intelligence) library that makes security research and reconnaissance simple in Python. With just a few lines of code, you can investigate emails, domains, usernames, phone numbers, and IP addresses. GitHub: CzaxStudio/Mamba PyPI: pip install mamba-security Why I Built Mamba As a security researcher, I found myself writing the same code repeatedly for OSINT investigations. Each project needed: Email breach checking WHOIS lookups Username enumeration Phone validation IP geolocation I built Mamba to solve this. It's designed to be: Easy to use - One line of code for complex OSINT tasks Production ready - Rate limiting, caching, and error handling built-in Well tested - Comprehensive test suite Industry standard - Type hints, proper documentation Example from mamba import MambaClient , EmailReputation , DomainIntel with MambaClient () as client : # Check email email = EmailReputation ( client ) result = email .…