mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-07-05 04:26:10 -07:00
feat: pop3 capa fix
This commit is contained in:
parent
e762093915
commit
5ddee91edc
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ char *pop3_read_server_capacity(int32_t sock) {
|
|||
buf[strlen(buf) - 1] = 0;
|
||||
if (buf[strlen(buf) - 1] == '\r')
|
||||
buf[strlen(buf) - 1] = 0;
|
||||
if (*(ptr) == '.' || *(ptr) == '-')
|
||||
if (buf[strlen(buf) - 1] == '.' || *(ptr) == '.' || *(ptr) == '-')
|
||||
resp = 1;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue