cerno
This tool provides an interactive TUI for reviewing Nessus finding exports, running security tools (nmap, netexec, metasploit), and tracking progress.
File Explorer
Download Latest Version (.zip)- release.yml
- security.yml
- test.yml
- dependabot.yml
- ftp.db
- README.md
- smb.db
- ssh.db
- vnc.db
- cerno-demo-expanded.nessus
- cerno-demo-initial.nessus
- cerno-assistant.md
- __init__.py
- _version.py
- analysis.py
- ansi.py
- banner.py
- claude_assistant.py
- config.py
- constants.py
- cross_scan.py
- database.py
- enums.py
- fs.py
- logging_setup.py
- models.py
- nessus_import.py
- nxc_db.py
- onboarding.py
- ops.py
- parsing.py
- render.py
- session.py
- tool_context.py
- tool_definitions.py
- tool_registry.py
- tools.py
- tui.py
- workflow_mapper.py
- workflow_mappings.yaml
- ftp.db
- README.md
- smb.db
- ssh.db
- vnc.db
- cerno-demo-expanded.nessus
- cerno-demo-initial.nessus
- README.md
- default-config-values.png
- finding-browser.png
- host-comparison.png
- plugin-detail.png
- severity-selection.png
- superset-analysis.png
- tool-orchestration.png
- workflow-display.png
- ADDING_TOOLS_QUICKSTART.md
- CUSTOM_WORKFLOWS.md
- DATABASE.md
- ERROR_HANDLING.md
- Nessus-File-Format.pdf
- TOOL_SYSTEM_GUIDE.md
- extract_changelog.py
- ftp.db
- ldap.db
- mssql.db
- nfs.db
- rdp.db
- smb.db
- ssh.db
- vnc.db
- winrm.db
- wmi.db
- GOAD.nessus
- minimal.nessus
- conftest.py
- test_claude_assistant.py
- test_cross_scan.py
- test_database.py
- test_demo_command.py
- test_fs.py
- test_models.py
- test_multi_scan_review.py
- test_nessus_import.py
- test_nxc_db.py
- test_ops.py
- test_parsing.py
- test_render.py
- test_session.py
- test_version.py
- test_workflow_mapper.py
- .bandit
- .gitignore
- cerno.py
- CHANGELOG.md
- CLAUDE.md
- LICENSE
- pyproject.toml
- pyrightconfig.json
- README.md
- requirements.txt
- schema.sql
- TESTING.md
# Installation Guide
git clone https://github.com/ridgebackinfosec/cerno
Downloads the entire project code from GitHub to your computer.
cd cerno
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommendedpipx install git+https://github.com/ridgebackinfosec/cerno.git
Installs the CLI tool into an isolated environment via pipx.
pip install git+https://github.com/ridgebackinfosec/cerno.git
Installs the package published on PyPI directly β no need to clone the source.
npm install -g @anthropic-ai/claude-code # or follow https://claude.ai/code
Installs the package published on the npm registry globally β no need to clone the source.
Pulled directly from this repo's README.
3. Python
Easypip install git+https://github.com/ridgebackinfosec/cerno.git
Installs the package published on PyPI directly β no need to clone the source.
pip install -e .
Installs the Python libraries listed in requirements.txt (or similar).
Pulled directly from this repo's README.
