
New releaseSep 20, 2026
A simple application that extracts your IoCs from garbage input and checks their reputation using multiple CTI services.

A simple application that extracts your IoCs from garbage input and checks their reputation using multiple services.
🌐 demo.cyberbro.net
Inspired by Cybergordon and IntelOwl.
This project aims to provide a simple and efficient way to check the reputation of your observables using multiple services, without having to deploy a complex solution. Read the docs at https://docs.cyberbro.net/
[!TIP] To build custom reports, use Cyberbro with your favorite LLM (Claude, OpenAI gpt-5...) via MCP (Model Context Protocol)
Checkout Cyberbro MCP for more information.

[!TIP] If you are lazy, you need Docker.
Do agit clone; copy.env.sampleto.env;docker compose upthen go tolocalhost:5000. Yep, that's it!
git clone https://github.com/stanfrbd/cyberbro
cd cyberbro
[!NOTE] Don't have API keys? No problem, just copy
.env.sampleto.envand leave optional values empty. Be careful if a proxy is used.
You will be able to use all free engines!
.env file.[!WARNING]
.envcontains sensitive secrets and must never be committed. For production/team deployments, use SOPS, Vault, or an equivalent secret manager workflow.
ABUSEIPDB=token_here
ALIENVAULT=token_here
CRIMINALIP_API_KEY=token_here
CROWDSTRIKE_CLIENT_ID=client_id_here
CROWDSTRIKE_CLIENT_SECRET=client_secret_here
DFIR_IRIS_API_KEY=token_here
DFIR_IRIS_URL=https://dfir-iris.local
DFIR_IRIS_SEARCH_NOTES=false
GOOGLE_CSE_CX=cx_here
GOOGLE_CSE_KEY=key_here
GOOGLE_SAFE_BROWSING=token_here
HISTER_TOKEN=token_here
HISTER_BASE_URL=https://hister.example.com
IPAPI=token_here
IPINFO=token_here
MDE_CLIENT_ID=client_id_here
MDE_CLIENT_SECRET=client_secret_here
MDE_TENANT_ID=tenant_here
MISP_API_KEY=token_here
MISP_URL=https://misp.local
MISP_FEEDBACK_SERVER_URL=https://misp-feedback.local
MISP_FEEDBACK_TOKEN=token_here
OPENCTI_API_KEY=token_here
OPENCTI_URL=https://demo.opencti.io
PROXY_URL=
RANSOMWARE_LIVE_API_KEY=token_here
RL_ANALYZE_API_KEY=token_here
RL_ANALYZE_URL=https://spectra_analyse_url_here
ROSTI_API_KEY=token_here
SHODAN=token_here
SPUR_US=token_here
THREATFOX=token_here
VIRUSTOTAL=token_here
WEBSCOUT=token_here
[!IMPORTANT] Starting with version
v0.13.0, Cyberbro no longer supportssecrets.jsonand the/configpage. Cf. discussion 165.
If you already have a legacysecrets.json, convert it to.envwith:python3 scripts/secrets_json_to_env.py
See Advanced options for deployment in the docs.
[!WARNING] Make sure you install the
composeplugin asdocker composeand notdocker-compose. In Docker, the app binds to0.0.0.0inside the container even if your local.envsetsFLASK_HOST=127.0.0.1.
docker compose up # use -d to run in background and use --build to rebuild the image
Don't forget to edit
.envbefore building the image.
See Advanced options for deployment in the docs to get all Docker deployment options.
You might want to create a venv before installing the dependencies.
pip install -r requirements.txt
gunicorn (clean mode).gunicorn -c prod/gunicorn.conf.py app:app

[!CAUTION] If you intend to use this in a production environment, use well configured Reverse Proxy + WAF to prevent security issues.
/api/ and can be accessed via the GUI or command-line.There are currently 3 endpoints:
/api/analyze - Analyze a text and return analysis ID (JSON)./api/is_analysis_complete/<analysis_id> - Check if the analysis is complete (JSON)./api/results/<analysis_id> - Retrieve the results of a previous analysis (JSON).curl -X POST "http://localhost:5000/api/analyze" -H "Content-Type: application/json" -d '{"text": "cyberbro.net", "engines": ["reverse_dns", "rdap_whois"]}'
{
"analysis_id": "e88de647-b153-4904-91e5-8f5c79174854",
"link": "/results/e88de647-b153-4904-91e5-8f5c79174854"
}
curl "http://localhost:5000/api/is_analysis_complete/e88de647-b153-4904-91e5-8f5c79174854"
curl "http://localhost:5000/api/results/e88de647-b153-4904-91e5-8f5c79174854"
[
{
"observable": "cyberbro.net",
"rdap_whois": {
"abuse_contact": "[email protected]",
"creation_date": "2024-12-20",
"data_source": "rdap",
"emails": [
"[email protected]"
],
"expiration_date": "2026-12-20",
"link": "https://rdap.verisign.com/net/v1/domain/CYBERBRO.NET",
"name_servers": [
"anderson.ns.cloudflare.com",
"lisa.ns.cloudflare.com"
],
"organization": null,
"registrant": null,
"registrant_country": null,
"registrant_email": null,
"registrar": "Cloudflare, Inc.",
"update_date": "2025-11-20"
},
"reverse_dns": {
"reverse_dns": [
"172.67.197.226",
"104.21.42.7"
]
},
"reversed_success": true,
"type": "FQDN"
}
]
[!NOTE] The dedicated docs page gives all the names of usable engines.
[!NOTE] Any questions? Check the https://docs.cyberbro.net or raise an issue
For the advanced config (tuning ofsupervisord.confbefore deployment, selection of visible engines, change/api/prefix...), check the dedicated docs page.
A huge thank you to all the amazing contributors who made pull requests and helped improve this project:
Your contributions are greatly appreciated!
MIT License
Copyright (c) 2024-2026 stanfrbd
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
The logo used in this project is free for personal and commercial use and can be found here.