
Research
/Security News
Mini Shai-Hulud Campaign Hits Red Hat Cloud Services npm Packages
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.
Official JavaScript/TypeScript SDK for OsintCat - the fast, private, and simple OSINT platform for investigations
Official JavaScript/TypeScript client library for the OsintCat API. Powerful OSINT (Open Source Intelligence) tools for investigations, data collection, and security research.
npm install osintcat
yarn add osintcat
pnpm add osintcat
const OsintCat = require ('osintcat');
// Initialize the client
const client = new OsintCat({
apiKey: 'your-api-key-here'
});
// Search for data breaches
const breaches = await client.searchBreaches('email@example.com');
console.log(breaches.data);
// Discord investigation
const discordData = await client.getDiscordInfo('Discord_ID');
console.log(discordData.data);
// Get IP information
const ipInfo = await client.getIPInfo('8.8.8.8');
console.log(ipInfo.data);
Get your API key from the OsintCat Dashboard. The API supports different subscription tiers:
const result = await client.searchBreaches('email@example.com');
Search multiple breach databases for compromised accounts including:
const discord = await client.getDiscordInfo('userId');
const reddit = await client.searchReddit('username');
const github = await client.searchGitHub('email@example.com');
const roblox = await client.searchRoblox('username');
const ip = await client.getIPInfo('192.168.1.1');
const dns = await client.resolveDNS('example.com');
const domain = await client.searchDomain('example.com');
const phone = await client.getPhoneInfo('+1234567890');
const email = await client.getEmailInfo('test@example.com');
const npd = await client.searchNPD({
firstname: 'John',
lastname: 'Doe',
phone: '+1234567890'
});
Search National Public Data records using various criteria.
const conversion = await client.discordToRoblox('discord_user_id');
const client = new OsintCat({
apiKey: 'your-api-key',
timeout: 90000 // Optional: request timeout in milliseconds (default: 90s)
});
All methods return a standardized response:
{
"success": true,
"data": {},
"error": null,
"_meta": {
"plan": "premium",
"lookups_left": 45
}
}
try {
const result = await client.searchBreaches('email@example.com');
if (result.success) {
console.log('Data:', result.data);
console.log('Remaining requests:', result._meta?.lookups_left);
} else {
console.error('Error:', result.error);
}
} catch (error) {
console.error('Request failed:', error.message);
}
The package includes full TypeScript definitions:
import OsintCat, { OSINTResponse, BreachResult } from 'osintcat';
const client = new OsintCat({ apiKey: 'your-key' });
const breaches: OSINTResponse<BreachResult> = await client.searchBreaches('email@example.com');
API requests are subject to rate limits based on your subscription:
Monitor your usage via the _meta.lookups_left field in responses.
This tool is intended for:
Please ensure responsible usage and comply with:
Contributions are welcome! Please feel free to submit a Pull Request.
See CHANGELOG.md for version history and updates.
MIT License - see LICENSE file for details.
Disclaimer: This tool is for authorized security testing and research only. Users are responsible for ensuring compliance with applicable laws and regulations. The developers are not responsible for any misuse of this tool.
FAQs
Official JavaScript/TypeScript SDK for OsintCat - the fast, private, and simple OSINT platform for investigations
The npm package osintcat receives a total of 6 weekly downloads. As such, osintcat popularity was classified as not popular.
We found that osintcat demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.

Security News
The Rust project is moving toward formal rules on LLM use in contributions after months of internal debate over maintainer burden, code quality, and contributor experience.