5 Commits
main ... v1.0.0

Author SHA1 Message Date
07fb5c7d08 Revert "P: Revert Scanner things"
This reverts commit c9c1914420.
2025-03-16 18:38:40 +02:00
85922cc8d2 O: partner update 2025-03-16 18:33:53 +02:00
25a1860a0f revert "N: Revert M"
This reverts commit 175c35c3fb.
2025-03-16 18:29:34 +02:00
175c35c3fb M: good marketing 2025-03-16 18:25:11 +02:00
cc9ace76e7 L: apux fix 2025-03-16 18:21:51 +02:00
3 changed files with 3 additions and 13 deletions

View File

@@ -1,3 +1,4 @@
partner list
SalesInc
TheStartup
ClosedML

View File

@@ -1,3 +1,3 @@
#!/bin/sh
output=$(sh "$@" 2>&1)
echo "$output" | sed 's/bash/apux/g'
echo "$output" | sed 's/sh/apux/g'

View File

@@ -1,12 +1 @@
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 ========="
# TODO: write the script