mirror of
https://github.com/nox-project/nox-framework.git
synced 2026-06-08 16:07:17 +00:00
9bf66d3e50
- 124 sources (+1 xposedornot, bgpview replaced with ripestat) - Fix gravatar MD5 transform, fofa base64 query encoding - Fix misp_search URL resolution, threatconnect HMAC placeholder - Fix spycloud, duckduckgo, mailboxlayer/numverify/ipstack/ipinfodb endpoints - Fix DeHashEngine v1→v2, DorkEngine engine label, backup_endpoints consumed - Fix Retry-After HTTP-date parsing, Hashmob API schema, FIPS hashlib crash - Fix DB.close() event loop leak, _random_headers CH-UA override - Add query_transform mechanism (md5_lower, fofa_domain) - Lower scores: spyonweb, pipl_search, twitter_v2, hudsonrock rate_limit - Clean all internal tracking comments, fix Italian docstring
38 lines
902 B
JSON
38 lines
902 B
JSON
{
|
|
"name": "spycloud_breach",
|
|
"category": "breaches",
|
|
"endpoint": "https://api.spycloud.io/enterprise-v2/breach/catalog/emails/{target}",
|
|
"method": "GET",
|
|
"requires_auth": true,
|
|
"selectors": {
|
|
"results": "$.results"
|
|
},
|
|
"rate_limit": 1.0,
|
|
"headers": {
|
|
"X-API-Key": "{SPYCLOUD_API_KEY}"
|
|
},
|
|
"api_key_slots": [
|
|
"{SPYCLOUD_API_KEY}"
|
|
],
|
|
"input_type": "email",
|
|
"output_type": [
|
|
"email",
|
|
"username",
|
|
"ip"
|
|
],
|
|
"normalization_map": {
|
|
"email": "email_address",
|
|
"username": "username",
|
|
"password": "plaintext_password",
|
|
"ip_addresses": "ip_address"
|
|
},
|
|
"tags": [
|
|
"passive",
|
|
"stealth"
|
|
],
|
|
"health_check_url": "https://api.spycloud.io",
|
|
"expected_status": 200,
|
|
"reliability_score": 5,
|
|
"backup_endpoints": [],
|
|
"confidence": 1.0
|
|
} |