mirror of
https://github.com/K9T33NwthTookThis/RPC-info-dumper.git
synced 2025-07-18 22:46:10 +00:00
Compare commits
3 Commits
7316d178dc
...
b38929a9f7
Author | SHA1 | Date | |
---|---|---|---|
![]() |
b38929a9f7 | ||
![]() |
76cbd24160 | ||
4cead9f433 |
7
info-dumper.sh
Normal file → Executable file
7
info-dumper.sh
Normal file → Executable file
@ -28,8 +28,13 @@ lspci >> /tmp/rpc-dump.txt
|
||||
printf "\n uptime:" >> /tmp/rpc-dump.txt
|
||||
uptime >> /tmp/rpc-dump.txt
|
||||
|
||||
# Remove all user names on system
|
||||
# Remove non system user names on system
|
||||
getent passwd | while IFS=: read -r name password uid gid gecos home shell; do
|
||||
# System accounts shouldn't be redacted, as well as some user accounts
|
||||
if (( $uid < 1000 )); then
|
||||
continue
|
||||
fi
|
||||
|
||||
cat /tmp/rpc-dump.txt | awk -v user="$name" '{gsub(user, "[REDACTED]"); print}' | tee /tmp/rpc-dump.txt &>/dev/null
|
||||
done
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user