A powerful scanner to scan your Filesystem, S3, MongoDB, MySQL, PostgreSQL, Redis, Google Cloud Storage and Firebase storage for PII and sensitive data.
Project description
🦅 Hawk-eye
Find PII & Secrets like never before across your entire infrastructure with same tool!
Description • Installation • Features • Configuration • Acknowledgements
🦅 HAWK Eye - Highly Advanced Watchful Keeper Eye
HAWK Eye is a powerful and versatile CLI (Command-Line Interface) tool designed to be your vigilant watchkeeper, guarding against potential data breaches and cyber threats across various platforms. Inspired by the precision and vision of majestic birds of prey, HAWK Eye swiftly scans multiple data sources, including S3, MySQL, PostgreSQL, MongoDB, Redis, Firebase, filesystem, and Google Cloud buckets (GCS), for Personally Identifiable Information (PII) and secrets.
Why "HAWK Eye"?
The name "HAWK Eye" captures the essence of a Highly Advanced Watchful Keeper. Like the keen vision of a hawk, this tool enables you to monitor and safeguard your data with precision and accuracy, ensuring data privacy and security.
HAWK Eye in Action
See how this works on Youtube - https://youtu.be/LuPXE7UJKOY
Installation via pip or pip3
pip3 install hawk-scanner
Example working command (Use all/fs/s3/gcs etc...)
hawk_scanner all --connection connection.yml --fingerprint fingerprint.yml --json output.json --debug
Note: Scanning Postgresql?, then you have to install some extra dependencies.
For scanning postgresql source, this tool requires psycopg2-binary dependency, we can't ship this dependency with main package because psycopg2-binary not works with most of the systems espically with Windows, so you have to install it manually.
pip3 install psycopg2-binary
Building or running from source
HAWK Eye is a Python-based CLI tool that can be installed using the following steps:
- Clone the HAWK Eye repository to your local machine.
git clone https://github.com/rohitcoder/hawk-eye.git
- Navigate to the HAWK Eye directory.
- Run the following command to install the required dependencies:
pip3 install -r requirements.txt
- Create a connection.yml file in the root directory and add your connection profiles (see the "How to Configure HAWK Eye Connections" section for details).
- Run the following command to install HAWK Eye:
python3 hawk_scanner/main.py
Key features
- Swiftly scans multiple data sources (S3, MySQL, PostgreSQL, Redis, Firebase, filesystem, and GCS) for PII data and malware exposure.
- Advanced algorithms and deep scanning capabilities provide thorough security auditing.
- Real-time alerts and notifications keep you informed of potential data vulnerabilities using Slack and other integrations, with more coming soon.
- New command support for S3, MySQL, PostgreSQL, Redis, Firebase, filesystem, and GCS expands the tool's capabilities.
--debug
flag enables printing of all debugging output for comprehensive troubleshooting.- Save output in JSON format using the --json flag and specify a file name like --json output.json.
- Proudly crafted with love and a sense of humor to make your security journey enjoyable and stress-free.
Usage
To unleash the power of HAWK Eye, simply follow the steps mentioned in the "Usage" section of the "README.md" file.
Options
Note: If you don't provide any command, it will run all commands (firebase, fs, gcs, mysql, postgresql, redis, s3) by default.
Option | Description |
---|---|
firebase | Scan Firebase profiles for PII and secrets data. |
fs | Scan filesystem profiles for PII and secrets data. |
gcs | Scan GCS (Google Cloud Storage) profiles for PII and secrets data. |
mysql | Scan MySQL profiles for PII and secrets data. |
mongodb | Scan MongoDB profiles for PII and secrets data. |
postgresql | Scan postgreSQL profiles for PII and secrets data. |
redis | Scan Redis profiles for PII and secrets data. |
s3 | Scan S3 profiles for PII and secrets data. |
--connection | Provide a connection YAML local file path like --connection connection.yml, this file will contain all creds and configs for different sources and other configurations. |
--fingerprint | Provide a fingerprint file path like --fingerprint fingerprint.yml, this file will override default fingerprints. |
--debug | Enable Debug mode. |
--json | Provide --json file name to save output in json file like --json output.json |
--shutup | Use --shutup flag if you want to hide Hawk ASCII art from your terminal 😁 |
How to Configure HAWK Eye Connections (Profiles in connection.yml)
HAWK Eye uses a YAML file to store connection profiles for various data sources. The connection.yml file is located in the config directory. You can add new profiles to this file to enable HAWK Eye to scan additional data sources. The following sections describe the process for adding new profiles to the connection.yml file.
Your connection fille will look like this
notify:
redacted: True
suppress_duplicates: True
slack:
webhook_url: https://hooks.slack.com/services/T0XXXXXXXXXXXXXX/B0XXXXXXXXXXXXXX/1CIyXXXXXXXXXXXXXX
sources:
redis:
redis1:
host: 127.0.0.1
s3:
s3_1:
access_key: YOUR_S3_ACCESS_KEY
secret_key: YOUR_S3_SECRET_KEY
bucket_name: YOUR_S3_BUCKET_NAME
cache: True
gcs:
gcs1:
credentials_file: /Users/rohitcoder/Downloads/credential_file.json
bucket_name: test-proj.appspot.com
cache: True
exclude_patterns:
- .pdf
- .docx
- private
firebase:
firebase1:
credentials_file: /Users/rohitcoder/Downloads/credential_file.json
bucket_name: test-proj.appspot.com
cache: True
exclude_patterns:
- .pdf
- .docx
mongodb:
mongodb_example:
uri: YOUR_MONGODB_URI
host: YOUR_MONGODB_HOST
port: YOUR_MONGODB_PORT
username: YOUR_MONGODB_USERNAME
password: YOUR_MONGODB_PASSWORD
database: YOUR_MONGODB_DATABASE_NAME
mysql:
mysql1:
host: localhost
port: 8889
user: YOUR_MYSQL_USERNAME
password: YOUR_MYSQL_PASSWORD
database: YOUR_MYSQL_DATABASE_NAME
postgresql:
postgresql1:
host: YOUR_POSTGRESQL_HOST
port: YOUR_POSTGRESQL_PORT
user: YOUR_POSTGRESQL_USERNAME
password: YOUR_POSTGRESQL_PASSWORD
database: YOUR_POSTGRESQL_DATABASE_NAME
fs:
fs1:
path: /Users/rohitcoder/Desktop/Projects/pii-search/data/google_cloud_storage/
exclude_patterns:
- .pdf
- .docx
- venv
- node_modules
You can add or remove profiles from the connection.yml file as needed. You can also configure only one or two data sources if you don't need to scan all of them.
Adding New Commands
HAWK Eye's extensibility empowers developers to contribute new security commands. Here's how:
- Fork the HAWK Eye repository to your GitHub account.
- Create a new Python file for your security command inside the commands directory, with a descriptive name.
- Define a function execute(args) within the new Python file, containing the logic for your command.
- Provide clear documentation and comments explaining the purpose and usage of the new command.
- Thoroughly test your command to ensure it works seamlessly and aligns with the existing features.
- Submit a pull request from your branch to the main HAWK Eye repository.
- The maintainers will review your contribution, provide feedback if needed, and merge your changes.
Contribution Guidelines
We welcome contributions from the open-source community to enhance HAWK Eye's capabilities in securing data sources. To contribute:
- Fork the HAWK Eye repository to your GitHub account.
- Create a new branch from the main branch for your changes.
- Adhere to the project's coding standards and style guidelines.
- Write clear and concise commit messages for your changes.
- Include appropriate test cases for new features or modifications.
- Update the "README.md" file to reflect any changes or new features.
- Submit a pull request from your branch to the main branch of the HAWK Eye repository.
- The maintainers will review your pull request and work with you to address any concerns.
- After approval, your contributions will be merged into the main codebase.
Join the HAWK Eye community and contribute to data source security worldwide. For any questions or assistance, feel free to open an issue on the repository.
If you find HAWK Eye useful and would like to support the project, please consider making a donation. All 100% of the donations will be distributed to charities focused on education welfare and animal help.
Conferences and Talks
💪 Contributors
We extend our heartfelt appreciation to all contributors who continuously improve this tool! Your efforts are essential in strengthening the security landscape. 🙏
Donation
How to Donate
Feel free to make a donation directly to the charities of your choice or send it to us, and we'll ensure it reaches the deserving causes. Just reach out to us on LinkedIn or Twitter to let us know about your contribution. Your generosity and support mean the world to us, and we can't wait to express our heartfelt gratitude.
Your donations will play a significant role in making a positive impact in the lives of those in need. Thank you for considering supporting our cause!
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
File details
Details for the file hawk_scanner-0.2.0.tar.gz
.
File metadata
- Download URL: hawk_scanner-0.2.0.tar.gz
- Upload date:
- Size: 24.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ccdde32ec05ba17e83e55b9d5a682f4544779fe27d3848e5f7b5bc99a12ada3e |
|
MD5 | 8f0e9a698040f4f088a85bd0cd0f0c18 |
|
BLAKE2b-256 | 0aa607eadcebd022d33285b8d8a9ad9a2ba09b2f9a1a217a232583cd1bfc4611 |
File details
Details for the file hawk_scanner-0.2.0-py2.py3-none-any.whl
.
File metadata
- Download URL: hawk_scanner-0.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 26.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 246703d46e9317b5e3e1fa4e88ad67eaaa7946d78b505c08451fc6c7a6299685 |
|
MD5 | 7244b2b002cd7ba0b8083c142f7e8e21 |
|
BLAKE2b-256 | d49a033b657c0e1bf7437323c523adf33fbd1c3cf66904836d55e5e29b9dcc32 |