An open API service indexing awesome lists of open source software.

https://github.com/code2319/security-tools

security tools for docker, npm and ip checks
https://github.com/code2319/security-tools

docker npm python3 security

Last synced: 24 days ago
JSON representation

security tools for docker, npm and ip checks

Awesome Lists containing this project

README

          

![Python](https://img.shields.io/static/v1?label=python&message=3.x&color=brightgreen)
![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)

# 1. [Docker container verification](./docker_verify.py)
This script will help you check the docker image (by calculating the manifest hash and layers) against the hash listed on the site (docker hub, quay, etc.).
Example usage:
```bash
python docker_verify.py bitnami/postgresql:15.2.0 bitnami.tar
```

# 2. [Npm file verification](./npm_verify.py)
This script will help you check the npm tarball file(s) (by calculating the tarball file hash) against the hash listed on the registry.npmjs.org.
Example usage:
```bash
python npm_verify.py -f chalk-5.2.0.tgz
```

# 3. [IP checker](./ip_checker.py)
A script for determining whether an IP address belongs to a country (based on abusepdb api)
```bash
python ip_checker.py -f ips.txt
```