mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-07-05 20:41:39 -07:00
clarify license
This commit is contained in:
parent
5b6fc88428
commit
90bbde1be8
9 changed files with 48 additions and 29 deletions
|
@ -113,7 +113,8 @@ int32_t start_nntp(int32_t s, char *ip, int32_t port, unsigned char options, cha
|
|||
|
||||
memset(buffer, 0, sizeof(buffer));
|
||||
result = sasl_plain(buffer, login, pass);
|
||||
if (result == NULL) return 3;
|
||||
if (result == NULL)
|
||||
return 3;
|
||||
|
||||
char tmp_buffer[sizeof(buffer)];
|
||||
sprintf(tmp_buffer, "%.250s\r\n", buffer);
|
||||
|
@ -149,7 +150,8 @@ int32_t start_nntp(int32_t s, char *ip, int32_t port, unsigned char options, cha
|
|||
|
||||
memset(buffer2, 0, sizeof(buffer2));
|
||||
result = sasl_cram_md5(buffer2, pass, buffer);
|
||||
if (result == NULL) return 3;
|
||||
if (result == NULL)
|
||||
return 3;
|
||||
|
||||
sprintf(buffer, "%s %.250s", preplogin, buffer2);
|
||||
hydra_tobase64((unsigned char *)buffer, strlen(buffer), sizeof(buffer));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue