Unconfigured Ad Widget

Collapse

Anúncio

Collapse
No announcement yet.

Ferramenta de identificação de hash

Collapse
X
 
  • Filter
  • Tempo
  • Show
Clear All
new posts

  • Font Size
    #1

    Dica Ferramenta de identificação de hash

    Fala galera...

    Estou aqui disponibilizando uma ferramenta, que eu mesmo criei, que identifica o tipo de criptografia usada na hash.

    A ferramenta é bem básica, só funciona com 12 tipos de hash diferentes, mas já ajuda...

    Espero que vocês gostem!

    Código:
    #!/usr/bin/perl
    
    use strict;
    use warnings;
    
    
    print "\t\t\t\t  ******\n";
    print "\t\t\t\tWelcome to \n";
    print "\t\t\t    What the Crypto???\n";
    print "\t    Coded by: Sub7 (http://www.sub7hacking.4sql.net)\n";
    print "\tBy: ** White Collar Group ** (http://www.wcgroup.host56.com)\n";
    print "\t\t\t\t  ******\n\n";
    sleep 2;
    
    print "Hash => ";
    
    chomp (my $hash = <STDIN>);
    
    
    if(length($hash) == 32 && $hash !~ /[A-Z]/){
    	print "Seu hash é do tipo: MD5\n\n";
    }elsif(length($hash) == 28 && $hash =~ /\w/){
    	print "Seu hash é do tipo: MD5 (Base64)\n\n";
    }elsif(length($hash) == 26 && $hash =~ /\w/){
    	print "Seu hash é do tipo: MD5 (Unix)\n\n";
    }elsif(length($hash) == 29 && $hash =~ /\w/){
    	print "Seu hash é do tipo: MD5 (APR)\n\n";
    }elsif(length($hash) == 40 && $hash !~ /[A-Z]/){
    	print "Seu hash é do tipo: SHA-1 (HMAC)\n\n";
    }elsif(length($hash) == 11 && $hash =~ /\w/){
    	print "Seu hash é do tipo: Base 64";
    }elsif(length($hash) == 13 && $hash =~ /\w/){
    	print "Seu hash é do tipo: Des (Unix)";
    }elsif(length($hash) == 8 && $hash !~ /[A-Z0-9]/){
    	print "Seu hash é do tipo: rot_13";
    }elsif(length($hash) == 65 && $hash !~ /[A-Z]/){
    	print "Seu hash é do tipo: SHA256";
    }elsif(length($hash) == 97 && $hash !~ /[A-Z]/){
    	print "Seu hash é do tipo: SHA384";
    }elsif(length($hash) == 130 && $hash !~ /[A-Z]/){
    	print "Seu hash é do tipo: SHA512";
    }elsif(length($hash) == 16 && $hash !~ /[A-Z]/){
    	print "Seu hash é do tipo: MySQL";
    }
    \m/

  • Font Size
    #2
    Muito bom o script, testei e de boa 100%
    assim os manios param de ficar perguntando o tipo de criptografia.
    valeu a dica.
    Não Acha Estranha Essa Frase:
    Eu Sou Hacker e Uso Windows XP!

    Use Débian, Aprenda Slackware e Brinque Muito Com Back|Track


    Fã ->Nickguitar.dll


    Quer ajudar nossso fórum e não sabe como?
    Então click na imagem e ajude-nos com os links off

    Comment


    • Font Size
      #3
      Postado Originalmente por Lord Beni-Aretz Ver Post
      Muito bom o script, testei e de boa 100%
      assim os manios param de ficar perguntando o tipo de criptografia.
      valeu a dica.
      Muito obrigado Lord Beni-Aretz!

      E também espero que os maninhos parem um pouco de ficar perguntando sobre tipos de criptografia.. kk
      \m/

      Comment

      X
      Working...
      X