A brief description of your project
Project description
PRIscope: PR Inspector for Security Concerns and Open-source Protection
PRIscope is a Python-based tool designed to analyze the history of code changes in open-source repositories primarily to address sowtware supply chain risks. It helps identify potential security risks or malicious code modifications by examining merged pull requests using an AI-powered code analysis.
Features
- Fetches and analyzes the most recent merged pull requests from a specified GitHub repository.
- Utilizes Ollama, a local AI model server, for intelligent code analysis.
- Provides a concise summary of potential security risks for each analyzed pull request.
- Generates an optional JSON report with detailed findings.
- Can be run as a standalone Python script or within a Docker container.
Prerequisites
- Python 3.9 or higher
- Ollama installed and running locally via
ollama serve - The
mistral-smallmodel loaded in Ollama (recommended for its code analysis capabilities) - Docker (optional, for containerized usage)
Installation
-
Clone the repository:
git clone https://github.com/yourusername/priscope.git cd priscope -
Install the required Python packages:
pip install -r requirements.txt -
Ensure Ollama is installed and running with the
mistral-smallor similar model:ollama run mistral-small
Configuration
Edit the config.json file to set your preferences:
Usage
Running as a Python Script
To analyze a GitHub repository:
python priscope.py https://github.com/owner/repo [-n NUMBER | -s SINCE] [-j]
- Replace
https://github.com/owner/repowith the target repository URL. -n NUMBERspecifies the number of recent PRs to analyze (default is 10).-s SINCEanalyzes PRs merged since this time (format: 2d, 3w, 1m for days, weeks, months).-jgenerates a JSON report (optional).
Running with Docker
PRIscope can also be run in a Docker container for enhanced security and isolation. This method ensures that the script runs in a controlled environment with read-only access to the filesystem.
-
Build the Docker image:
docker build -t priscope . -
Run the container:
docker run --rm -v $(pwd):/app/output:rw --read-only -u $(id -u):$(id -g) priscope https://github.com/owner/repo -n 5 -jThis command does the following:
- Mounts the current directory to
/app/outputin the container for report output. - Sets the container's filesystem as read-only for security.
- Runs the container as the current user to ensure proper file permissions.
- Mounts the current directory to
Output
PRIscope provides a color-coded console output for each analyzed PR:
- Green: No issues identified
- Red: Potential security risk detected
If the JSON report option is used, a detailed report will be generated in the current directory (or /app/output when using Docker).
Why Mistral-Small?
I recommend using the mistral-small model with Ollama for several reasons:
- It demonstrates strong capabilities in code analysis and understanding.
- It offers a good balance between performance and resource requirements.
However, you can experiment with other models by changing the model_name in the config.json file.
Contributing
Contributions to PRIscope are welcome! Please feel free to submit pull requests, report bugs, or suggest features.
Disclaimer
PRIscope is a tool designed to assist in identifying potential security risks, but it should not be considered a comprehensive security solution. Always perform thorough code reviews and use additional security measures in your development process.
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 priscope-0.0.1.tar.gz.
File metadata
- Download URL: priscope-0.0.1.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe7e3cce989f2a8b08f45869148e3dedb71adbe1502eb87dba996caf7c8c5b3c
|
|
| MD5 |
38c727432dab22c71b3251afdd9c07f1
|
|
| BLAKE2b-256 |
b4fcb06524f46cc533a7159380f31c5565bf8a977ee438772f7b1570a417c569
|
File details
Details for the file priscope-0.0.1-py3-none-any.whl.
File metadata
- Download URL: priscope-0.0.1-py3-none-any.whl
- Upload date:
- Size: 3.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa732cdaef3211aad9383d65257e2d9fd61f01d374b5da7bf25d0f7332f426bb
|
|
| MD5 |
d4c1ec06bffe6a3d943191f516ba912a
|
|
| BLAKE2b-256 |
591205afc22d7ae08cb93e6fb9542053b5c980b455e8fe14a883c4f5dbb95042
|