From 0c4f83c0ea63142e049c63f163b093e64b1dc51c Mon Sep 17 00:00:00 2001 From: myomin Date: Wed, 24 Sep 2025 14:27:23 +0630 Subject: [PATCH 1/6] B: recovery --- slander.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 slander.md diff --git a/slander.md b/slander.md new file mode 100644 index 000000000..30fbe30f2 --- /dev/null +++ b/slander.md @@ -0,0 +1,4 @@ +# Breaking News + +MegaCorp CEO Lane enjoyed the live-action Last Airbender movie +MegaCorp CTO ThePrimeagen is a fan of The Notebook (and most other Nicholas Sparks content) From 0d3f8e52de8073168856f69fe0056bdd55fe6645 Mon Sep 17 00:00:00 2001 From: myomin Date: Wed, 24 Sep 2025 15:14:13 +0630 Subject: [PATCH 2/6] D: add jayson to customers --- customers/all.csv | 1 + 1 file changed, 1 insertion(+) diff --git a/customers/all.csv b/customers/all.csv index 16dd7b21e..0f78bd11b 100644 --- a/customers/all.csv +++ b/customers/all.csv @@ -1 +1,2 @@ first_name,last_name,company,title +C: update customers and partners From fb299283f0a5e0582fdfb9772bce92d933b9dc1c Mon Sep 17 00:00:00 2001 From: myomin Date: Wed, 24 Sep 2025 15:37:04 +0630 Subject: [PATCH 3/6] F: add the deleted record --- customers/all.csv | 1 + orgs/partners.txt | 3 +++ 2 files changed, 4 insertions(+) diff --git a/customers/all.csv b/customers/all.csv index 0f78bd11b..94e372088 100644 --- a/customers/all.csv +++ b/customers/all.csv @@ -1,2 +1,3 @@ first_name,last_name,company,title C: update customers and partners +jayson,gross,htmz,contributor diff --git a/orgs/partners.txt b/orgs/partners.txt index 880748638..1283b80ea 100644 --- a/orgs/partners.txt +++ b/orgs/partners.txt @@ -1 +1,4 @@ partner list +partner list + +TheStartup From 50c11329d2dda524b1812c878fd0b75ddf7abc5c Mon Sep 17 00:00:00 2001 From: myomin Date: Wed, 24 Sep 2025 15:42:45 +0630 Subject: [PATCH 4/6] G: add in the main --- customers/all.csv | 1 + orgs/partners.txt | 3 +++ 2 files changed, 4 insertions(+) diff --git a/customers/all.csv b/customers/all.csv index 0f78bd11b..94e372088 100644 --- a/customers/all.csv +++ b/customers/all.csv @@ -1,2 +1,3 @@ first_name,last_name,company,title C: update customers and partners +jayson,gross,htmz,contributor diff --git a/orgs/partners.txt b/orgs/partners.txt index 880748638..100d6816f 100644 --- a/orgs/partners.txt +++ b/orgs/partners.txt @@ -1 +1,4 @@ partner list +partner list +SalesInc +TheStartup From b1d344aa262f14155673efa51ad20edee057aa4b Mon Sep 17 00:00:00 2001 From: myomin Date: Wed, 24 Sep 2025 15:50:19 +0630 Subject: [PATCH 5/6] J: redacted --- customers/banned.csv | 3 +++ customers/favs.md | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 customers/banned.csv create mode 100644 customers/favs.md diff --git a/customers/banned.csv b/customers/banned.csv new file mode 100644 index 000000000..19d24cf91 --- /dev/null +++ b/customers/banned.csv @@ -0,0 +1,3 @@ +first_name,last_name,company,title +Kayha,tbd,TheMarchOfTime,sidekick +sam,ctrlman,closedai,ceo diff --git a/customers/favs.md b/customers/favs.md new file mode 100644 index 000000000..bfe19c681 --- /dev/null +++ b/customers/favs.md @@ -0,0 +1,3 @@ +# Favorite Customers +* Jesse Pinkman, Heisenberg's Assistant +* Walter White, Heisenberg, Chemist From 60cd9b72dea9c48e83e7903ce3a5e7e5c2e050f3 Mon Sep 17 00:00:00 2001 From: myomin Date: Thu, 25 Sep 2025 10:50:53 +0630 Subject: [PATCH 6/6] K: add scanner L: update the scanner M: add scan phone number --- scripts/scan.sh | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/scripts/scan.sh b/scripts/scan.sh index f4d9eb226..8ada46ba8 100755 --- a/scripts/scan.sh +++ b/scripts/scan.sh @@ -1 +1,12 @@ -# TODO: write the script +printf "\n====== SCANNING FOR CREDIT CARD NUMBERS ======\n" +grep -rE --color=always '(\b[0-9]{4}[- ]?){3}[0-9]{4}\b' . --exclude-dir={.git} --line-number +echo "========= CREDIT CARD SCAN COMPLETE ==========" + +printf "\n==== SCANNING FOR SOCIAL SECURITY NUMBERS ====\n" +grep -rE --color=always '\b[0-9]{3}-[0-9]{2}-[0-9]{4}\b' . --exclude-dir={.git} --line-number +echo "======= SOCIAL SECURITY SCAN COMPLETE ========" + +printf "\n========= SCANNING FOR PHONE NUMBERS =========\n" +grep -rE --color=always '\b[0-9]{3}-[0-9]{3}-[0-9]{4}\b' . --exclude-dir={.git} --line-number +grep -rE --color=always '\([0-9]{3}\) [0-9]{3}-[0-9]{4}' . --exclude-dir={.git} --line-number +echo "========= PHONE NUMBER SCAN COMPLETE ========="