โก ULTRON-AI: Advanced AI-powered code analysis with Chain of Thought and ReAct framework
Project description
Ultron AI
Advanced AI-powered security code analysis with no strings attached.
Ultron is a sophisticated, command-line static analysis tool that leverages Gemini models to identify security vulnerabilities in your codebase. It combines traditional static analysis techniques with advanced AI agent capabilities to deliver deep, context-aware insights.
๐ Requirements
- Python 3.10 or higher
- Gemini API key
- Required Python packages (see
requirements.txt)
๐ Quick Start
For Users (Recommended)
-
Install from PyPI:
pip install ultron-ai
-
Configure API Key: Ultron requires a Google Gemini API key. Create a
.envfile in your project directory:# .env GEMINI_API_KEY="YOUR_GEMINI_API_KEY"Alternatively, export it as an environment variable (
export GEMINI_API_KEY="...").
For Developers (Contributing)
-
Clone the repository:
git clone https://github.com/your-repo/ultron-ai.git cd ultron-ai
-
Install in editable mode: This will install the package and its dependencies, allowing you to edit the code directly.
pip install -e .
-
Configure API Key: Follow the same instructions as for users by creating a
.envfile in the cloned project's root.
โจ Features
- Dual-Mode Analysis: Choose between a quick, comprehensive scan (
review) or a deep, mission-driven investigation (autonomous-review). - Autonomous Agent with Tools: The
autonomous-reviewmode unleashes a ReAct-based agent equipped with tools to read files, search the codebase, and execute shell commands to dynamically validate its findings. - Structured, Verifiable Output: The
reviewmode enforces a strict JSON output, validated by Pydantic models. This ensures reliable, machine-readable results and supports conversion to the industry-standard SARIF format for CI/CD integration.
How to Use
Ultron is operated via the command line.
Mode 1: Comprehensive Review (will be deprecated)
Use the review command for a fast, comprehensive analysis of a file or project. It's ideal for getting a full picture of the codebase's health.
Basic Review of a single file:
python -m ultron.main_cli review -p path/to/your/file.py -l python
Review an entire directory recursively:
python -m ultron.main_cli review -p ./my-project/ -l javascript -r
Advanced Review with Deep Dive and SARIF Output: This command will perform the standard review, then use a specialized agent to try and improve the PoCs for findings, and finally output the results to a SARIF file for CI/CD integration.
python -m ultron.main_cli review -p ./app/ --deep-dive -o sarif > results.sarif
Mode 2: Autonomous Review (Power house of ultron)
Use the autonomous-review command to give the agent a specific, high-level goal. It's best for investigating a complex feature or hunting for a specific type of vulnerability.
Example Mission: Find and prove an RCE vulnerability.
python -m ultron.main_cli autonomous-review \
-p ./vulnerable-app/ \
-m "2.5-flash-05-20" \
--mission "Your primary goal is to find a remote code execution (RCE) vulnerability. You must trace all user-controlled input to dangerous sinks like 'eval', 'exec', or 'subprocess.run'. You final report must include a working Proof of Concept."
The agent will log its entire thought process to a file in the logs/ directory.
How It Works: A Flow Diagram
review command:
CLI Input -> Gather Files -> Generate Context (AST/LLM) -> Build Master Prompt -> engine.reviewer -> LLM (Gemini) -> JSON Response -> Pydantic Validation -> (Optional) engine.agent (Deep Dive) -> Filter Results -> Display/SARIF Output
autonomous-review:
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Start: Receive Code & Task โ
โโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Understand Code & Strategy โ
โโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ More Analysis Needed? โ
โโโโโโโโโฌโโโโโโโโโโโโโฌโโโโโโโโ
โ โ
Yes No
โ โ
โผ โผ
โโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ
โ Use Tools โ โ Consolidate โ
โโโโโโฌโโโโโโโโ โโโโโโฌโโโโโโโโโโ
โผ โผ
โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโ
โ Vulnerability? โ โ Final Report โ
โโโโโโโโฌโโโโโโโฌโโโโ โโโโโโโโฌโโโโโโโโโ
โ โ โผ
| | โโโโโโ
| No โ Endโ
| | โโโโโโ
Yes โผ
| More Analysis
|
|
|
|
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Create & Verify PoC โ
โโโโโโโโโโฌโโโโโโโโโโโโโโโโ
โผ
โโโโโโโโโโโโโโโโโ
โ Confirmed? โ
โโโโโโโฌโโโโโฌโโโโโ
โ โ
| |
โ โโโโโโ> More Analysis
Yes
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Save & Continue or Go to โ
โ Final Report if Max Turns โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ TODOs
- Add support for Other Models
- Improve code navigation for large codebases
- Implement multi-step planning and reasoning
- Test against a large open source codebase
-
Add basic documentation and examples
๐ค Contributing
We welcome contributions from the security community! To contribute:
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
๐ License
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.
โ ๏ธ Disclaimer
Ultron is intended for educational and research purposes only. Always obtain proper authorization before testing any system for vulnerabilities. The authors are not responsible for any misuse of this tool.
Made with โค๏ธ by Vinay
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ultron_ai-0.1.4.tar.gz.
File metadata
- Download URL: ultron_ai-0.1.4.tar.gz
- Upload date:
- Size: 77.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83e26160707a0c8f57cc67db8fbf63d409c27504541560998066019cd8f84789
|
|
| MD5 |
1f08be86f246ba36d4d2499278761624
|
|
| BLAKE2b-256 |
74d3d3f65724a32efee5c21cc6d318f1f388c3e0750e0542a6fa1da519b8898c
|
File details
Details for the file ultron_ai-0.1.4-py3-none-any.whl.
File metadata
- Download URL: ultron_ai-0.1.4-py3-none-any.whl
- Upload date:
- Size: 85.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a54d76d7f73b0b17d4e2c06d9b70cf909a812da3ef796fa055997c178dabf204
|
|
| MD5 |
eb637648935d13c7f25689bbcb1c8057
|
|
| BLAKE2b-256 |
6d1024c5ec98fc18d656be728f88efc4b6e8862944115d183964b320816715d5
|