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
|
@ -126,7 +126,8 @@ int32_t start_xmpp(int32_t s, char *ip, int32_t port, unsigned char options, cha
|
|||
case AUTH_PLAIN: {
|
||||
memset(buffer2, 0, sizeof(buffer));
|
||||
result = sasl_plain(buffer2, login, pass);
|
||||
if (result == NULL) return 3;
|
||||
if (result == NULL)
|
||||
return 3;
|
||||
sprintf(buffer, "%s%.250s%s", RESPONSE_STR, buffer2, RESPONSE_END_STR);
|
||||
if (debug)
|
||||
hydra_report(stderr, "DEBUG C: %s\n", buffer);
|
||||
|
@ -138,7 +139,8 @@ int32_t start_xmpp(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;
|
||||
|
||||
rc = sasl_saslprep(login, SASL_ALLOW_UNASSIGNED, &preplogin);
|
||||
if (rc) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue