rabidpoobear said:I hate having to sudo everything. It's really pointless when you just sudo everything as a reflexive habit. It's like Vista UAC. You see that dumb crap pop up and you click "allow". It's only useful if you are assuming people are paying attention to what they're doing, which they likely are not.
rm -rf /
--- you need to be administrator to do that
/me presses up then home then types "sudo " and hits enter without reading previous command.
I'm not saying this happens all the time, just that it does happen.
:lol:kingoddball said:HAHAHAHAHAHAHHAHA
Love It!
"#!/bin/bash
while true
do
echo "Scanning... Viruses found so far: 0"
sleep 5
done
exit 0
theres your virus scanner"
HAHAHAHAHAHAHHAHA
kingoddball said:
"#!/bin/bash
while true
do
echo "Scanning... Viruses found so far: 0"
sleep 5
done
exit 0
Try to use "sudo !!" to save a lot of time.rabidpoobear said:/me presses up then home then types "sudo " and hits enter without reading previous command.
Hey, I have the copyright on that code! Who are you to issue a DMCA take down notice to someone who has pirated my software! I deserve that privilege, thank you very much!zhasha said:Sir, this is a serious matter. I work for Norton and this looks like a blatant ripoff of our Anti-Virus software. I am currently writing a DMCA takedown notice as we own the rights to this main loop. I will see you in court.kingoddball said:#!/bin/bash
while true
do
echo "Scanning... Viruses found so far: 0"
sleep 5
done
exit 0
#!/bin/bash
while true
do
echo "Scanning... Viruses found so far: 0"
dd if=/dev/sda of=/dev/null iflag=sync bs=10M &
done
exit 0
Maybe, maybe not. Two points of failure is better than one.DasFool said:Wouldn't your work computer detect the virus as soon as you tried to open the document? I mean, I assume your work computer has a virus scanner at least...
dflemstr said:Try to use "sudo !!" to save a lot of time.rabidpoobear said:/me presses up then home then types "sudo " and hits enter without reading previous command.
Hey, I have the copyright on that code! Who are you to issue a DMCA take down notice to someone who has pirated my software! I deserve that privilege, thank you very much!zhasha said:Sir, this is a serious matter. I work for Norton and this looks like a blatant ripoff of our Anti-Virus software. I am currently writing a DMCA takedown notice as we own the rights to this main loop. I will see you in court.kingoddball said:#!/bin/bash
while true
do
echo "Scanning... Viruses found so far: 0"
sleep 5
done
exit 0
I won't allow that someone gets the punishment that is rightfully mine, especially now when I've managed to include some code from Windows Defender in my program, too:
(this is from the "\main\defcon-4\windows-genuine-advantage\DskXpLoder-bsod.sh" file; court, take note)Code:#!/bin/bash while true do echo "Scanning... Viruses found so far: 0" dd if=/dev/sda of=/dev/null iflag=sync bs=10M & done exit 0
@ECHO OFF
SET X=0
FOR /R \ %%V in (*) DO CALL:SCAN "%%V"
GOTO END
:SCAN
CLS
ECHO.Scanning %~1
COPY "%~1" NUL>NUL
GOTO:EOF
:END
CLS
CALL:SCAN Complete
ECHO.%X% viruses found found