audit-labs/audit-tools

A collection of scripts, queries, and other goodies you can use in an audit.

clone: git clone https://gitbay.org/audit-labs/audit-tools.git

697ff3ad93cf0cda95f9f00fe90a4b8c54597cca

verified · cmc

author: Christian Cleberg <hello@cleberg.net> · 2025-05-01T03:07:19Z

update README
 README.org => README.md | 47 +++++++++++++++++++++++------------------------
 1 file changed, 23 insertions(+), 24 deletions(-)

diff --git a/README.org b/README.md
similarity index 76%
rename from README.org
rename to README.md
index 5ee9606..df4973f 100644
--- a/README.org
+++ b/README.md
@@ -1,30 +1,29 @@
-#+title: README
+# Background
 
-* Background
+I have been an auditor for years, starting with operational/financial
+audits and quickly transitioning to technology audits early in my
+career.
 
-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.
 
-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.
 
-This repository serves as my personal collection of audit tools that I want to 
-save and re-use later.
+## Scope
 
-** 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.
+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.
 
-#+begin_src shell
+```shell
 tree -I ".git*|venv"
-#+end_src
+```
 
-#+begin_src text
+```text
 .
 ├── applications
 │   ├── github
@@ -76,18 +75,18 @@ tree -I ".git*|venv"
     ├── sample-html.png
     ├── sample.html
     └── sample.py
-#+end_src
+```
 
-* Development
+# Development
 
-** Python
+## Python
 
-For the Python scripts, use the following to activate a virtual environment for 
-consistent packing:
+For the Python scripts, use the following to activate a virtual
+environment for consistent packing:
 
-#+begin_src sh
+```shell
 python3 -m venv venv
 source ./venv/bin/activate
 pip install PACKAGE_NAME
 python3 ./PYTHON_SCRIPT.py
-#+end_src
+```