1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-23 07:08:19 +00:00
This commit is contained in:
Jens Steube 2020-06-12 08:58:23 +02:00
commit 6a3f0ef9ea
21 changed files with 126 additions and 19 deletions

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

7
tools/code_generators/GEN_truncate_block_16x4_be.pl Normal file → Executable file
View File

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

7
tools/code_generators/GEN_truncate_block_16x4_le.pl Normal file → Executable file
View File

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

7
tools/code_generators/GEN_truncate_block_4x4_be.pl Normal file → Executable file
View File

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

7
tools/code_generators/GEN_truncate_block_4x4_le.pl Normal file → Executable file
View File

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

View File

@ -23,6 +23,7 @@ cpan install Authen::Passphrase::LANManager \
Crypt::ECB \ Crypt::ECB \
Crypt::Eksblowfish::Bcrypt \ Crypt::Eksblowfish::Bcrypt \
Crypt::GCrypt \ Crypt::GCrypt \
Crypt::Mode::CBC \
Crypt::Mode::ECB \ Crypt::Mode::ECB \
Crypt::MySQL \ Crypt::MySQL \
Crypt::OpenSSH::ChachaPoly \ Crypt::OpenSSH::ChachaPoly \
@ -50,11 +51,13 @@ cpan install Authen::Passphrase::LANManager \
Digest::SHA1 \ Digest::SHA1 \
Digest::SHA3 \ Digest::SHA3 \
Digest::SipHash \ Digest::SipHash \
Encode \
JSON \ JSON \
MIME::Base32 \ MIME::Base32 \
MIME::Base64 \ MIME::Base64 \
Net::DNS::RR::NSEC3 \ Net::DNS::RR::NSEC3 \
Net::DNS::SEC \ Net::DNS::SEC \
POSIX \
Text::Iconv \ Text::Iconv \
; ;
@ -66,6 +69,15 @@ pip2 uninstall -y pycryptodome
ERRORS=$((ERRORS+$?)) ERRORS=$((ERRORS+$?))
php --version > /dev/null 2> /dev/null
if [ "$?" -ne 0 ]
then
echo '[ ERROR ] php must be installed for some unit tests'
ERRORS=$((ERRORS+1))
fi
echo echo
if [ $ERRORS -eq 0 ]; then if [ $ERRORS -eq 0 ]; then
echo '[ OK ] All commands were successful' echo '[ OK ] All commands were successful'

0
tools/securenotes2hashcat.pl Normal file → Executable file
View File