mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-08-20 21:33:51 -07:00
code indent
This commit is contained in:
parent
531ee7734b
commit
720bdb3f96
83 changed files with 6377 additions and 6240 deletions
|
@ -1,5 +1,5 @@
|
|||
//This plugin was written by <david dot maciejak at gmail D O T com>
|
||||
//Tested on memcached 1.5.6-0ubuntu1
|
||||
// This plugin was written by <david dot maciejak at gmail D O T com>
|
||||
// Tested on memcached 1.5.6-0ubuntu1
|
||||
|
||||
#ifdef LIBMCACHED
|
||||
#include <libmemcached/memcached.h>
|
||||
|
@ -8,9 +8,7 @@
|
|||
#include "hydra-mod.h"
|
||||
|
||||
#ifndef LIBMCACHED
|
||||
void dummy_mcached() {
|
||||
printf("\n");
|
||||
}
|
||||
void dummy_mcached() { printf("\n"); }
|
||||
#else
|
||||
|
||||
extern int32_t hydra_data_ready_timed(int32_t socket, long sec, long usec);
|
||||
|
@ -33,9 +31,7 @@ int mcached_send_com_version(int32_t sock) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
int32_t start_mcached(int32_t s, char *ip, int32_t port, unsigned char options, char *miscptr, FILE * fp) {
|
||||
int32_t start_mcached(int32_t s, char *ip, int32_t port, unsigned char options, char *miscptr, FILE *fp) {
|
||||
char *empty = "";
|
||||
char *login, *pass;
|
||||
|
||||
|
@ -93,7 +89,7 @@ int32_t start_mcached(int32_t s, char *ip, int32_t port, unsigned char options,
|
|||
memcached_free(cache);
|
||||
hydra_completed_pair_skip();
|
||||
if (memcmp(hydra_get_next_pair(), &HYDRA_EXIT, sizeof(HYDRA_EXIT)) == 0) {
|
||||
return 3;
|
||||
return 3;
|
||||
}
|
||||
return 2;
|
||||
}
|
||||
|
@ -109,7 +105,7 @@ int32_t start_mcached(int32_t s, char *ip, int32_t port, unsigned char options,
|
|||
return 2;
|
||||
}
|
||||
|
||||
void service_mcached(char *ip, int32_t sp, unsigned char options, char *miscptr, FILE * fp, int32_t port, char *hostname) {
|
||||
void service_mcached(char *ip, int32_t sp, unsigned char options, char *miscptr, FILE *fp, int32_t port, char *hostname) {
|
||||
int32_t run = 1, next_run = 1, sock = -1;
|
||||
|
||||
hydra_register_socket(sp);
|
||||
|
@ -127,14 +123,15 @@ void service_mcached(char *ip, int32_t sp, unsigned char options, char *miscptr,
|
|||
return;
|
||||
default:
|
||||
if (!verbose)
|
||||
hydra_report(stderr, "[ERROR] Caught unknown return code, try verbose option for more details\n");
|
||||
hydra_report(stderr, "[ERROR] Caught unknown return code, try verbose "
|
||||
"option for more details\n");
|
||||
hydra_child_exit(2);
|
||||
}
|
||||
run = next_run;
|
||||
}
|
||||
}
|
||||
|
||||
int32_t service_mcached_init(char *ip, int32_t sp, unsigned char options, char *miscptr, FILE * fp, int32_t port, char *hostname) {
|
||||
int32_t service_mcached_init(char *ip, int32_t sp, unsigned char options, char *miscptr, FILE *fp, int32_t port, char *hostname) {
|
||||
// called before the childrens are forked off, so this is the function
|
||||
// which should be filled if initial connections and service setup has to be
|
||||
// performed once only.
|
||||
|
@ -150,7 +147,7 @@ int32_t service_mcached_init(char *ip, int32_t sp, unsigned char options, char *
|
|||
if (sock < 0) {
|
||||
if (verbose || debug)
|
||||
hydra_report(stderr, "[ERROR] Can not connect\n");
|
||||
return -1;
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (mcached_send_com_version(sock)) {
|
||||
|
@ -160,16 +157,16 @@ int32_t service_mcached_init(char *ip, int32_t sp, unsigned char options, char *
|
|||
}
|
||||
|
||||
if (hydra_data_ready_timed(sock, 0, 1000) > 0) {
|
||||
buf = hydra_receive_line(sock);
|
||||
if (strstr(buf, "VERSION ")) {
|
||||
hydra_report_found_host(port, ip, "memcached", fp);
|
||||
mcached_send_com_quit(sock);
|
||||
if (sock >= 0)
|
||||
sock = hydra_disconnect(sock);
|
||||
hydra_report(stderr, "[ERROR] Memcached server does not require any authentication\n");
|
||||
}
|
||||
free(buf);
|
||||
return -1;
|
||||
buf = hydra_receive_line(sock);
|
||||
if (strstr(buf, "VERSION ")) {
|
||||
hydra_report_found_host(port, ip, "memcached", fp);
|
||||
mcached_send_com_quit(sock);
|
||||
if (sock >= 0)
|
||||
sock = hydra_disconnect(sock);
|
||||
hydra_report(stderr, "[ERROR] Memcached server does not require any authentication\n");
|
||||
}
|
||||
free(buf);
|
||||
return -1;
|
||||
}
|
||||
if (sock >= 0)
|
||||
sock = hydra_disconnect(sock);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue