Unconfigured Ad Widget

Collapse

Anúncio

Collapse
No announcement yet.

Descobrir o tipo de Hash

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

  • Font Size
    #1

    Pascal Descobrir o tipo de Hash

    Aqui tem um programa muito simples para descobrir o tipo de encriptação da sua hash.
    Falta--me so uma coisinha, que e quando a hash nao corresponde a nenhum daquele valor, ser preciso repetir. Nao consigo fazer isso.
    Aqui fica, criticas precisam-se

    Código:
    Program Hashdiscovery ;
    var
    num :string;
    tam :integer;
     Begin
      Writeln ('Desenvolvido por NunoDias');
      Writeln ('Este programa diz-te o tipo de 16 tipos diferentes de hash!');
      writeln;
      write ('Escreva a tua hash:');
      readln (num);
      writeln;
      tam:=length(num);
      case tam of
      8 : writeln ('A sua hash é ADLER32 ou CRC-32 ou GHash-32');
      4 : writeln ('A sua hash é CRC-16 ou CRC-16-CCITT ou ainda FCS-16 ');
      13 : writeln ('A sua hash é DES (unix) ');
      40 : writeln ('A sua hash é sha-1 ou MySql v5.x ');
      28 : writeln ('A sua hash é SHA-1 (base64)  ');
      46 : writeln ('A sua hash é SHA-1 (Django) ');
      64 : writeln ('A sua hash é SHA-256 ');
      56 : writeln ('A sua hash é SHA-224');
      96 : writeln ('A sua hash é SHA-384');
      128 : writeln ('A sua hash é SHA-512 ou Whirlpool');
      48 : writeln ('A sua hash é Haval-192');
      224 : writeln ('A sua hash é Haval-224');
      34 : writeln ('A sua hash é MD5(Unix) ou MD5(phpBB3) Oou MD5(Wordpress)');
      32 : writeln ('A sua hash é MD5 ou MD4 ou MD2');
      16 : writeln ('A sua hash é MySQL Under 5');
      57 : writeln ('A sua hash é Snefru ou Gost') 
      else writeln ('Essa hash nao existe'); 
     End;
     end.

  • Font Size
    #2
    Va la pessoal, dem aqui uma ajudinha.
    Eu quero que quando o nr de caracteres nao for igual aquele, em vez de fechar, pedir para repetir e fazer um jump.

    Cumps.

    Comment


    • Font Size
      #3
      Fiz um desses em perl , look :> [ame]http://www.youtube.com/watch?v=ZIUDObYcP8E[/ame]
      .

      - PHP & VB C0d3r.

      Nickguitar.dll@hotmail.com

      http://www.youtube.com/user/superskate56 <~ Hacking tuts =)

      Quando aprendemos a ouvir, também aprendemos a falar..
      Quando aprendemos a ler, também aprendemos a escrever.
      Então, quando aprendemos a usar um computador, por que não aprender a programa-lo ?


      I'm C0ding for $$$

      #~: Just $this :~#

      Comment


      • Font Size
        #4
        Ta muito mal programado.

        Comment


        • Font Size
          #5
          Todos os tópicos sobre programação que voce ve voce comenta isso.. Incrível..

          (=
          .

          - PHP & VB C0d3r.

          Nickguitar.dll@hotmail.com

          http://www.youtube.com/user/superskate56 <~ Hacking tuts =)

          Quando aprendemos a ouvir, também aprendemos a falar..
          Quando aprendemos a ler, também aprendemos a escrever.
          Então, quando aprendemos a usar um computador, por que não aprender a programa-lo ?


          I'm C0ding for $$$

          #~: Just $this :~#

          Comment


          • Font Size
            #6
            Fica evidente um padrao aqui, certo?

            Comment


            • Font Size
              #7
              Arrogância e egocentrismo também.
              Yes, I am a criminal. My crime is that of curiosity. My crime is
              that of judging people by what they say and think, not what they look like.
              My crime is that of outsmarting you, something that you will never forgive me
              for.

              I am a hacker, and this is my manifesto. You may stop this individual,
              but you can't stop us all... after all, we're all alike.

              Comment


              • Font Size
                #8
                Funcionando

                Fiz pelo console do Delphi, pode dar uma variada em pascal puro, ou pascal for Windows...

                segue lá:

                Código:
                Program Hashdiscovery ;
                {$APPTYPE CONSOLE}
                
                label inicio;
                var
                num :string; tam :integer;
                 Begin
                  Writeln;
                  Writeln ('    Desenvolvido por NunoDias');
                  Writeln ('    Este programa diz-te o tipo de 16 tipos diferentes de hash!');
                  writeln;
                
                  inicio: //no final o code manda voltar para ca.
                
                  write ('    Escreva a tua hash: ');
                  readln (num);
                  writeln;
                  tam:=length(num);
                  case tam of
                  8 : writeln ('A sua hash é ADLER32 ou CRC-32 ou GHash-32');
                  4 : writeln ('A sua hash é CRC-16 ou CRC-16-CCITT ou ainda FCS-16 ');
                  13 : writeln ('A sua hash é DES (unix) ');
                  40 : writeln ('A sua hash é sha-1 ou MySql v5.x ');
                  28 : writeln ('A sua hash é SHA-1 (base64)  ');
                  46 : writeln ('A sua hash é SHA-1 (Django) ');
                  64 : writeln ('A sua hash é SHA-256 ');
                  56 : writeln ('A sua hash é SHA-224');
                  96 : writeln ('A sua hash é SHA-384');
                  128 : writeln ('A sua hash é SHA-512 ou Whirlpool');
                  48 : writeln ('A sua hash é Haval-192');
                  224 : writeln ('A sua hash é Haval-224');
                  34 : writeln ('A sua hash é MD5(Unix) ou MD5(phpBB3) Oou MD5(Wordpress)');
                  32 : writeln ('A sua hash é MD5 ou MD4 ou MD2');
                  16 : writeln ('A sua hash é MySQL Under 5');
                  57 : writeln ('A sua hash é Snefru ou Gost')
                  else writeln ('Essa hash nao existe');
                
                end;
                writeln ('Pressione ENTER para continuar...');
                readln;
                writeln;
                goto inicio;
                end.

                Comment

                X
                Working...
                X