Brute force attack test on password for file
问题 I'm trying to create a brute force that will work on a specific files password. I'm not sure how to get this code to work. This is what I have so far. This code produces the correct possible combinations for the password but I am not sure how to implement this into a brute force attack. my @alpha = qw(a b c d e f g h i j k l m n o p q r s t u v w x y z); my $password = @alpha[1]; my @combo = (); for my $one(@alpha){ for my $two(@alpha){ for my $three(@alpha){ for my $four(@alpha){ push @combo