No project description provided
Project description
Security Scanner CLI Tool
A Command Line Interface (CLI) tool for scanning and analyzing mobile APK files and Docker images for security vulnerabilities using MobSF and Trivy.
Table of Contents
Installation
Install from Source Code
-
Clone the repository:
git clone https://github.com/briskdust/ingy-cli.git cd ingy-cli
-
Install the required Python packages:
poetry install
-
Ensure you have Docker installed and running
-
Run the CLI tool:
python -m ingysec.ingy
Install using Pip
-
Install the tool from PyPI:
pip install ingysec
-
Run the CLI tool:
ingysec
Usage
This CLI tool supports multiple commands grouped under mobile
, docker
, and code
.
Mobile Commands
Scan and analyze APK files for security vulnerabilities using MobSF.
Initialization
This command will initialize the MobSF docker container and run it on port 3000. It will also provide the API key for the MobSF server.
ingysec mobile mobsf_init
Configuration
Set the MOBSF_APIKEY
environment variable with your MobSF API key:
```sh
export MOBSF_APIKEY=your_mobsf_api_key
```
Scan APK Files
ingysec mobile mobsf --apikey YOUR_API_KEY --pdf output.pdf path/to/file1.apk path/to/file2.apk
files
: Paths to APK files.--apikey
: API key for MobSF authentication. Or set theMOBSF_APIKEY
environment variable.--pdf
: Optional. If specified, generates a PDF report.
Docker Commands
Run Trivy scan for a Docker image.
Installation
This command will install Trivy on your system. Only run it once, and it only works on Linux(Debian/Ubuntu) systems.
ingysec docker trivy_install
Scan Docker Images
ingy docker trivy --name IMAGE_NAME --html template.html
--name
: Name of the Docker image to scan.--html
: Optional. Path to an HTML template file for generating the report. If not present, the results will be displayed in the terminal as a table.
Code Commands
Run code inspection and scanning commands to detect security vulnerabilities in Python code.
Bandit
Run Bandit to check Python code for security vulnerabilities.
ingysec code bandit
Prompts the user to enter the path to the Python code. Recursively scans all Python files in the specified path using the Bandit configuration file bandit.yaml. Sets the severity level to high (-ll) and reports all discovered security issues.
Shell Escape
Scan code for potential shell escape vulnerabilities.
ingysec code shell-escape REPONAME --seckey PATH
The user needs to enter the path to the repository which can also be the URL of a remote repository and utilize the
--seckey
flag to specify the path to the SSH private key for cloning the repository. Supports shell expansion, such as ~
to the full home directory path and verifies that the provided path is a directory.
Extending the Tool
Adding New Commands
To implement a new command, create a new command group in ingysec/ingy.py
:
@main.group()
def example_command():
"""This is an example command group."""
pass
Then, add a new command to the group:
@example_command.command()
def new_command():
"""This is a new command."""
pass
Adding New Functions
For the purpose of maintainability and clean code, add new functions to the utils.py
file.
Extending shell_escape_finder.py
To extend the script to support more languages, you need to update two main components:
- File Extensions: Add the file extensions of the new languages to the
FILE_EXTENSIONS
list. - Patterns: Add regex patterns to identify potential shell escape vulnerabilities in the
PATTERNS
dictionary.
Project details
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
File details
Details for the file ingysec-0.2.0.tar.gz
.
File metadata
- Download URL: ingysec-0.2.0.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e6a9d878e97e4a99a756f364dafcad0605b39cd38bdf786954dcb417130c2348 |
|
MD5 | 77d7de947c993ad5ccf5e77eb8db2d85 |
|
BLAKE2b-256 | c28a064c5bbac65a44ce03d766926c16f46e3f2a69f9ab71d2838b698ba696ae |
File details
Details for the file ingysec-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: ingysec-0.2.0-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d21b67e537d2d548a3530fdf4d52b5dfcd77b6857fff94a8ea930212a3237fa5 |
|
MD5 | a69ba03756f1a6f03fc633d63c45ec07 |
|
BLAKE2b-256 | 41d6f80810e716aabc33707df8c02dc90de2ada59467eacf1896d18f396b8fad |