I have an example script here
How i could run this script faster? Note that im not trying to use this script to brute force anything, i just think that brute force is the best way to show how can you make ur script faster
Code:
#!/usr/bin/perl
my $data = '0123456789abcdefghijklmnopqrstuvwxyz';
my @list = split //, $data;
for my $i (@list) {
for my $j (@list) {
for my $k (@list) {
for my $l (@list) {
print "$i $j $k $l\n";
}
}
}
}
Comment