PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Was ist das für ein Hash? Jemand ne Ahnung?



hyperstripe
01.12.2010, 08:36
Hab ihns aus einer htpasswd.users


SFXRNiiT0DvTo

c4pone
01.12.2010, 10:38
Ich tippe auf aes ,aber solange du nicht den encryption key hast wird dir der hash nichts bringen.

Dj Hackmaster A
01.12.2010, 10:44
AES ist eine verschlüsselung und keine Hashfunktion. Wird wohl ein Unix crypt() oder sowas sein.

hyperstripe
01.12.2010, 11:27
jemand der was genaueres weiß? :)

Dj Hackmaster A
01.12.2010, 11:28
Meine güte....
Dein hash (?) hat 13 bytes, md5 und sha-1 fallen also weg. logisches denken nao!

Apache Servers recognize 4 formats for representing a password hash in the text file usually named .htpasswd.

CRYPT
crypt(3) is the library function which is used to compute a password hash. Technically the name is a misnomer since it is actually a cryptographic hash function. The output of the function is not merely the hash: it is a text string which also encodes the salt and identifies the hash algorithm used. Apache uses the traditional Unix crypt function with a randomly-generated 32-bit salt (only 12 bits used) and the first 8 characters of the password. ALG_CRYPT
MD5
MD5 is one in a series of message digest algorithms designed by Professor Ronald Rivest of MIT. The 128-bit (16-byte) MD5 hashes (also termed message digests) are typically represented as a sequence of 32 hexadecimal digits. In .htpasswd files the hash is: $apr1$ + an Apache-specific algorithm using an iterated (1,000 times) MD5 digest of various combinations of a random 32-bit salt and the password. ALG_APMD5
SHA-1
The SHA hash functions are a set of cryptographic hash functions designed by the National Security Agency (NSA) and published by the NIST as a U.S. Federal Information Processing Standard. SHA-1 produces a 160-bit digest from a message with a maximum length of (264 − 1) bits. SHA-1 is the most widely employed of the SHA family. It forms part of several widely used security applications and protocols, including TLS and SSL, PGP, SSH, S/MIME, and IPsec. In .htpasswd files the hash is as follows: {SHA} + Base64-encoded SHA-1 digest of the password. ALG_APSHA
PLAIN TEXT
Unencrypted for Windows, BEOS, & Netware only. ALG_PLAIN