#!/usr/bin/env python # -*- coding: utf-8 -*- # ***********************IMPORTANT NMAP LICENSE TERMS************************ # * * # * The Nmap Security Scanner is (C) 1996-2016 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 ("GPL"), BUT ONLY WITH ALL OF THE CLARIFICATIONS * # * AND EXCEPTIONS DESCRIBED HEREIN. 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@nmap.com). Dozens of software * # * vendors already license Nmap technology such as host discovery, port * # * scanning, OS detection, version detection, and the Nmap Scripting * # * Engine. * # * * # * Note that the GPL places important restrictions on "derivative works", * # * yet it does not provide a detailed definition of that term. To avoid * # * misunderstandings, we interpret that term as broadly as copyright law * # * allows. For example, we consider an application to constitute a * # * derivative work for the purpose of this license if it does any of the * # * following with any software or content covered by this license * # * ("Covered Software"): * # * * # * o Integrates source code from Covered Software. * # * * # * o Reads or includes copyrighted data files, such as Nmap's nmap-os-db * # * or nmap-service-probes. * # * * # * o Is designed specifically to execute Covered Software and parse the * # * results (as opposed to typical shell or execution-menu apps, which will * # * execute anything you tell them to). * # * * # * o Includes Covered Software in a proprietary executable installer. The * # * installers produced by InstallShield are an example of this. Including * # * Nmap with other software in compressed or archival form does not * # * trigger this provision, provided appropriate open source decompression * # * or de-archiving software is widely available for no charge. For the * # * purposes of this license, an installer is considered to include Covered * # * Software even if it actually retrieves a copy of Covered Software from * # * another source during runtime (such as by downloading it from the * # * Internet). * # * * # * o Links (statically or dynamically) to a library which does any of the * # * above. * # * * # * o Executes a helper program, module, or script to do any of the above. * # * * # * This list is not exclusive, but is meant to clarify our interpretation * # * of derived works with some common examples. Other people may interpret * # * the plain GPL differently, so we consider this a special exception to * # * the GPL that we apply to Covered Software. Works which meet any of * # * these conditions must conform to all of the terms of this license, * # * particularly including the GPL Section 3 requirements of providing * # * source code and allowing free redistribution of the work as a whole. * # * * # * As another 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 docs/licenses/OpenSSL.txt file, and distribute * # * linked combinations including the two. * # * * # * Any redistribution of Covered Software, including any derived works, * # * must obey and carry forward all of the terms of this license, including * # * obeying all GPL rules and restrictions. For example, source code of * # * the whole work must be provided and free redistribution must be * # * allowed. All GPL references to "this License", are to be treated as * # * including the terms and conditions of this license text as well. * # * * # * Because this license imposes special exceptions to the GPL, Covered * # * Work may not be combined (even as part of a larger work) with plain GPL * # * software. The terms, conditions, and exceptions of this license must * # * be included as well. This license is incompatible with some other open * # * source licenses as well. In some cases we can relicense portions of * # * Nmap or grant special permissions to use it in other open source * # * software. Please contact fyodor@nmap.org with any such requests. * # * Similarly, we don't incorporate incompatible open source software into * # * Covered Software without special permission from the copyright holders. * # * * # * If you have any questions about the licensing restrictions on using * # * Nmap in other works, are 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. They also fund the * # * continued development of Nmap. Please email sales@nmap.com for further * # * information. * # * * # * If you have received a written license agreement or contract for * # * Covered Software stating terms other than these, you may choose to use * # * and redistribute Covered Software under those terms instead of these. * # * * # * 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. * # * * # * 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 the dev@nmap.org mailing list for possible incorporation into the * # * main distribution. By sending these changes to Fyodor or one of the * # * Insecure.Org development mailing lists, or checking them into the Nmap * # * source code repository, it is understood (unless you specify otherwise) * # * 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 Nmap * # * license file for more details (it's in a COPYING file included with * # * Nmap, and also available from https://svn.nmap.org/nmap/COPYING) * # * * # ***************************************************************************/ import gtk from zenmapGUI.higwidgets.higexpanders import HIGExpander from zenmapGUI.higwidgets.higboxes import HIGVBox, HIGHBox,\ hig_box_space_holder from zenmapGUI.higwidgets.higlabels import HIGEntryLabel from zenmapGUI.higwidgets.higtables import HIGTable from zenmapGUI.Icons import get_os_logo, get_vulnerability_logo import zenmapCore.I18N na = _('Not available') class ScanHostDetailsPage(HIGExpander): def __init__(self, host): HIGExpander.__init__(self, host.get_hostname()) self.host_details = HostDetails(host) self.hbox._pack_expand_fill(self.host_details) class HostDetails(HIGVBox): def __init__(self, host): HIGVBox.__init__(self) self.__create_widgets() self.set_os_image(get_os_logo(host)) self.set_vulnerability_image( get_vulnerability_logo(host.get_open_ports())) self.set_host_status({'state': host.get_state(), 'open': str(host.get_open_ports()), 'filtered': str(host.get_filtered_ports()), 'closed': str(host.get_closed_ports()), 'scanned': str(host.get_scanned_ports()), 'uptime': host.get_uptime()['seconds'], 'lastboot': host.get_uptime()['lastboot']}) addresses = {} if host.ip is not None: addresses['ipv4'] = host.ip['addr'] if host.ipv6 is not None: addresses['ipv6'] = host.ipv6['addr'] if host.mac is not None: addresses['mac'] = host.mac['addr'] self.set_addresses(addresses) self.set_hostnames(host.get_hostnames()) os = host.get_best_osmatch() if os: os['portsused'] = host.get_ports_used() self.set_os(os) self.set_tcpseq(host.get_tcpsequence()) self.set_ipseq(host.get_ipidsequence()) self.set_tcptsseq(host.get_tcptssequence()) self.set_comment(host.comment) def __create_widgets(self): self.host_status_expander = gtk.Expander( '' + _('Host Status') + '') self.address_expander = gtk.Expander('' + _('Addresses') + '') self.hostnames_expander = gtk.Expander('' + _('Hostnames') + '') self.os_expander = gtk.Expander('' + _('Operating System') + '') self.portsused_expander = gtk.Expander( '' + _('Ports used') + '') self.osclass_expander = gtk.Expander('' + _('OS Classes') + '') self.tcp_expander = gtk.Expander('' + _('TCP Sequence') + '') self.ip_expander = gtk.Expander('' + _('IP ID Sequence') + '') self.tcpts_expander = gtk.Expander( '' + _('TCP TS Sequence') + '') self.comment_expander = gtk.Expander('' + _('Comments') + '') self.os_image = gtk.Image() self.vulnerability_image = gtk.Image() # Host Status expander self.host_state_label = HIGEntryLabel(_('State:')) self.info_host_state_label = HIGEntryLabel(na) self.open_label = HIGEntryLabel(_('Open ports:')) self.info_open_ports = HIGEntryLabel(na) self.filtered_label = HIGEntryLabel(_('Filtered ports:')) self.info_filtered_label = HIGEntryLabel(na) self.closed_label = HIGEntryLabel(_('Closed ports:')) self.info_closed_ports = HIGEntryLabel(na) self.scanned_label = HIGEntryLabel(_('Scanned ports:')) self.info_scanned_label = HIGEntryLabel(na) self.uptime_label = HIGEntryLabel(_('Up time:')) self.info_uptime_label = HIGEntryLabel(na) self.lastboot_label = HIGEntryLabel(_('Last boot:')) self.info_lastboot_label = HIGEntryLabel(na) # Addresses expander self.ipv4_label = HIGEntryLabel(_('IPv4:')) self.info_ipv4_label = HIGEntryLabel(na) self.ipv6_label = HIGEntryLabel(_('IPv6:')) self.info_ipv6_label = HIGEntryLabel(na) self.mac_label = HIGEntryLabel(_('MAC:')) self.info_mac_label = HIGEntryLabel(na) self.vendor_label = HIGEntryLabel(_('Vendor:')) self.info_vendor_label = HIGEntryLabel(na) def create_table_hbox(self): table = HIGTable() hbox = HIGHBox() hbox._pack_noexpand_nofill(hig_box_space_holder()) hbox._pack_noexpand_nofill(table) return table, hbox def set_host_status(self, status): self.host_status_expander.set_use_markup(True) self.host_status_expander.set_expanded(True) table, hbox = self.create_table_hbox() if ('state' in status and status['state'] != ''): self.info_host_state_label.set_text(status['state']) if ('open' in status and status['open'] != ''): self.info_open_ports.set_text(status['open']) if ('filtered' in status and status['filtered'] != ''): self.info_filtered_label.set_text(status['filtered']) if ('closed' in status and status['closed'] != ''): self.info_closed_ports.set_text(status['closed']) if ('scanned' in status and status['scanned'] != ''): self.info_scanned_label.set_text(status['scanned']) if ('uptime' in status and status['uptime'] != ''): self.info_uptime_label.set_text(status['uptime']) if ('lastboot' in status and status['lastboot'] != ''): self.info_lastboot_label.set_text(status['lastboot']) table.attach(self.host_state_label, 0, 1, 0, 1) table.attach(self.info_host_state_label, 1, 2, 0, 1) table.attach(self.open_label, 0, 1, 1, 2) table.attach(self.info_open_ports, 1, 2, 1, 2) table.attach(self.filtered_label, 0, 1, 2, 3) table.attach(self.info_filtered_label, 1, 2, 2, 3) table.attach(self.closed_label, 0, 1, 3, 4) table.attach(self.info_closed_ports, 1, 2, 3, 4) table.attach(self.scanned_label, 0, 1, 4, 5) table.attach(self.info_scanned_label, 1, 2, 4, 5) table.attach(self.uptime_label, 0, 1, 5, 6) table.attach(self.info_uptime_label, 1, 2, 5, 6) table.attach(self.lastboot_label, 0, 1, 6, 7) table.attach(self.info_lastboot_label, 1, 2, 6, 7) table.attach(self.os_image, 2, 4, 0, 3, xoptions=1, yoptions=0) table.attach( self.vulnerability_image, 2, 4, 4, 7, xoptions=1, yoptions=0) table.set_col_spacing(1, 50) self.host_status_expander.add(hbox) self._pack_noexpand_nofill(self.host_status_expander) def set_os_image(self, image): self.os_image.set_from_stock(image, gtk.ICON_SIZE_DIALOG) def set_vulnerability_image(self, image): self.vulnerability_image.set_from_stock(image, gtk.ICON_SIZE_DIALOG) def set_addresses(self, address): self.address_expander.set_use_markup(True) table, hbox = self.create_table_hbox() self.address_expander.set_expanded(True) #print '>>> Address:', address if ('ipv4' in address and address['ipv4'] != 1): self.info_ipv4_label.set_text(address['ipv4']) if ('ipv6' in address and address['ipv6'] != 1): self.info_ipv6_label.set_text(address['ipv6']) if ('mac' in address and address['mac'] != 1): self.info_mac_label.set_text(address['mac']) table.attach(self.ipv4_label, 0, 1, 0, 1) table.attach(self.info_ipv4_label, 1, 2, 0, 1) table.attach(self.ipv6_label, 0, 1, 1, 2) table.attach(self.info_ipv6_label, 1, 2, 1, 2) table.attach(self.mac_label, 0, 1, 2, 3) table.attach(self.info_mac_label, 1, 2, 2, 3) self.address_expander.add(hbox) self._pack_noexpand_nofill(self.address_expander) def set_hostnames(self, hostname): if hostname: self.hostnames_expander.set_use_markup(True) self.hostnames_expander.set_expanded(True) table, hbox = self.create_table_hbox() y1 = 1 y2 = 2 for h in hostname: name = h.get('hostname', na) type = h.get('hostname_type', na) table.attach(HIGEntryLabel(_('Name - Type:')), 0, 1, y1, y2) table.attach(HIGEntryLabel(name + ' - ' + type), 1, 2, y1, y2) y1 += 1 y2 += 1 self.hostnames_expander.add(hbox) self._pack_noexpand_nofill(self.hostnames_expander) def set_os(self, os): if os: self.os_expander.set_use_markup(True) self.os_expander.set_expanded(True) table, hbox = self.create_table_hbox() progress = gtk.ProgressBar() if 'accuracy' in os: progress.set_fraction(float(os['accuracy']) / 100.0) progress.set_text(os['accuracy'] + '%') else: progress.set_text(_('Not Available')) table.attach(HIGEntryLabel(_('Name:')), 0, 1, 0, 1) table.attach(HIGEntryLabel(os['name']), 1, 2, 0, 1) table.attach(HIGEntryLabel(_('Accuracy:')), 0, 1, 1, 2) table.attach(progress, 1, 2, 1, 2) y1 = 2 y2 = 3 if 'portsused' in os: self.set_ports_used(os['portsused']) table.attach(self.portsused_expander, 0, 2, y1, y2) y1 += 1 y2 += 1 if 'osclasses' in os: self.set_osclass(os['osclasses']) self.osclass_expander.set_use_markup(True) table.attach(self.osclass_expander, 0, 2, y1, y2) self.os_expander.add(hbox) self._pack_noexpand_nofill(self.os_expander) def set_ports_used(self, ports): self.portsused_expander.set_use_markup(True) table, hbox = self.create_table_hbox() y1 = 0 y2 = 1 for p in ports: table.attach(HIGEntryLabel( _('Port-Protocol-State:')), 0, 1, y1, y2) table.attach(HIGEntryLabel( p['portid'] + ' - ' + p['proto'] + ' - ' + p['state'] ), 1, 2, y1, y2) y1 += 1 y2 += 1 self.portsused_expander.add(hbox) def set_osclass(self, osclass): if osclass: self.osclass_expander.set_use_markup(True) table, hbox = self.create_table_hbox() table.attach(HIGEntryLabel(_('Type')), 0, 1, 0, 1) table.attach(HIGEntryLabel(_('Vendor')), 1, 2, 0, 1) table.attach(HIGEntryLabel(_('OS Family')), 2, 3, 0, 1) table.attach(HIGEntryLabel(_('OS Generation')), 3, 4, 0, 1) table.attach(HIGEntryLabel(_('Accuracy')), 4, 5, 0, 1) y1 = 1 y2 = 2 for o in osclass: table.attach(HIGEntryLabel(o['type']), 0, 1, y1, y2) table.attach(HIGEntryLabel(o['vendor']), 1, 2, y1, y2) table.attach(HIGEntryLabel(o['osfamily']), 2, 3, y1, y2) table.attach(HIGEntryLabel(o['osgen']), 3, 4, y1, y2) progress = gtk.ProgressBar() progress.set_text(o['accuracy'] + '%') progress.set_fraction(float(o['accuracy']) / 100.0) table.attach(progress, 4, 5, y1, y2) y1 += 1 y2 += 1 self.osclass_expander.add(hbox) def set_tcpseq(self, tcpseq): if tcpseq: self.tcp_expander.set_use_markup(True) table, hbox = self.create_table_hbox() combo = gtk.combo_box_new_text() for v in tcpseq['values'].split(','): combo.append_text(v) table.attach(HIGEntryLabel(_('Difficulty:')), 0, 1, 1, 2) table.attach(HIGEntryLabel(tcpseq['difficulty']), 1, 2, 1, 2) table.attach(HIGEntryLabel(_('Index:')), 0, 1, 2, 3) table.attach(HIGEntryLabel(tcpseq['index']), 1, 2, 2, 3) table.attach(HIGEntryLabel(_('Values:')), 0, 1, 3, 4) table.attach(combo, 1, 2, 3, 4) self.tcp_expander.add(hbox) self._pack_noexpand_nofill(self.tcp_expander) def set_ipseq(self, ipseq): if ipseq: self.ip_expander.set_use_markup(True) table, hbox = self.create_table_hbox() combo = gtk.combo_box_new_text() for i in ipseq['values'].split(','): combo.append_text(i) table.attach(HIGEntryLabel(_('Class:')), 0, 1, 0, 1) table.attach(HIGEntryLabel(ipseq['class']), 1, 2, 0, 1) table.attach(HIGEntryLabel(_('Values:')), 0, 1, 1, 2) table.attach(combo, 1, 2, 1, 2) self.ip_expander.add(hbox) self._pack_noexpand_nofill(self.ip_expander) def set_tcptsseq(self, tcptsseq): if tcptsseq: self.tcpts_expander.set_use_markup(True) table, hbox = self.create_table_hbox() combo = gtk.combo_box_new_text() for i in tcptsseq['values'].split(','): combo.append_text(i) table.attach(HIGEntryLabel(_('Class:')), 0, 1, 0, 1) table.attach(HIGEntryLabel(tcptsseq['class']), 1, 2, 0, 1) table.attach(HIGEntryLabel(_('Values:')), 0, 1, 1, 2) table.attach(combo, 1, 2, 1, 2) self.tcpts_expander.add(hbox) self._pack_noexpand_nofill(self.tcpts_expander) def set_comment(self, comment=''): self.comment_expander.set_use_markup(True) if comment: self.comment_expander.set_expanded(True) hbox = HIGHBox() self.comment_scrolled = gtk.ScrolledWindow() self.comment_scrolled.set_border_width(5) self.comment_scrolled.set_policy( gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC) self.comment_txt_vw = gtk.TextView() self.comment_txt_vw.set_wrap_mode(gtk.WRAP_WORD) self.comment_txt_vw.get_buffer().set_text(comment) self.comment_scrolled.add(self.comment_txt_vw) hbox._pack_expand_fill(self.comment_scrolled) self.comment_expander.add(hbox) self._pack_noexpand_nofill(self.comment_expander) def get_comment(self): buffer = self.comment_txt_vw.get_buffer() return buffer.get_text(buffer.get_start_iter(), buffer.get_end_iter())