mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-08-22 06:13:55 -07:00
Add header file for each service
This commit is contained in:
parent
93ca2d1bf3
commit
7d2d9cfa57
50 changed files with 407 additions and 0 deletions
8
services/hydra-adam6500.h
Normal file
8
services/hydra-adam6500.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_ADAM6500_H_
|
||||||
|
#define _HYDRA_SERVICE_ADAM6500_H_
|
||||||
|
|
||||||
|
void service_adam6500(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_adam6500_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_adam6500(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_ADAM6500_H_ */
|
8
services/hydra-afp.h
Normal file
8
services/hydra-afp.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_AFP_H_
|
||||||
|
#define _HYDRA_SERVICE_AFP_H_
|
||||||
|
|
||||||
|
void service_afp(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_afp_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_afp(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_AFP_H_ */
|
8
services/hydra-asterisk.h
Normal file
8
services/hydra-asterisk.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_ASTERISK_H_
|
||||||
|
#define _HYDRA_SERVICE_ASTERISK_H_
|
||||||
|
|
||||||
|
void service_asterisk(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_asterisk_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_asterisk(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_ASTERISK_H_ */
|
8
services/hydra-cisco-enable.h
Normal file
8
services/hydra-cisco-enable.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_CISCO_ENABLE_H_
|
||||||
|
#define _HYDRA_SERVICE_CISCO_ENABLE_H_
|
||||||
|
|
||||||
|
void service_cisco_enable(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_cisco_enable_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_cisco_enable(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_CISCO_ENABLE_H_ */
|
8
services/hydra-cisco.h
Normal file
8
services/hydra-cisco.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_CISCO_H_
|
||||||
|
#define _HYDRA_SERVICE_CISCO_H_
|
||||||
|
|
||||||
|
void service_cisco(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_cisco_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_cisco(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_CISCO_H_ */
|
8
services/hydra-cvs.h
Normal file
8
services/hydra-cvs.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_CVS_H_
|
||||||
|
#define _HYDRA_SERVICE_CVS_H_
|
||||||
|
|
||||||
|
void service_cvs(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_cvs_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_cvs(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_CVS_H_ */
|
8
services/hydra-firebird.h
Normal file
8
services/hydra-firebird.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_FIREBIRD_H_
|
||||||
|
#define _HYDRA_SERVICE_FIREBIRD_H_
|
||||||
|
|
||||||
|
void service_firebird(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_firebird_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_firebird(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_FIREBIRD_H_ */
|
9
services/hydra-ftp.h
Normal file
9
services/hydra-ftp.h
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_FTP_H_
|
||||||
|
#define _HYDRA_SERVICE_FTP_H_
|
||||||
|
|
||||||
|
void service_ftp(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void service_ftps(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_ftp_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_ftp(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_FTP_H_ */
|
9
services/hydra-http-form.h
Normal file
9
services/hydra-http-form.h
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_HTTP_FORM_H_
|
||||||
|
#define _HYDRA_SERVICE_HTTP_FORM_H_
|
||||||
|
|
||||||
|
void service_http_post_form(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void service_http_get_form(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_http_form_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_http_form(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_HTTP_FORM_H_ */
|
8
services/hydra-http-proxy-urlenum.h
Normal file
8
services/hydra-http-proxy-urlenum.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_HTTP_PROXY_URLENUM_H_
|
||||||
|
#define _HYDRA_SERVICE_HTTP_PROXY_URLENUM_H_
|
||||||
|
|
||||||
|
void service_http_proxy_urlenum(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_http_proxy_urlenum_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_http_proxy_urlenum(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_HTTP_PROXY_URLENUM_H_ */
|
8
services/hydra-http-proxy.h
Normal file
8
services/hydra-http-proxy.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_HTTP_PROXY_H_
|
||||||
|
#define _HYDRA_SERVICE_HTTP_PROXY_H_
|
||||||
|
|
||||||
|
void service_http_proxy(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_http_proxy_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_http_proxy(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_HTTP_PROXY_H_ */
|
10
services/hydra-http.h
Normal file
10
services/hydra-http.h
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_HTTP_H_
|
||||||
|
#define _HYDRA_SERVICE_HTTP_H_
|
||||||
|
|
||||||
|
void service_http_get(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void service_http_head(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void service_http_post(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_http_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_http(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_HTTP_H_ */
|
8
services/hydra-icq.h
Normal file
8
services/hydra-icq.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_ICQ_H_
|
||||||
|
#define _HYDRA_SERVICE_ICQ_H_
|
||||||
|
|
||||||
|
void service_icq(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_icq_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_icq(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_ICQ_H_ */
|
8
services/hydra-imap.h
Normal file
8
services/hydra-imap.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_IMAP_H_
|
||||||
|
#define _HYDRA_SERVICE_IMAP_H_
|
||||||
|
|
||||||
|
void service_imap(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_imap_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_imap(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_IMAP_H_ */
|
8
services/hydra-irc.h
Normal file
8
services/hydra-irc.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_IRC_H_
|
||||||
|
#define _HYDRA_SERVICE_IRC_H_
|
||||||
|
|
||||||
|
void service_irc(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_irc_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_irc(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_IRC_H_ */
|
11
services/hydra-ldap.h
Normal file
11
services/hydra-ldap.h
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_LDAP_H_
|
||||||
|
#define _HYDRA_SERVICE_LDAP_H_
|
||||||
|
|
||||||
|
void service_ldap2(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void service_ldap3(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void service_ldap3_cram_md5(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void service_ldap3_digest_md5(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_ldap_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_ldap(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_LDAP_H_ */
|
8
services/hydra-mssql.h
Normal file
8
services/hydra-mssql.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_MSSQL_H_
|
||||||
|
#define _HYDRA_SERVICE_MSSQL_H_
|
||||||
|
|
||||||
|
void service_mssql(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_mssql_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_mssql(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_MSSQL_H_ */
|
8
services/hydra-mysql.h
Normal file
8
services/hydra-mysql.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_MYSQL_H_
|
||||||
|
#define _HYDRA_SERVICE_MYSQL_H_
|
||||||
|
|
||||||
|
void service_mysql(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_mysql_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_mysql(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_MYSQL_H_ */
|
8
services/hydra-ncp.h
Normal file
8
services/hydra-ncp.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_NCP_H_
|
||||||
|
#define _HYDRA_SERVICE_NCP_H_
|
||||||
|
|
||||||
|
void service_ncp(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_ncp_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_ncp(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_NCP_H_ */
|
8
services/hydra-nntp.h
Normal file
8
services/hydra-nntp.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_NNTP_H_
|
||||||
|
#define _HYDRA_SERVICE_NNTP_H_
|
||||||
|
|
||||||
|
void service_nntp(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_nntp_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_nntp(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_NNTP_H_ */
|
8
services/hydra-oracle-listener.h
Normal file
8
services/hydra-oracle-listener.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_ORACLE_LISTENER_H_
|
||||||
|
#define _HYDRA_SERVICE_ORACLE_LISTENER_H_
|
||||||
|
|
||||||
|
void service_oracle_listener(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_oracle_listener_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_oracle_listener(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_ORACLE_LISTENER_H_ */
|
8
services/hydra-oracle-sid.h
Normal file
8
services/hydra-oracle-sid.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_ORACLE_SID_H_
|
||||||
|
#define _HYDRA_SERVICE_ORACLE_SID_H_
|
||||||
|
|
||||||
|
void service_oracle_sid(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_oracle_sid_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_oracle_sid(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_ORACLE_SID_H_ */
|
8
services/hydra-oracle.h
Normal file
8
services/hydra-oracle.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_ORACLE_H_
|
||||||
|
#define _HYDRA_SERVICE_ORACLE_H_
|
||||||
|
|
||||||
|
void service_oracle(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_oracle_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_oracle(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_ORACLE_H_ */
|
8
services/hydra-pcanywhere.h
Normal file
8
services/hydra-pcanywhere.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_PCANYWHERE_H_
|
||||||
|
#define _HYDRA_SERVICE_PCANYWHERE_H_
|
||||||
|
|
||||||
|
void service_pcanywhere(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_pcanywhere_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_pcanywhere(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_PCANYWHERE_H_ */
|
8
services/hydra-pcnfs.h
Normal file
8
services/hydra-pcnfs.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_PCNFS_H_
|
||||||
|
#define _HYDRA_SERVICE_PCNFS_H_
|
||||||
|
|
||||||
|
void service_pcnfs(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_pcnfs_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_pcnfs(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_PCNFS_H_ */
|
8
services/hydra-pop3.h
Normal file
8
services/hydra-pop3.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_POP3_H_
|
||||||
|
#define _HYDRA_SERVICE_POP3_H_
|
||||||
|
|
||||||
|
void service_pop3(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_pop3_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_pop3(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_POP3_H_ */
|
8
services/hydra-postgres.h
Normal file
8
services/hydra-postgres.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_POSTGRES_H_
|
||||||
|
#define _HYDRA_SERVICE_POSTGRES_H_
|
||||||
|
|
||||||
|
void service_postgres(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_postgres_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_postgres(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_POSTGRES_H_ */
|
8
services/hydra-rdp.h
Normal file
8
services/hydra-rdp.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_RDP_H_
|
||||||
|
#define _HYDRA_SERVICE_RDP_H_
|
||||||
|
|
||||||
|
void service_rdp(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_rdp_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_rdp(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_RDP_H_ */
|
8
services/hydra-redis.h
Normal file
8
services/hydra-redis.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_REDIS_H_
|
||||||
|
#define _HYDRA_SERVICE_REDIS_H_
|
||||||
|
|
||||||
|
void service_redis(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_redis_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_redis(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_REDIS_H_ */
|
8
services/hydra-rexec.h
Normal file
8
services/hydra-rexec.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_REXEC_H_
|
||||||
|
#define _HYDRA_SERVICE_REXEC_H_
|
||||||
|
|
||||||
|
void service_rexec(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_rexec_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_rexec(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_REXEC_H_ */
|
8
services/hydra-rlogin.h
Normal file
8
services/hydra-rlogin.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_RLOGIN_H_
|
||||||
|
#define _HYDRA_SERVICE_RLOGIN_H_
|
||||||
|
|
||||||
|
void service_rlogin(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_rlogin_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_rlogin(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_RLOGIN_H_ */
|
8
services/hydra-rpcap.h
Normal file
8
services/hydra-rpcap.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_RPCAP_H_
|
||||||
|
#define _HYDRA_SERVICE_RPCAP_H_
|
||||||
|
|
||||||
|
void service_rpcap(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_rpcap_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_rpcap(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_RPCAP_H_ */
|
8
services/hydra-rsh.h
Normal file
8
services/hydra-rsh.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_RSH_H_
|
||||||
|
#define _HYDRA_SERVICE_RSH_H_
|
||||||
|
|
||||||
|
void service_rsh(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_rsh_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_rsh(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_RSH_H_ */
|
8
services/hydra-rtsp.h
Normal file
8
services/hydra-rtsp.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_RTSP_H_
|
||||||
|
#define _HYDRA_SERVICE_RTSP_H_
|
||||||
|
|
||||||
|
void service_rtsp(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_rtsp_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_rtsp(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_RTSP_H_ */
|
8
services/hydra-s7-300.h
Normal file
8
services/hydra-s7-300.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_S7_300_H_
|
||||||
|
#define _HYDRA_SERVICE_S7_300_H_
|
||||||
|
|
||||||
|
void service_s7_300(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_s7_300_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_s7_300(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_S7_300_H_ */
|
8
services/hydra-sapr3.h
Normal file
8
services/hydra-sapr3.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_SAPR3_H_
|
||||||
|
#define _HYDRA_SERVICE_SAPR3_H_
|
||||||
|
|
||||||
|
void service_sapr3(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_sapr3_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_sapr3(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_SAPR3_H_ */
|
8
services/hydra-sip.h
Normal file
8
services/hydra-sip.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_SIP_H_
|
||||||
|
#define _HYDRA_SERVICE_SIP_H_
|
||||||
|
|
||||||
|
void service_sip(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_sip_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_sip(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_SIP_H_ */
|
8
services/hydra-smb.h
Normal file
8
services/hydra-smb.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_SMB_H_
|
||||||
|
#define _HYDRA_SERVICE_SMB_H_
|
||||||
|
|
||||||
|
void service_smb(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_smb_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_smb(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_SMB_H_ */
|
8
services/hydra-smtp-enum.h
Normal file
8
services/hydra-smtp-enum.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_SMTP_ENUM_H_
|
||||||
|
#define _HYDRA_SERVICE_SMTP_ENUM_H_
|
||||||
|
|
||||||
|
void service_smtp_enum(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_smtp_enum_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_smtp_enum(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_SMTP_ENUM_H_ */
|
8
services/hydra-smtp.h
Normal file
8
services/hydra-smtp.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_SMTP_H_
|
||||||
|
#define _HYDRA_SERVICE_SMTP_H_
|
||||||
|
|
||||||
|
void service_smtp(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_smtp_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_smtp(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_SMTP_H_ */
|
8
services/hydra-snmp.h
Normal file
8
services/hydra-snmp.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_SNMP_H_
|
||||||
|
#define _HYDRA_SERVICE_SNMP_H_
|
||||||
|
|
||||||
|
void service_snmp(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_snmp_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_snmp(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_SNMP_H_ */
|
8
services/hydra-socks5.h
Normal file
8
services/hydra-socks5.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_SOCKS5_H_
|
||||||
|
#define _HYDRA_SERVICE_SOCKS5_H_
|
||||||
|
|
||||||
|
void service_socks5(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_socks5_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_socks5(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_SOCKS5_H_ */
|
8
services/hydra-ssh.h
Normal file
8
services/hydra-ssh.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_SSH_H_
|
||||||
|
#define _HYDRA_SERVICE_SSH_H_
|
||||||
|
|
||||||
|
void service_ssh(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_ssh_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_ssh(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_SSH_H_ */
|
8
services/hydra-sshkey.h
Normal file
8
services/hydra-sshkey.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_SSHKEY_H_
|
||||||
|
#define _HYDRA_SERVICE_SSHKEY_H_
|
||||||
|
|
||||||
|
void service_sshkey(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_sshkey_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_sshkey(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_SSHKEY_H_ */
|
8
services/hydra-svn.h
Normal file
8
services/hydra-svn.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_SVN_H_
|
||||||
|
#define _HYDRA_SERVICE_SVN_H_
|
||||||
|
|
||||||
|
void service_svn(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_svn_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_svn(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_SVN_H_ */
|
8
services/hydra-teamspeak.h
Normal file
8
services/hydra-teamspeak.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_TEAMSPEAK_H_
|
||||||
|
#define _HYDRA_SERVICE_TEAMSPEAK_H_
|
||||||
|
|
||||||
|
void service_teamspeak(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_teamspeak_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_teamspeak(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_TEAMSPEAK_H_ */
|
8
services/hydra-telnet.h
Normal file
8
services/hydra-telnet.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_TELNET_H_
|
||||||
|
#define _HYDRA_SERVICE_TELNET_H_
|
||||||
|
|
||||||
|
void service_telnet(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_telnet_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_telnet(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_TELNET_H_ */
|
8
services/hydra-vmauthd.h
Normal file
8
services/hydra-vmauthd.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_VMAUTHD_H_
|
||||||
|
#define _HYDRA_SERVICE_VMAUTHD_H_
|
||||||
|
|
||||||
|
void service_vmauthd(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_vmauthd_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_vmauthd(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_VMAUTHD_H_ */
|
8
services/hydra-vnc.h
Normal file
8
services/hydra-vnc.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_VNC_H_
|
||||||
|
#define _HYDRA_SERVICE_VNC_H_
|
||||||
|
|
||||||
|
void service_vnc(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_vnc_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_vnc(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_VNC_H_ */
|
8
services/hydra-xmpp.h
Normal file
8
services/hydra-xmpp.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef _HYDRA_SERVICE_XMPP_H_
|
||||||
|
#define _HYDRA_SERVICE_XMPP_H_
|
||||||
|
|
||||||
|
void service_xmpp(char *target, char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
int service_xmpp_init(char *ip, int sp, unsigned char options, char *miscptr, FILE * fp, int port, char *hostname);
|
||||||
|
void usage_xmpp(const char* service);
|
||||||
|
|
||||||
|
#endif /* _HYDRA_SERVICE_XMPP_H_ */
|
Loading…
Add table
Add a link
Reference in a new issue