diff options
author | Christian Cleberg <hello@cleberg.net> | 2025-05-06 21:54:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-06 21:54:18 -0500 |
commit | f351e70fbdf72ec14f335aa74ad3e7f0bc6da5bc (patch) | |
tree | 4a43c4a8f23d001b3277e7668400b8f270946291 /README.md | |
parent | 95bf612c338dec8235e89ca6a1d9e5e8cad3f997 (diff) | |
download | audit-tools-f351e70fbdf72ec14f335aa74ad3e7f0bc6da5bc.tar.gz audit-tools-f351e70fbdf72ec14f335aa74ad3e7f0bc6da5bc.tar.bz2 audit-tools-f351e70fbdf72ec14f335aa74ad3e7f0bc6da5bc.zip |
add and update READMEs (#7)
* add and update READMEs
* Commit from GitHub Actions (Ruff)
---------
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 103 |
1 files changed, 0 insertions, 103 deletions
diff --git a/README.md b/README.md deleted file mode 100644 index 12eacc2..0000000 --- a/README.md +++ /dev/null @@ -1,103 +0,0 @@ -# Background - -I have been an auditor for years, starting with operational/financial -audits and quickly transitioning to technology audits early in my -career. - -While performing technology audits, attestations, etc., you will find -that it requires a lot of manual effort if you don\'t use the right -tools to automate as much as possible. - -This repository serves as my personal collection of audit tools that I -want to save and re-use later. - -## Scope - -While I created the scripts and tools within this repository -specifically for the applications I use, I am working to include -edge-cases and niche tools as I can. - -For now, refer to the tree below for application coverage. - -```shell -tree -I ".git*|venv" -``` - -```text -. -├── applications -│ ├── github -│ │ ├── github_admins.py -│ │ ├── github_audit_log.py -│ │ ├── github_branch_protections.py -│ │ ├── github_commits.py -│ │ └── README.org -│ └── gitlab -│ ├── approvals.py -│ ├── branch_protections.py -│ ├── passwords.py -│ ├── pipelines.py -│ ├── provisioning.py -│ ├── README.org -│ ├── repositories.py -│ └── users.py -├── CODEOWNERS -├── databases -│ ├── mongo -│ │ ├── admins.py -│ │ └── README.org -│ ├── mysql -│ │ ├── mysql_admins_alt.sql -│ │ ├── mysql_admins.sql -│ │ ├── passwords.sql -│ │ └── README.org -│ ├── oracle -│ │ ├── oracle_admins_alt.sql -│ │ └── oracle_admins.sql -│ ├── postgres -│ │ ├── admins.sql -│ │ ├── passwords.sql -│ │ └── README.org -│ └── sql -│ ├── admins.sql -│ └── passwords -│ ├── data.csv -│ ├── get_data.sql -│ └── test.py -├── LICENSE -├── os -│ └── linux -│ ├── passwords.sh -│ ├── README.org -│ └── ssh_root_login.sh -├── project_management -│ ├── alteryx -│ │ └── project_email_reminders.yxmd -│ ├── dash -│ │ └── app.py -│ └── powerbi -│ └── project_dashboard -│ ├── project_dashboard.pbix -│ └── project_data.xlsx -├── README.md -├── requirements.txt -└── sampling - ├── README.org - ├── sample.html - ├── sample-html.png - └── sample.py -``` - -# Development - -## Python - -For the Python scripts, use the following to activate a virtual -environment for consistent packing: - -```shell -python3 -m venv venv -source ./venv/bin/activate -pip install PACKAGE_NAME -python3 ./PYTHON_SCRIPT.py -``` |