Merge pull request #638 from chris-pcguy/master

Fix logic bug
This commit is contained in:
van Hauser 2021-04-26 21:10:33 +02:00 committed by GitHub
commit d6a42ace44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1494,7 +1494,7 @@ int32_t service_smb_init(char *ip, int32_t sp, unsigned char options, char *misc
ctime = time(NULL); ctime = time(NULL);
do { do {
usleepn(300); usleepn(300);
} while ((ready = hydra_data_ready(sock)) <= 0 && ctime + 5 <= time(NULL)); } while ((ready = hydra_data_ready(sock)) <= 0 && ctime + 5 >= time(NULL));
if (ready <= 0) { if (ready <= 0) {
fprintf(stderr, "[ERROR] no reply from target smb://%s:%d/\n", hostname, port); fprintf(stderr, "[ERROR] no reply from target smb://%s:%d/\n", hostname, port);