/*************************************************************************** * ncat_core.c -- Contains option defintions and miscellaneous functions. * ***********************IMPORTANT NMAP LICENSE TERMS************************ * * * The Nmap Security Scanner is (C) 1996-2009 Insecure.Com LLC. Nmap is * * also a registered trademark of Insecure.Com LLC. This program is free * * software; you may redistribute and/or modify it under the terms of the * * GNU General Public License as published by the Free Software * * Foundation; Version 2 with the clarifications and exceptions described * * below. This guarantees your right to use, modify, and redistribute * * this software under certain conditions. If you wish to embed Nmap * * technology into proprietary software, we sell alternative licenses * * (contact sales@insecure.com). Dozens of software vendors already * * license Nmap technology such as host discovery, port scanning, OS * * detection, and version detection. * * * * Note that the GPL places important restrictions on "derived works", yet * * it does not provide a detailed definition of that term. To avoid * * misunderstandings, we consider an application to constitute a * * "derivative work" for the purpose of this license if it does any of the * * following: * * o Integrates source code from Nmap * * o Reads or includes Nmap copyrighted data files, such as * * nmap-os-db or nmap-service-probes. * * o Executes Nmap and parses the results (as opposed to typical shell or * * execution-menu apps, which simply display raw Nmap output and so are * * not derivative works.) * * o Integrates/includes/aggregates Nmap into a proprietary executable * * installer, such as those produced by InstallShield. * * o Links to a library or executes a program that does any of the above * * * * The term "Nmap" should be taken to also include any portions or derived * * works of Nmap. This list is not exclusive, but is meant to clarify our * * interpretation of derived works with some common examples. Our * * interpretation applies only to Nmap--we don't speak for other people's * * GPL works. * * * * If you have any questions about the GPL licensing restrictions on using * * Nmap in non-GPL works, we would be happy to help. As mentioned above, * * we also offer alternative license to integrate Nmap into proprietary * * applications and appliances. These contracts have been sold to dozens * * of software vendors, and generally include a perpetual license as well * * as providing for priority support and updates as well as helping to * * fund the continued development of Nmap technology. Please email * * sales@insecure.com for further information. * * * * As a special exception to the GPL terms, Insecure.Com LLC grants * * permission to link the code of this program with any version of the * * OpenSSL library which is distributed under a license identical to that * * listed in the included COPYING.OpenSSL file, and distribute linked * * combinations including the two. You must obey the GNU GPL in all * * respects for all of the code used other than OpenSSL. If you modify * * this file, you may extend this exception to your version of the file, * * but you are not obligated to do so. * * * * If you received these files with a written license agreement or * * contract stating terms other than the terms above, then that * * alternative license agreement takes precedence over these comments. * * * * Source is provided to this software because we believe users have a * * right to know exactly what a program is going to do before they run it. * * This also allows you to audit the software for security holes (none * * have been found so far). * * * * Source code also allows you to port Nmap to new platforms, fix bugs, * * and add new features. You are highly encouraged to send your changes * * to nmap-dev@insecure.org for possible incorporation into the main * * distribution. By sending these changes to Fyodor or one of the * * Insecure.Org development mailing lists, it is assumed that you are * * offering the Nmap Project (Insecure.Com LLC) the unlimited, * * non-exclusive right to reuse, modify, and relicense the code. Nmap * * will always be available Open Source, but this is important because the * * inability to relicense code has caused devastating problems for other * * Free Software projects (such as KDE and NASM). We also occasionally * * relicense the code to third parties as discussed above. If you wish to * * specify special license conditions of your contributions, just say so * * when you send them. * * * * This program is distributed in the hope that it will be useful, but * * WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * * General Public License v2.0 for more details at * * http://www.gnu.org/licenses/gpl-2.0.html , or in the COPYING file * * included with Nmap. * * * ***************************************************************************/ /* $Id$ */ #include "ncat.h" #include "util.h" #include "sys_wrap.h" #ifndef WIN32 #include #include #include #include #include #endif #include #include #include #include #include #include #include #include union sockaddr_u srcaddr; size_t srcaddrlen; union sockaddr_u targetss; size_t targetsslen; union sockaddr_u httpconnect; union sockaddr_u socksconnect; /* Global options structure. */ struct options o; /* The time the program was started, for exit statistics in connect mode. */ struct timeval start_time; /* Initializes global options to their default values. */ void options_init(void) { o.verbose = 0; o.debug = 0; o.target = NULL; o.af = AF_INET; o.broker = 0; o.listen = 0; o.keepopen = 0; o.sendonly = 0; o.recvonly = 0; o.telnet = 0; o.udp = 0; o.sctp = 0; o.linedelay = 0; o.chat = 0; o.nodns = 0; o.normlogfd = -1; o.hexlogfd = -1; o.idletimeout = 0; o.crlf = 0; o.allow = 0; o.deny = 0; addrset_init(&o.allowset); addrset_init(&o.denyset); o.httpserver = 0; o.numsrcrtes = 0; o.srcrteptr = 4; o.conn_limit = -1; /* Unset. */ o.conntimeout = DEFAULT_CONNECT_TIMEOUT; o.cmdexec = NULL; o.shellexec = 0; o.proxy_auth = NULL; o.proxytype = NULL; #ifdef HAVE_OPENSSL o.ssl = 0; o.sslcert = NULL; o.sslkey = NULL; o.sslverify = 0; o.ssltrustfile = NULL; #endif } /* Tries to resolve the given name (or literal IP) into a sockaddr structure. Pass 0 for the port if you don't care. Returns 0 if hostname cannot be resolved. */ int resolve(char *hostname, unsigned short port, struct sockaddr_storage *ss, size_t *sslen, int af) { struct addrinfo hints; struct addrinfo *result; char portbuf[16]; int rc; assert(ss); assert(sslen); memset(&hints, 0, sizeof(hints)); hints.ai_family = af; hints.ai_socktype = SOCK_DGRAM; if (o.nodns) hints.ai_flags |= AI_NUMERICHOST; /* Make the port number a string to give to getaddrinfo. */ rc = Snprintf(portbuf, sizeof(portbuf), "%hu", port); assert(rc >= 0 && rc < sizeof(portbuf)); rc = getaddrinfo(hostname, portbuf, &hints, &result); if (rc != 0 || result == NULL) return 0; assert(result->ai_addrlen > 0 && result->ai_addrlen <= (int) sizeof(struct sockaddr_storage)); *sslen = result->ai_addrlen; memcpy(ss, result->ai_addr, *sslen); freeaddrinfo(result); return 1; } /* Broadcast a message to all the descriptors in fds. Returns -1 if any of the sends failed. */ int broadcast(const fd_set *fds, const fd_list_t *fdlist, const char *msg, size_t size) { struct fdinfo *fdn; int i, ret; if (o.recvonly) return 0; ret = 0; for (i = 0; i <= fdlist->fdmax; i++) { if (!FD_ISSET(i, fds)) continue; fdn = get_fdinfo(fdlist, i); #ifdef HAVE_OPENSSL if (o.ssl && fdn->ssl != NULL) { if (SSL_write(fdn->ssl, msg, size) <= 0) ret = -1; } else #endif { if (send(i, msg, size, 0) == -1) { if (o.debug > 1) logdebug("Error sending to fd %d: %s.\n", i, socket_strerror(socket_errno())); ret = -1; } } } ncat_log_send(msg, size); return ret; } /* Do telnet WILL/WONT DO/DONT negotiations */ void dotelnet(int s, unsigned char *buf, size_t bufsiz) { unsigned char *end = buf + bufsiz, *p; unsigned char tbuf[3]; for (p = buf; buf < end; p++) { if (*p != 255) /* IAC */ break; tbuf[0] = *p++; /* Answer DONT for WILL or WONT */ if (*p == 251 || *p == 252) tbuf[1] = 254; /* Answer WONT for DO or DONT */ else if (*p == 253 || *p == 254) tbuf[1] = 252; tbuf[2] = *++p; send(s, (const char *) tbuf, 3, 0); } } /* Return 1 if user is root, otherwise 0. */ int ncat_checkuid() { #ifdef WIN32 return 1; #else return (getuid() == 0 || geteuid() == 0); #endif } /* sleep(), usleep(), msleep(), Sleep() -- all together now, "portability". * * There is no upper or lower limit to the delayval, so if you pass in a short * length of time <100ms, then you're likely going to get odd results. * This is because the Linux timeslice is 10ms-200ms. So don't expect * it to return for atleast that long. * * Block until the specified time has elapsed, then return 1. */ int ncat_delay_timer(int delayval) { struct timeval s; s.tv_sec = delayval / 1000; s.tv_usec = (delayval % 1000) * (long) 1000; select(0, NULL, NULL, NULL, &s); return 1; } /* Open a logfile for writing. * Return the open file descriptor. */ int ncat_openlog(char *logfile) { return Open(logfile, O_WRONLY | O_CREAT | O_TRUNC, 0664); } static int ncat_hexdump(int logfd, const char *data, int len); void ncat_log_send(const char *data, size_t len) { if (o.normlogfd != -1) Write(o.normlogfd, data, len); if (o.hexlogfd != -1) ncat_hexdump(o.hexlogfd, data, len); } void ncat_log_recv(const char *data, size_t len) { /* Currently the log formats don't distinguish sends and receives. */ ncat_log_send(data, len); } /* Convert session data to a neat hexdump logfile */ static int ncat_hexdump(int logfd, const char *data, int len) { const char *p = data; char c; int i; char bytestr[4] = { 0 }; char addrstr[10] = { 0 }; char hexstr[16 * 3 + 5] = { 0 }; char charstr[16 * 1 + 5] = { 0 }; char outstr[80] = { 0 }; /* FIXME: needs to be audited closer */ for (i = 1; i <= len; i++) { if (i % 16 == 1) { /* Hex address output */ Snprintf(addrstr, sizeof(addrstr), "%.4x", (u_int)(p - data)); } c = *p; /* If the character isn't printable. Control characters, etc. */ if (isprint((int) (unsigned char) c) == 0) c = '.'; /* hex for output */ Snprintf(bytestr, sizeof(bytestr), "%02X ", (unsigned char) *p); strncat(hexstr, bytestr, sizeof(hexstr) - strlen(hexstr) - 1); /* char for output */ Snprintf(bytestr, sizeof(bytestr), "%c", c); strncat(charstr, bytestr, sizeof(charstr) - strlen(charstr) - 1); if (i % 16 == 0) { /* neatly formatted output */ Snprintf(outstr, sizeof(outstr), "[%4.4s] %-50.50s %s\n", addrstr, hexstr, charstr); Write(logfd, outstr, strlen(outstr)); zmem(outstr, sizeof(outstr)); hexstr[0] = 0; charstr[0] = 0; } else if (i % 8 == 0) { /* cat whitespaces where necessary */ strncat(hexstr, " ", sizeof(hexstr) - strlen(hexstr) - 1); strncat(charstr, " ", sizeof(charstr) - strlen(charstr) - 1); } /* get the next byte */ p++; } /* if there's still data left in the buffer, print it */ if (strlen(hexstr) > 0) { Snprintf(outstr, sizeof(outstr), "[%4.4s] %-50.50s %s\n", addrstr, hexstr, charstr); Write(logfd, outstr, strlen(outstr)); zmem(outstr, sizeof(outstr)); } return 1; }