需要帮助进行小型暴力应用(C-Programming)

时间:2014-09-30 22:30:03

标签: c openmp

我正在尝试在C中开发一个小型强力应用程序。作为操作系统,我使用Ubuntu 14.04。我的CPU是英特尔酷睿i7-920@2.67GHz(现货)。

我的问题是,如何在运行时使用MD5_Init,MD5_Update和MD5_Final与openmp而不是特别谨慎?

例如我的main() - 函数如下所示:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <omp.h>
#include <openssl/md5.h>
#include <time.h>

const char              LiteralsLower[]   = "abcdefghijklmnopqrstuvwxyz";
const int               NLiteralsLower    = sizeof( LiteralsLower ) - 1;
char                    HexByteHash[16];
time_t                  StartTime, EndTime;

/* Prototypes */
static  void            MD5Hash( const char * );
static  void            BruteForce( const int * restrict, const int * restrict, const char *, const int *, int );

int main()
{
    const char HashAsString[] = "172522ec1028ab781d9dfd17eaca4427"; // 'david'
    const int  *BFOptionSize  = &NLiteralsLower;
    const char *BFOption      = LiteralsLower;
    int        PasswordLength = 6;
    int        StrLength      = strlen( HashAsString );

    for( int i = 0; i < StrLength / 2 ; i++ )
    {
        if( !sscanf( HashAsString + 2 * i, "%02x", ( unsigned int * ) &HexByteHash[i] ) )
        {
            fprintf( stderr, "FEHLER!!! -> '%s' ist kein Hash-Wert!\n", HashAsString );
            exit( EXIT_FAILURE );
        }
    }

    fprintf( stdout, "Hash: %s mit einer Länge von %li Zeichen.\n", HashAsString, strlen( HashAsString ) / 2 );

    /* Timer starten */
    time( &StartTime );

    #pragma omp parallel shared( PasswordLength, BFOptionSize )
    for( int PWLength = 0; PWLength < PasswordLength + 1; ++PWLength )
    {
        /* Array-Größe für FstEntry und LstEntry festlegen */
        int FstEntry[PWLength], LstEntry[PWLength];

        /* Array-Felder mit 0 initialisieren */
        for( int j = 0; j < PWLength; ++j )
            FstEntry[j] = LstEntry[j] = 0;

        #pragma omp for schedule( dynamic )
        for( int i = 0; i < *BFOptionSize; ++i )
        {
            FstEntry[0] = i;
            LstEntry[0] = i + 1;
            BruteForce( FstEntry, LstEntry, BFOption, BFOptionSize, PWLength );
        }
    }

    /* Timer stoppen */
    time( &EndTime );

    puts( "!!! Wort nicht gefunden !!!" );

    printf( "Elapsed time: %ld minutes %ld seconds\n\n", ( EndTime - StartTime ) / 60, ( EndTime - StartTime ) % 60 );

    return EXIT_FAILURE;
}

我不确定,但我认为直到这里一切都还好。

下一个代码是我的强力函数:

static void BruteForce( const int * restrict FirstEntry, const int * restrict LastEntry, const char *Letters, const int *NLetters, int PSSWDLength )
{
    char Password[PSSWDLength];
    int  Entry[PSSWDLength + 1];
    int  i, j;

    /* Null-Byte hinzufügen */
    memset( Entry, '\0', PSSWDLength );
    memset( Password, '\0', PSSWDLength );

    /* FirstEntry in Entry kopieren */
    for( i = 0; i < PSSWDLength; ++i )
        Entry[i] = FirstEntry[i];

    i = 0;

    while( i < PSSWDLength )
    {
        /* Generiere Passwort für Hash-Vergleich */
        for( i = 0; i < PSSWDLength; ++i )
            Password[i] = Letters[Entry[i]];

        /* generiertes Wort hashen */
        MD5Hash( Password );

        /* Entry inkrementieren */
        for( i = 0; i < PSSWDLength && ++Entry[PSSWDLength-i-1] == *NLetters; i++ )
            Entry[PSSWDLength-i-1] = 0;

        /* Return wenn Entry != LastEntry raus aus der Schleife */
        for( j = 0; j < PSSWDLength; ++j )
            if( Entry[j] != LastEntry[j] )
                break;

        /* wenn Entry == LastEntry Funktion verlassen */
        if( j == PSSWDLength )
            return;
    }
}

至少我的哈希函数:

static void MD5Hash( const char *PasswordStringPointer )
{
    unsigned char Digest[16];

    /* MD5-Hash erzeugen */
    MD5_CTX md5;
    MD5_Init( &md5 );
    MD5_Update( &md5, PasswordStringPointer, strlen( PasswordStringPointer ) );
    MD5_Final( Digest, &md5 );

    if( memcmp( HexByteHash, Digest, 16 ) == 0 )
    {
        printf( "!!! Wort gefunden: '%s' !!!\n", PasswordStringPointer );

        /* Timer stoppen */
        time( &EndTime );

        printf( "Elapsed time: %ld minutes %ld seconds\n\n", ( EndTime - StartTime ) / 60, ( EndTime - StartTime ) % 60 );

        /* Passwortsuche war erfolgreich */
        exit( EXIT_SUCCESS);
    }
}

问题在于,当我使用我的所有八个核心时,有时如果我启动应用程序,它就找不到要搜索的单词。 例如:172522ec1028ab781d9dfd17eaca4427&lt; - &#39; david&#39; &lt; - 要搜索的单词 例如,我说最大。要生成的单词的长度是6.因此,当我启动应用程序时,我应该有这个输出:

Hash: 172522ec1028ab781d9dfd17eaca4427 mit einer Länge von 16 Zeichen.
!!! Wort gefunden: 'david' !!!
Elapsed time: 0 minutes 1 seconds

但有时可能会发生这种输出:

Hash: 172522ec1028ab781d9dfd17eaca4427 mit einer Länge von 16 Zeichen.
!!! Wort nicht gefunden !!!
Elapsed time: 0 minutes 14 seconds

这意味着,出于什么原因,它不会生成正确的哈希值。所以应用程序一直运行到#zzzzzz&#39;生成了。我不明白为什么。

1 个答案:

答案 0 :(得分:4)

我在 openmp 中不专业,但是打印一些调试信息,我发现生成的密码最后没有'\ 0',它们包含如下字符:{{1要解决此问题,只需在第105行添加abrv▒♣▒
编译使用:Password[PSSWDLength] = '\0';
OS Windows 7使用Cygwin。
__ restrict 替换 restrict ,使用密码 azor 代替 david

gcc my_md5.c -o my_md5 -fopenmp -lcrypto