portlist.cc
来自「Ubuntu packages of security software。 相」· CC 代码 · 共 745 行 · 第 1/2 页
CC
745 行
/*************************************************************************** * portlist.cc -- Functions for manipulating various lists of ports * * maintained internally by Nmap. * * * ***********************IMPORTANT NMAP LICENSE TERMS************************ * * * The Nmap Security Scanner is (C) 1996-2006 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-fingerprints 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 just meant to * * clarify our interpretation of derived works with some common examples. * * These restrictions only apply when you actually redistribute Nmap. For * * example, nothing stops you from writing and selling a proprietary * * front-end to Nmap. Just distribute it by itself, and point people to * * http://insecure.org/nmap/ to download Nmap. * * * * We don't consider these to be added restrictions on top of the GPL, but * * just a clarification of how we interpret "derived works" as it applies * * to our GPL-licensed Nmap product. This is similar to the way Linus * * Torvalds has announced his interpretation of how "derived works" * * applies to Linux kernel modules. Our interpretation refers only to * * Nmap - we don't speak for any other GPL products. * * * * 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 fyodor@insecure.org for possible incorporation into the main * * distribution. By sending these changes to Fyodor or one the * * Insecure.Org development mailing lists, it is assumed that you are * * offering Fyodor and 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 for more details at * * http://www.gnu.org/copyleft/gpl.html , or in the COPYING file included * * with Nmap. * * * ***************************************************************************//* $Id: portlist.cc 4068 2006-10-14 01:25:43Z fyodor $ */#include "portlist.h"#include "nmap_error.h"#include "nmap.h"#include "NmapOps.h"using namespace std;#if HAVE_STRINGS_H#include <strings.h>#endif /* HAVE_STRINGS_H */extern NmapOps o; /* option structure */Port::Port() { portno = proto = 0; owner = NULL; rpc_status = RPC_STATUS_UNTESTED; rpc_program = rpc_lowver = rpc_highver = 0; state = confidence = 0; next = NULL; serviceprobe_results = PROBESTATE_INITIAL; serviceprobe_service = NULL; serviceprobe_product = serviceprobe_version = serviceprobe_extrainfo = NULL; serviceprobe_hostname = serviceprobe_ostype = serviceprobe_devicetype = NULL; serviceprobe_tunnel = SERVICE_TUNNEL_NONE; serviceprobe_fp = NULL;}Port::~Port() { if (owner) free(owner); if (serviceprobe_product) free(serviceprobe_product); if (serviceprobe_version) free(serviceprobe_version); if (serviceprobe_extrainfo) free(serviceprobe_extrainfo); if (serviceprobe_hostname) free(serviceprobe_hostname); if (serviceprobe_ostype) free(serviceprobe_ostype); if (serviceprobe_devicetype) free(serviceprobe_devicetype); if (serviceprobe_service) free(serviceprobe_service); if (serviceprobe_fp) free(serviceprobe_fp);}// Uses the sd->{product,version,extrainfo} if available to fill// out sd->fullversion. If unavailable, it will be set to zero length.static void populateFullVersionString(struct serviceDeductions *sd) { char *dst = sd->fullversion; unsigned int spaceleft = sizeof(sd->fullversion) - 1; dst[0] = '\0'; if (sd->product && spaceleft >= strlen(sd->product)) { strncat(dst, sd->product, spaceleft); spaceleft -= strlen(sd->product); } if (sd->version && spaceleft >= (strlen(sd->version) + 1)) { strncat(dst, " ", spaceleft); strncat(dst, sd->version, spaceleft); spaceleft -= strlen(sd->version) + 1; } if (sd->extrainfo && spaceleft >= (strlen(sd->extrainfo) + 3)) { strncat(dst, " (", spaceleft); strncat(dst, sd->extrainfo, spaceleft); strncat(dst, ")", spaceleft); spaceleft -= strlen(sd->extrainfo) + 3; }}// pass in an allocated struct serviceDeductions (don't worry about// initializing, and you don't have to free any internal ptrs. See the// serviceDeductions definition for the fields that are populated.// Returns 0 if at least a name is available.int Port::getServiceDeductions(struct serviceDeductions *sd) { struct servent *service; assert(sd); memset(sd, 0, sizeof(struct serviceDeductions)); sd->service_fp = serviceprobe_fp; sd->service_tunnel = serviceprobe_tunnel; sd->rpc_status = rpc_status; sd->rpc_program = rpc_program; sd->rpc_lowver = rpc_lowver; sd->rpc_highver = rpc_highver; // First priority is RPC if (rpc_status == RPC_STATUS_UNKNOWN || rpc_status == RPC_STATUS_GOOD_PROG ) { assert(serviceprobe_service); sd->name = serviceprobe_service; sd->name_confidence = (rpc_status == RPC_STATUS_UNKNOWN)? 8 : 10; sd->dtype = SERVICE_DETECTION_PROBED; // RPC counts as probed sd->version = serviceprobe_version; sd->extrainfo = serviceprobe_extrainfo; sd->hostname = serviceprobe_hostname; sd->ostype = serviceprobe_ostype; sd->devicetype = serviceprobe_devicetype; populateFullVersionString(sd); return 0; } else if (serviceprobe_results == PROBESTATE_FINISHED_HARDMATCHED || serviceprobe_results == PROBESTATE_FINISHED_SOFTMATCHED) { assert(serviceprobe_service); sd->dtype = SERVICE_DETECTION_PROBED; sd->name = serviceprobe_service; sd->name_confidence = 10; sd->product = serviceprobe_product; sd->version = serviceprobe_version; sd->extrainfo = serviceprobe_extrainfo; sd->hostname = serviceprobe_hostname; sd->ostype = serviceprobe_ostype; sd->devicetype = serviceprobe_devicetype; populateFullVersionString(sd); return 0; } else if (serviceprobe_results == PROBESTATE_EXCLUDED) { service = nmap_getservbyport(htons(portno), (proto == IPPROTO_TCP)? "tcp" : "udp"); if (service) sd->name = service->s_name; sd->name_confidence = 2; // Since we didn't even check it, we aren't very confident sd->dtype = SERVICE_DETECTION_TABLE; sd->product = serviceprobe_product; // Should have a string that says port was excluded populateFullVersionString(sd); return 0; } else if (serviceprobe_results == PROBESTATE_FINISHED_TCPWRAPPED) { sd->dtype = SERVICE_DETECTION_PROBED; sd->name = "tcpwrapped"; sd->name_confidence = 8; return 0; } // So much for service detection or RPC. Maybe we can find it in the file service = nmap_getservbyport(htons(portno), (proto == IPPROTO_TCP)? "tcp" : "udp"); if (service) { sd->dtype = SERVICE_DETECTION_TABLE; sd->name = service->s_name; sd->name_confidence = 3; return 0; } // Couldn't find it. [shrug] return -1;}// sname should be NULL if sres is not// PROBESTATE_FINISHED_MATCHED. product,version, and/or extrainfo// will be NULL if unavailable. Note that this function makes its// own copy of sname and product/version/extrainfo. This function// also takes care of truncating the version strings to a// 'reasonable' length if neccessary, and cleaning up any unprintable// chars. (these tests are to avoid annoying DOS (or other) attacks// by malicious services). The fingerprint should be NULL unless// one is available and the user should submit it. tunnel must be// SERVICE_TUNNEL_NULL (normal) or SERVICE_TUNNEL_SSL (means ssl was// detected and we tried to tunnel through it ).char* Port::cstringSanityCheck(const char* string, int len) { char* result; int slen; if(!string) return NULL; slen = strlen(string); if (slen > len) slen = len; result = (char *) safe_malloc(slen + 1); memcpy(result, string, slen); result[slen] = '\0'; replacenonprintable(result, slen, '.'); return result;}void Port::setServiceProbeResults(enum serviceprobestate sres, const char *sname, enum service_tunnel_type tunnel, const char *product, const char *version, const char *extrainfo, const char *hostname, const char *ostype, const char *devicetype, const char *fingerprint) { serviceprobe_results = sres; serviceprobe_tunnel = tunnel; if (sname) serviceprobe_service = strdup(sname); if (fingerprint) serviceprobe_fp = strdup(fingerprint); serviceprobe_product = cstringSanityCheck(product, 64); serviceprobe_version = cstringSanityCheck(version, 64); serviceprobe_extrainfo = cstringSanityCheck(extrainfo, 128); serviceprobe_hostname = cstringSanityCheck(hostname, 64); serviceprobe_ostype = cstringSanityCheck(ostype, 64); serviceprobe_devicetype = cstringSanityCheck(devicetype, 64);}/* Sets the results of an RPC scan. if rpc_status is not RPC_STATUS_GOOD_PROGRAM, pass 0 for the other args. This function takes care of setting the port's service and version appropriately. */void Port::setRPCProbeResults(int rpcs, unsigned long rpcp, unsigned int rpcl, unsigned int rpch) { rpc_status = rpcs; const char *newsvc; char verbuf[128]; rpc_status = rpcs; if (rpc_status == RPC_STATUS_GOOD_PROG) { rpc_program = rpcp; rpc_lowver = rpcl; rpc_highver = rpch; // Now set the service/version info newsvc = nmap_getrpcnamebynum(rpcp); if (!newsvc) newsvc = "rpc.unknownprog"; // should never happen if (serviceprobe_service) free(serviceprobe_service); serviceprobe_service = strdup(newsvc); serviceprobe_product = strdup(newsvc); if (rpc_lowver == rpc_highver) snprintf(verbuf, sizeof(verbuf), "%i", rpc_lowver); else snprintf(verbuf, sizeof(verbuf), "%i-%i", rpc_lowver, rpc_highver); serviceprobe_version = strdup(verbuf); snprintf(verbuf, sizeof(verbuf), "rpc #%li", rpc_program); serviceprobe_extrainfo = strdup(verbuf); } else if (rpc_status == RPC_STATUS_UNKNOWN) { if (serviceprobe_service) free(serviceprobe_service); serviceprobe_service = strdup("rpc.unknown"); }}/*****************************************************************************//* Convert protocol name from in.h to enum portlist_proto. * So IPPROTO_TCP will be changed to PORTLIST_PROTO_TCP and so on. */#define INPROTO2PORTLISTPROTO(p) \ ((p)==IPPROTO_TCP ? PORTLIST_PROTO_TCP : \ (p)==IPPROTO_UDP ? PORTLIST_PROTO_UDP : \ PORTLIST_PROTO_IP)PortList::PortList() { int proto; memset(state_counts_proto, 0, sizeof(state_counts_proto)); memset(port_list, 0, sizeof(port_list)); for(proto=0; proto < PORTLIST_PROTO_MAX; proto++) { if(port_list_count[proto] > 0) port_list[proto] = (Port**) safe_zalloc(sizeof(Port*)*port_list_count[proto]); } numports = 0; idstr = NULL;}PortList::~PortList() { int proto, i; if (idstr) { free(idstr); idstr = NULL; } for(proto=0; proto < PORTLIST_PROTO_MAX; proto++) { // for every protocol
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?