From 6ba655de83dd562b0db6f4431d09c769ffae0345 Mon Sep 17 00:00:00 2001 From: Giap Do Date: Mon, 13 Jul 2026 09:48:46 +0700 Subject: [PATCH 1/7] 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 5d97abe09da622dd74618976802b3565ee532014 Mon Sep 17 00:00:00 2001 From: Giap Do Date: Mon, 13 Jul 2026 09:56:05 +0700 Subject: [PATCH 2/7] C: update customers and partners --- customers/all.csv | 1 + orgs/partners.txt | 2 ++ 2 files changed, 3 insertions(+) diff --git a/customers/all.csv b/customers/all.csv index 16dd7b21e..ef48c262d 100644 --- a/customers/all.csv +++ b/customers/all.csv @@ -1 +1,2 @@ first_name,last_name,company,title +karson,yummy,intercooler,ceo diff --git a/orgs/partners.txt b/orgs/partners.txt index 880748638..93abf2117 100644 --- a/orgs/partners.txt +++ b/orgs/partners.txt @@ -1 +1,3 @@ partner list +Boot.dev +TheStartup \ No newline at end of file From dbea118ed726ab5da5e7b31875117e0e201eac30 Mon Sep 17 00:00:00 2001 From: Giap Do Date: Mon, 13 Jul 2026 09:57:04 +0700 Subject: [PATCH 3/7] D: add jayson to customers --- customers/all.csv | 2 ++ 1 file changed, 2 insertions(+) diff --git a/customers/all.csv b/customers/all.csv index 16dd7b21e..6aee22c21 100644 --- a/customers/all.csv +++ b/customers/all.csv @@ -1 +1,3 @@ first_name,last_name,company,title +jayson,gross,htmz,contributor + From b0138d6e81c61b2294e3867078f06bdb60c9b8b5 Mon Sep 17 00:00:00 2001 From: Giap Do Date: Mon, 13 Jul 2026 10:30:15 +0700 Subject: [PATCH 4/7] G: changed on main --- customers/all.csv | 2 +- orgs/partners.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/customers/all.csv b/customers/all.csv index 734dbd659..91ac78526 100644 --- a/customers/all.csv +++ b/customers/all.csv @@ -1,2 +1,2 @@ first_name,last_name,company,title -jayson,gross,htmz,contributor +carson,gross,htmx,creator diff --git a/orgs/partners.txt b/orgs/partners.txt index 93abf2117..e25dfe69d 100644 --- a/orgs/partners.txt +++ b/orgs/partners.txt @@ -1,3 +1,3 @@ partner list -Boot.dev +SalesInc TheStartup \ No newline at end of file From 65314d0405125d7b556cb2a1bf44eb732068cb39 Mon Sep 17 00:00:00 2001 From: Giap Do Date: Mon, 13 Jul 2026 10:35:52 +0700 Subject: [PATCH 5/7] H: multiple conflicts --- customers/all.csv | 1 - 1 file changed, 1 deletion(-) diff --git a/customers/all.csv b/customers/all.csv index 91ac78526..16dd7b21e 100644 --- a/customers/all.csv +++ b/customers/all.csv @@ -1,2 +1 @@ first_name,last_name,company,title -carson,gross,htmx,creator From 4e30cc7b5fc5f65990ca895cbd3b5b1c6ab03761 Mon Sep 17 00:00:00 2001 From: Giap Do Date: Tue, 14 Jul 2026 09:35:13 +0700 Subject: [PATCH 6/7] 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..5b13c1afc --- /dev/null +++ b/customers/banned.csv @@ -0,0 +1,3 @@ +first_name,last_name,company,title +Ballan,Agrandian,Boots.lore,Protagonist +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 c9b7560ac1074b1abdcb997e3ecad4aff767011a Mon Sep 17 00:00:00 2001 From: Giap Do Date: Tue, 14 Jul 2026 10:22:09 +0700 Subject: [PATCH 7/7] K: credit card --- scripts/scan.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/scripts/scan.sh b/scripts/scan.sh index f4d9eb226..be676a78a 100755 --- a/scripts/scan.sh +++ b/scripts/scan.sh @@ -1 +1,10 @@ -# 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 ========="