CRSOSINT is an advanced Open Source Intelligence (OSINT) suite designed for email vector-based enumeration and fingerprinting. The tool orchestrates over 30 asset recognition modules to identify the presence of a digital identity across multiple online platforms and services. Developed with a modular approach, CRSOSINT enables cyber intelligence researchers and analysts to correlate disparate data to build a comprehensive digital profile of the target, similar to enterprise reconnaissance solutions. Para habla hispana aca el readme en español
The project adopts an open-source and collaborative development philosophy. The community of analysts and developers is invited to contribute new verification modules or improvements to the collection architecture. To propose new search vectors or report anomalies, please open an Issue or submit a Pull Request in this repository.
This project runs on Next.js, making it easy to deploy. You only need Node.js installed on your PC.
-
Clone the repository:
git clone https://github.com/your-username/crsosint.git cd crsosint -
Install dependencies: Run this in your terminal inside the project folder to download required libraries:
npm install
-
Start the tool locally: Launch the local server with this command:
npm run dev
-
Final step to test: Open your browser and navigate to:
http://localhost:3000
| Module | Registration Check | Account Info | Authorization Token | User Alert |
|---|---|---|---|---|
| Duolingo | ✅ | ✅ | No - Free API | No |
| Gravatar | ✅ | ✅ | No - Free API | No |
| Dropbox | ✅ | ✅ | Yes - Session Cookies | No |
| Chess | ✅ | ✅ | Yes - Session Cookies | No |
| Trello | ✅ | ✅ | Yes - Session Cookies | No |
| GitHub | ✅ | ✅ | Yes - Account API Key | No |
| Proton | ✅ | ✅ | No - Auth Detection | No |
| Flickr | ✅ | ✅ | Yes - Account API Key | No |
| Microsoft Team | ✅ | ✅ | Yes - Search Tokens | No |
| Change.org | ✅ | Partial | No - Free API | No |
| Have I Been Pwned | ✅ | Breaches | No - Free API | No |
| Hudsonrock | ❌ | Stealers | No - Free API | No |
| ✅ | ❌ | No | No | |
| Spotify | ✅ | ❌ | No | No |
| Microsoft | ✅ | ❌ | No | No |
| X (Twitter) | ✅ | ❌ | No | No |
| Adobe | ✅ | ❌ | No | No |
| Wattpad | ✅ | ❌ | No | No |
| Tumblr | ✅ | ❌ | No | No |
| Dropbox | ✅ | ❌ | No | No |
| SEOClersk | ✅ | ❌ | No | No |
| Wordpress | ✅ | ❌ | No | No |
| Github | ✅ | ❌ | No | No |
| Firefox | ✅ | ❌ | No | No |
| Zoho | ✅ | ❌ | No | No |
| Lastpass | ✅ | ❌ | No | No |
| Rumbler | ✅ | ❌ | No | No |
| Archive.org | ✅ | ❌ | No | No |
| Plurk | ✅ | ❌ | No | No |
| ✅ | ❌ | No | Yes | |
| Pornhub | ✅ | ❌ | No | No |
| Xvideos | ✅ | ❌ | No | No |
| Joomla | ✅ | ❌ | No | Yes |
Automated credential vulnerability analysis via integration with the XposedOrNot API, which acts as an authorized proxy for the Have I Been Pwned service. This module verifies the presence of an email address in known data breaches, providing exhaustive details on exposed sensitive information. The functionality is pre-configured and optimized for immediate use, eliminating the need for authorization token management or additional manual configuration.
const email = 'example@email.com';
const encodedEmail = encodeURIComponent(email);
const apiUrl = `https://api.xposedornot.com/v1/breach-analytics?email=${encodedEmail}`;
fetch(apiUrl, {
method: 'GET',
headers: {
'Accept': 'application/json',
},
})
.then(response => response.json())
.then(data => console.log(data));Integration with the Cavalier (Hudson Rock) API for advanced identification of malware compromise vectors. This module correlates an email address with devices infected by Infostealers, revealing critical indicators of compromise (IOCs) such as IP addresses, system paths, and exfiltrated credentials, providing deep insight into identity exposure in cybercrime environments.
const email = 'example@email.com';
const url = `https://cavalier.hudsonrock.com/api/json/v2/osint-tools/search-by-email?email=${encodeURIComponent(email)}`;
fetch(url, {
method: 'GET',
headers: {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36'
}
})
.then(response => response.json())
.then(data => console.log(data));The application core is built upon modern high-performance web technologies:
- Framework: Next.js 16 (React 19 RC)
- Language: TypeScript
- Styles: Tailwind CSS 4
- OSINT Engine: Puppeteer (Browser Automation) & Cheerio (HTML Parsing)
- Iconography: Lucide React


