mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-08-20 21:33:51 -07:00
initial commit
This commit is contained in:
commit
6a94f708e8
122 changed files with 60195 additions and 0 deletions
197
hydra-ncp.c
Normal file
197
hydra-ncp.c
Normal file
|
@ -0,0 +1,197 @@
|
|||
|
||||
/*
|
||||
* Novell Network Core Protocol Support - by David Maciejak @ GMAIL dot com
|
||||
* Tested on Netware 6.5
|
||||
*
|
||||
* you need to install libncp and libncp-dev (tested with version 2.2.6-3)
|
||||
*
|
||||
* you can passed full context as OPT
|
||||
*
|
||||
* example: ./hydra -L login -P passw 172.16.246.129 ncp .O=cx
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#include "hydra-mod.h"
|
||||
|
||||
#ifndef LIBNCP
|
||||
void dummy_ncp() {
|
||||
printf("\n");
|
||||
}
|
||||
#else
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <ncp/nwcalls.h>
|
||||
|
||||
extern char *HYDRA_EXIT;
|
||||
extern int child_head_no;
|
||||
|
||||
typedef struct __NCP_DATA {
|
||||
struct ncp_conn_spec spec;
|
||||
struct ncp_conn *conn;
|
||||
char *context;
|
||||
} _NCP_DATA;
|
||||
|
||||
//uncomment line below to see more trace stack
|
||||
//#define NCP_DEBUG
|
||||
|
||||
int start_ncp(int s, char *ip, int port, unsigned char options, char *miscptr, FILE * fp) {
|
||||
|
||||
char *login;
|
||||
char *pass;
|
||||
char context[256];
|
||||
unsigned int ncp_lib_error_code;
|
||||
char *empty = "";
|
||||
int object_type = NCP_BINDERY_USER;
|
||||
|
||||
_NCP_DATA *session;
|
||||
|
||||
|
||||
session = malloc(sizeof(_NCP_DATA));
|
||||
memset(session, 0, sizeof(_NCP_DATA));
|
||||
login = empty;
|
||||
pass = empty;
|
||||
|
||||
|
||||
if (strlen(login = hydra_get_next_login()) == 0) {
|
||||
login = empty;
|
||||
} else {
|
||||
if (miscptr) {
|
||||
if (strlen(miscptr) + strlen(login) > sizeof(context)) {
|
||||
free(session);
|
||||
return 4;
|
||||
}
|
||||
memset(context, 0, sizeof(context));
|
||||
strncpy(context, login, strlen(login));
|
||||
strncpy(context + strlen(login), miscptr, sizeof(miscptr) + 1);
|
||||
login = context;
|
||||
}
|
||||
}
|
||||
|
||||
//login and password are case insensitive
|
||||
//str_upper(login);
|
||||
|
||||
if (strlen(pass = hydra_get_next_password()) == 0)
|
||||
pass = empty;
|
||||
|
||||
ncp_lib_error_code = ncp_find_conn_spec3(hydra_address2string(ip), login, "", 1, getuid(), 0, &session->spec);
|
||||
if (ncp_lib_error_code) {
|
||||
free(session);
|
||||
return 1;
|
||||
}
|
||||
|
||||
ncp_lib_error_code = NWCCOpenConnByName(NULL, session->spec.server, NWCC_NAME_FORMAT_BIND, NWCC_OPEN_NEW_CONN, NWCC_RESERVED, &session->conn);
|
||||
if (ncp_lib_error_code) {
|
||||
free(session);
|
||||
return 1;
|
||||
}
|
||||
|
||||
memset(session->spec.password, 0, sizeof(session->spec.password));
|
||||
memcpy(session->spec.password, pass, strlen(pass) + 1);
|
||||
//str_upper(session->spec.password);
|
||||
|
||||
ncp_lib_error_code = ncp_login_conn(session->conn, session->spec.user, object_type, session->spec.password);
|
||||
switch (ncp_lib_error_code & 0x0000FFFF) {
|
||||
case 0x0000: /* Success */
|
||||
#ifdef NCP_DEBUG
|
||||
printf("Connection success (%s / %s). Error code: %X\n", login, pass, ncp_lib_error_code);
|
||||
#endif
|
||||
ncp_close(session->conn);
|
||||
hydra_report_found_host(port, ip, "ncp", fp); //ok
|
||||
hydra_completed_pair_found();
|
||||
if (memcmp(hydra_get_next_pair(), &HYDRA_EXIT, sizeof(HYDRA_EXIT)) == 0)
|
||||
return 3; //exit
|
||||
free(session);
|
||||
return 2; //next
|
||||
break;
|
||||
case 0x89DE: /* PASSWORD INVALID */
|
||||
case 0x89F0: /* BIND WILDCARD INVALID */
|
||||
case 0x89FF: /* NO OBJ OR BAD PASSWORD */
|
||||
case 0xFD63: /* FAILED_AUTHENTICATION */
|
||||
case 0xFDA7: /* NO_SUCH_ENTRY */
|
||||
#ifdef NCP_DEBUG
|
||||
printf("Incorrect password (%s / %s). Error code: %X\n", login, pass, ncp_lib_error_code);
|
||||
#endif
|
||||
ncp_close(session->conn);
|
||||
hydra_completed_pair();
|
||||
if (memcmp(hydra_get_next_pair(), &HYDRA_EXIT, sizeof(HYDRA_EXIT)) == 0) {
|
||||
free(session);
|
||||
return 2; //next
|
||||
}
|
||||
break;
|
||||
default:
|
||||
#ifdef NCP_DEBUG
|
||||
printf("Failed to open connection. Error code: %X\n", ncp_lib_error_code);
|
||||
#endif
|
||||
if (session->conn != NULL)
|
||||
ncp_close(session->conn);
|
||||
break;
|
||||
}
|
||||
free(session);
|
||||
return 1; //reconnect
|
||||
}
|
||||
|
||||
void service_ncp(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port) {
|
||||
int run = 1, next_run = 1, sock = -1;
|
||||
int myport = PORT_NCP;
|
||||
|
||||
hydra_register_socket(sp);
|
||||
if (memcmp(hydra_get_next_pair(), &HYDRA_EXIT, sizeof(HYDRA_EXIT)) == 0)
|
||||
return;
|
||||
|
||||
while (1) {
|
||||
switch (run) {
|
||||
case 1: /* connect and service init function */
|
||||
if (sock >= 0)
|
||||
sock = hydra_disconnect(sock);
|
||||
if (port != 0)
|
||||
myport = port;
|
||||
sock = hydra_connect_tcp(ip, myport);
|
||||
port = myport;
|
||||
if (sock < 0) {
|
||||
fprintf(stderr, "[ERROR] Child with pid %d terminating, can not connect\n", (int) getpid());
|
||||
hydra_child_exit(1);
|
||||
}
|
||||
next_run = 2;
|
||||
break;
|
||||
case 2:
|
||||
/*
|
||||
* Here we start the password cracking process
|
||||
*/
|
||||
next_run = start_ncp(sock, ip, port, options, miscptr, fp);
|
||||
break;
|
||||
case 3:
|
||||
if (sock >= 0)
|
||||
sock = hydra_disconnect(sock);
|
||||
hydra_child_exit(0);
|
||||
return;
|
||||
case 4:
|
||||
if (child_head_no == 0)
|
||||
fprintf(stderr, "[ERROR] Optional parameter too long!\n");
|
||||
hydra_child_exit(0);
|
||||
|
||||
default:
|
||||
fprintf(stderr, "[ERROR] Caught unknown return code, exiting!\n");
|
||||
hydra_child_exit(0);
|
||||
}
|
||||
run = next_run;
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
int service_ncp_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port) {
|
||||
// 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.
|
||||
//
|
||||
// fill if needed.
|
||||
//
|
||||
// return codes:
|
||||
// 0 all OK
|
||||
// -1 error, hydra will exit, so print a good error message here
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue