Erro ao instalar o aircrack-ng durante o passo do make, algo sobre o HMAC?

0

Estou tentando instalar o aircrack-ng no rolling do kali e estou tentando usar a função make, mas recebo um erro dizendo algo sobre um arquivo chamado HMAC_CTX:

crypto.c: In function 'calc_mic':
crypto.c:291:11: error: storage size of 'ctx' isn't known
HMAC_CTX ctx;
   ^~~
crypto.c:317:2: warning: implicit declaration of function 
'HMAC_CTX_init' [-Wimplicit-function-declaration]
HMAC_CTX_init(&ctx);
^~~~~~~~~~~~~
crypto.c:327:2: warning: implicit declaration of function 
'HMAC_CTX_cleanup' [-Wimplicit-function-declaration]
HMAC_CTX_cleanup(&ctx);
^~~~~~~~~~~~~~~~
crypto.c:291:11: warning: unused variable 'ctx' [-Wunused-variable]
HMAC_CTX ctx;
   ^~~
crypto.c: In function 'calc_tkip_mic_key':
crypto.c:932:5: warning: this 'if' clause does not guard... [-
Wmisleading-indentation]
if((ptr-message) % 4 > 0)
^~
crypto.c:933:49: note: ...this statement, but the latter is 
misleadingly indented as if it is guarded by the 'if'
 memcpy(ptr, ZERO, 4-((ptr-message)%4)); ptr+=4-((ptr-
message)%4);
    
por Trashbag 15.08.2017 / 05:20

1 resposta

0

Este parece ser um problema de definição, você pode descartar os avisos aqui, o código-fonte está desatualizado

o snippet de código real daquele local parece

#if defined(USE_GCRYPT) || OPENSSL_VERSION_NUMBER < 0x10100000L
    #define HMAC_USE_NO_PTR
#endif

#ifdef HMAC_USE_NO_PTR
HMAC_CTX ctx;
#else
HMAC_CTX * ctx;
#endif

você precisa atualizar seu repositório com apt-get update e, em seguida, instalá-lo novamente ou, se estiver compilando, faça o download de um código-fonte mais recente

espero que ajude

    
por 15.08.2017 / 16:45