Created
September 4, 2014 16:12
-
-
Save dbarbar/f45851d713d5a8397362 to your computer and use it in GitHub Desktop.
Definitely not a fake antivirus program for mac and linux to ensure PCI compliance.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Software must have the ability to auto-update itself and virus definitions as well as log scan results. | |
# | |
# Don't read below this line. | |
echo 'Auto updating.' | |
sleep 30 | |
echo 'Updaing virus definitions.' | |
sleep 30 | |
echo 'Done updates' | |
echo | |
echo 'Scanning for viruses...' | |
sleep 60 | |
echo 'No viruses found. Logging the results.' | |
cat 'No viruses' >> realantivirus.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment