mirror of
https://0xacab.org/dCF/deCloudflare.git
synced 2025-01-16 04:07:23 -05:00
2.1 KiB
2.1 KiB
Karma API
- Operated by
Crimeflare #Karma
withNo log
policy.- There is a rate-limit and anti-attack system so please be nice.
- List data is almost identical to this git data. Lists are pulled from upstream weekly.
There are many wide-range APIs live on Karma.
In this page we explain 2 major read-only APIs.
Replace the (base url) to:
Type | URL |
---|---|
Clearnet (Recommend) | https://karma.crimeflare.eu.org:1984/api/ |
Clearnet (Discouraged) | https://karma.crimeflare.eu.org/api/ |
Tor | http://karma.im5wixghmfmt7gf7wb4xrgdm6byx2gj26zn47da6nwo7xvybgxnqryid.onion/api/ |
Cloudflare Domains Lookup
For looking up domain's existence as a MITM domain.
? | ? |
---|---|
Location | (base url)is_cf.php |
Request Method | POST |
Input | f or u is required. ignore_cfowned is optional.f FQDN (e.g. www.google.com)u URL (e.g. https://www.google.com/)ignore_cfowned Existence (If set, return FALSE when the domain is owned by CloudFlare Inc.) |
Output | JSON value as array. If 2nd value(j[1]) is true then the input is CloudFlare. [false,false] (Error or not Cloudflare) [true,false] (Not Cloudflare) [true,true] (Cloudflare) |
cURL Example | curl -X POST -F 'f=www.example.com' -k --http2 https://clearnet/api/is_cf.php curl -x socks5h://127.0.0.1:9050 -X POST -F 'f=www.example.com' http://onion/api/is_cf.php |
Anti-Tor Lookup
For looking up website's existence in the known Anti-tor list.
? | ? |
---|---|
Location | (base url)is_at.php |
Request Method | POST |
Input | f is required.f FQDN (e.g. www.google.com) |
Output | JSON value as array. If 2nd value(j[1]) is true then the input is AntiTor. [false,false] (Error or not AntiTor) [true,false] (Not AntiTor) [true,true] (AntiTor) |
cURL Example | curl -X POST -F 'f=www.example.com' -k --http2 https://clearnet/api/is_at.php curl -x socks5h://127.0.0.1:9050 -X POST -F 'f=www.example.com' http://onion/api/is_at.php |