first commit

This commit is contained in:
2026-03-26 12:36:41 -05:00
commit 7d87b9b488
6 changed files with 55 additions and 0 deletions

13
target_process.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
CHECK_FILE="ls -l /etc/passwd"
old=$($CHECK_FILE)
new=$($CHECK_FILE)
while [ "$old" == "$new" ]
do
echo "hello" | ./vulp
new=$($CHECK_FILE)
done
echo "STOP... The passwd file has been changed"