From 88f65ffc955d0128220a9be7df6e3ff9056f95f2 Mon Sep 17 00:00:00 2001 From: Francesco Cecconi Date: Tue, 5 Jan 2010 18:13:49 +0100 Subject: [PATCH] * Ui++ * copyright++ * code++ * translations++ --- nmapsi4/core/nmapsi4Slot.cpp | 12 +- nmapsi4/core/profileSession.cpp | 10 +- nmapsi4/core/toolsUI.cpp | 6 +- nmapsi4/core/updateUI.cpp | 68 +++--- nmapsi4/mainwin.cpp | 23 ++ nmapsi4/mainwin.h | 8 +- nmapsi4/mainwin.ui | 109 +++++----- nmapsi4/ts/nmapsi4_de.ts | 32 ++- nmapsi4/ts/nmapsi4_es.ts | 362 +++++++++++++++++--------------- nmapsi4/ts/nmapsi4_fr.ts | 362 +++++++++++++++++--------------- nmapsi4/ts/nmapsi4_it.ts | 362 +++++++++++++++++--------------- nmapsi4/ts/nmapsi4_pl.ts | 362 +++++++++++++++++--------------- nmapsi4/ts/nmapsi4_pt_BR.ts | 362 +++++++++++++++++--------------- 13 files changed, 1160 insertions(+), 918 deletions(-) diff --git a/nmapsi4/core/nmapsi4Slot.cpp b/nmapsi4/core/nmapsi4Slot.cpp index 838e488..11293f0 100644 --- a/nmapsi4/core/nmapsi4Slot.cpp +++ b/nmapsi4/core/nmapsi4Slot.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2007-2009 by Francesco Cecconi * + * Copyright (C) 2007-2010 by Francesco Cecconi * * francesco.cecconi@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -161,8 +161,12 @@ void nmapClass::setNmapsiSlot() connect(action_Add_BookmarkToolBar, SIGNAL(triggered()), this, SLOT(saveBookMarks())); - // combo session - connect(comboMain, SIGNAL(activated(const QString&)), - this, SLOT(updateMainSlide())); + // main session + connect(scanSez_, SIGNAL(triggered()), + this, SLOT(updateSezScan())); + connect(logSez_, SIGNAL(triggered()), + this, SLOT(updateSezLog())); + connect(vulnSez_, SIGNAL(triggered()), + this, SLOT(updateSezVuln())); } diff --git a/nmapsi4/core/profileSession.cpp b/nmapsi4/core/profileSession.cpp index aef68fd..715072d 100644 --- a/nmapsi4/core/profileSession.cpp +++ b/nmapsi4/core/profileSession.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2007-2009 by Francesco Cecconi * + * Copyright (C) 2007-2010 by Francesco Cecconi * * francesco.cecconi@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -135,14 +135,12 @@ void nmapClass::checkProfile() if((!vulnExt.compare("none"))) { settings.setValue("vulnFlag", "true"); // default value } else if((vulnExt.compare("false"))) { - comboMain->insertItem(2, tr("Vulnerabilities")); + vulnSez_->setEnabled(true); } else { - if(comboMain->currentIndex() == 2) { + if(stackedMain->currentIndex() == 2) { stackedMain->setCurrentIndex(0); - comboMain->setCurrentIndex(0); } - - comboMain->removeItem(2); + vulnSez_->setEnabled(false); } QString cache = settings.value("hostCache", "none").toString(); diff --git a/nmapsi4/core/toolsUI.cpp b/nmapsi4/core/toolsUI.cpp index 19b8c5d..99b2990 100644 --- a/nmapsi4/core/toolsUI.cpp +++ b/nmapsi4/core/toolsUI.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2007-2009 by Francesco Cecconi * + * Copyright (C) 2007-2010 by Francesco Cecconi * * francesco.cecconi@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -302,7 +302,7 @@ void nmapClass::saveBookMarks() logHistory *history_ = NULL; - switch(comboMain->currentIndex()) { + switch(stackedMain->currentIndex()) { case 0: history_ = new logHistory(treeLogH, "nmapsi4/urlList", "nmapsi4/urlListTime", -1); history_->addItemHistory(hostEdit->currentText(), QDateTime::currentDateTime().toString("ddd MMMM d yy - hh:mm:ss.zzz")); @@ -327,7 +327,7 @@ void nmapClass::deleteBookMark() if(!treeLogH->currentItem() && !treeBookVuln->currentItem()) return; - switch(comboMain->currentIndex()) { + switch(stackedMain->currentIndex()) { case 0: history_ = new logHistory(treeLogH, "nmapsi4/urlList", "nmapsi4/urlListTime", -1); history_->deleteItemBookmark(treeLogH->currentItem()->text(0)); diff --git a/nmapsi4/core/updateUI.cpp b/nmapsi4/core/updateUI.cpp index 180d541..ff62f4a 100644 --- a/nmapsi4/core/updateUI.cpp +++ b/nmapsi4/core/updateUI.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2007-2009 by Francesco Cecconi * + * Copyright (C) 2007-2010 by Francesco Cecconi * * francesco.cecconi@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -337,34 +337,40 @@ void nmapClass::setProgress() { this->setWindowTitle("Nmapsi4 (60%)"); } -void nmapClass::updateMainSlide() { - - switch(comboMain->currentIndex()) { - case 0: - // scan - stackedMain->setCurrentIndex(0); - this->showMainToolBar(); - this->showActionToolBar(); - break; - case 1: - // log - stackedMain->setCurrentIndex(1); - // main and action bar only in scan index - toolBar->setVisible(false); - actionMain_Toolbars->setChecked(false); - toolBar_2->setVisible(false); - toolBarBook->setVisible(false); - actionActions_Toolbar->setChecked(false); - break; - case 2: - // Vuln - stackedMain->setCurrentIndex(2); - // main and action bar only in scan index - toolBar->setVisible(false); - toolBarBook->setVisible(true); - actionMain_Toolbars->setChecked(false); - toolBar_2->setVisible(false); - actionActions_Toolbar->setChecked(false); - break; - } +void nmapClass::updateSezScan() { // SLOT + + if(stackedMain->currentIndex() == 0) + return; + + stackedMain->setCurrentIndex(0); + this->showMainToolBar(); + this->showActionToolBar(); +} + +void nmapClass::updateSezLog() { // SLOT + + if(stackedMain->currentIndex() == 1) + return; + + stackedMain->setCurrentIndex(1); + // main and action bar only in scan index + toolBar->setVisible(false); + actionMain_Toolbars->setChecked(false); + toolBar_2->setVisible(false); + toolBarBook->setVisible(false); + actionActions_Toolbar->setChecked(false); +} + +void nmapClass::updateSezVuln() { // SLOT + + if(stackedMain->currentIndex() == 2) + return; + + stackedMain->setCurrentIndex(2); + // main and action bar only in scan index + toolBar->setVisible(false); + toolBarBook->setVisible(true); + actionMain_Toolbars->setChecked(false); + toolBar_2->setVisible(false); + actionActions_Toolbar->setChecked(false); } diff --git a/nmapsi4/mainwin.cpp b/nmapsi4/mainwin.cpp index 8f08326..64c5715 100644 --- a/nmapsi4/mainwin.cpp +++ b/nmapsi4/mainwin.cpp @@ -34,6 +34,26 @@ void nmapClass::initGUI() setupUi(this); hostEdit->setStyleSheet(QString::fromUtf8("color: rgb(153, 153, 153);")); hostEdit->insertItem(0, tr("Insert [ip] or [dns] or [ip range] to scan (ip range ex. 192.168.1.10/20 )")); + // Section QAction + scanSez_ = new QAction(this); + scanSez_->setIcon(QIcon(QString::fromUtf8(":/images/images/network_local.png"))); + scanSez_->setIconText(tr("Scan")); + scanSez_->setToolTip(tr("Scan host(s)")); + + logSez_ = new QAction(this); + logSez_->setIcon(QIcon(QString::fromUtf8(":/images/images/book.png"))); + logSez_->setIconText(tr("Log")); + logSez_->setToolTip(tr("Scan Log")); + + vulnSez_ = new QAction(this); + vulnSez_->setIcon(QIcon(QString::fromUtf8(":/images/images/viewmag+.png"))); + vulnSez_->setIconText(tr("Services")); + vulnSez_->setToolTip(tr("Check Vulnerabilities")); + + sezBar->addAction(scanSez_); + sezBar->addAction(logSez_); + sezBar->addAction(vulnSez_); + setNmapsiSlot(); } @@ -232,5 +252,8 @@ nmapClass::~nmapClass() delete labelVersion; delete userMode; delete digC; + delete scanSez_; + delete logSez_; + delete vulnSez_; } diff --git a/nmapsi4/mainwin.h b/nmapsi4/mainwin.h index 86317c4..04f82b9 100644 --- a/nmapsi4/mainwin.h +++ b/nmapsi4/mainwin.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2007-2009 by Francesco Cecconi * + * Copyright (C) 2007-2010 by Francesco Cecconi * * francesco.cecconi@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -104,6 +104,7 @@ class nmapClass : public QMainWindow , private Ui::MainWindow QList monitorElemState; QList monitorElem; digSupport *digC; + QAction *scanSez_, *logSez_, *vulnSez_; public slots: @@ -156,7 +157,10 @@ private slots: void optionListCreate(); void optionListUpdate(); void setProgress(); - void updateMainSlide(); + + void updateSezScan(); + void updateSezLog(); + void updateSezVuln(); // Vuln extension void searchVuln(); diff --git a/nmapsi4/mainwin.ui b/nmapsi4/mainwin.ui index d65136b..6a44f6b 100644 --- a/nmapsi4/mainwin.ui +++ b/nmapsi4/mainwin.ui @@ -60,36 +60,6 @@ - - - Qt::Horizontal - - - - - - - - 250 - 30 - - - - false - - - - Scan - - - - - Log - - - - - 0 @@ -168,8 +138,8 @@ 0 0 - 755 - 373 + 860 + 355 @@ -290,6 +260,14 @@ + + + 0 + 0 + 860 + 355 + + :/images/images/viewmag+.png:/images/images/viewmag+.png @@ -347,8 +325,8 @@ 0 0 - 755 - 373 + 860 + 355 @@ -408,8 +386,8 @@ 0 0 - 755 - 408 + 860 + 355 @@ -2134,13 +2112,6 @@ - - - &Help - - - - S&ettings @@ -2170,6 +2141,13 @@ + + + &Help + + + + @@ -2201,12 +2179,11 @@ Qt::ToolButtonTextUnderIcon - RightToolBarArea + TopToolBarArea false - @@ -2231,7 +2208,7 @@ Qt::ToolButtonTextUnderIcon - RightToolBarArea + TopToolBarArea false @@ -2253,7 +2230,7 @@ false - RightToolBarArea + TopToolBarArea false @@ -2275,7 +2252,7 @@ false - RightToolBarArea + TopToolBarArea false @@ -2284,6 +2261,32 @@ + + + true + + + toolBar_3 + + + false + + + + 22 + 22 + + + + Qt::ToolButtonTextUnderIcon + + + RightToolBarArea + + + false + + @@ -2596,6 +2599,16 @@ &Add Bookmark + + + Scan + + + + + Scan + + diff --git a/nmapsi4/ts/nmapsi4_de.ts b/nmapsi4/ts/nmapsi4_de.ts index bb2db91..b007de0 100644 --- a/nmapsi4/ts/nmapsi4_de.ts +++ b/nmapsi4/ts/nmapsi4_de.ts @@ -543,6 +543,14 @@ toolBar_3 + + Nss script result + + + + NSS + + ProfileMain @@ -930,10 +938,6 @@ MS Windows Paket Ersteller: el.diabl09@gmail.com (No Hop Informations) - - Vulnerabilities - - Scan @@ -966,5 +970,25 @@ MS Windows Paket Ersteller: el.diabl09@gmail.com Insert [ip] or [dns] or [ip range] to scan (ip range ex. 192.168.1.10/20 ) + + Scan host(s) + + + + Log + + + + Scan Log + + + + Services + + + + Check Vulnerabilities + + diff --git a/nmapsi4/ts/nmapsi4_es.ts b/nmapsi4/ts/nmapsi4_es.ts index 9c6740d..06a24f2 100644 --- a/nmapsi4/ts/nmapsi4_es.ts +++ b/nmapsi4/ts/nmapsi4_es.ts @@ -4,653 +4,664 @@ MainWindow - - + + Host(s) - + Host(s) Info - + NmapSI4[*] - - - + + + &Quit - - + + Quit - + Ctrl+Q - + &About - - - + + + &Scan - - - - + + + + + Scan - + Ctrl+S - + About &Qt - + &Preferences - + Stop Scan - + Clear History - + Close Tree - + Close Scan Tree - + Clear HostName - + Clear Hostname IP - - + + Save As - - + + Save - + S&ave - + Save &As - + F&ull Screen Mode - + Ctrl+Shift+F11 - + Show &Menu Bar - + Ctrl+M - + Main Toolbar - + Actions Toolbar - + Show Status Bar - - - + + + List(s) - + Error(s) - - + + Log(s) - - + Log - + RPC Scan - + Bounce Host - + Connect Scan - + Ping Sweep - + Host List - + FTP Bounce Attack - + Ports - + Version Probe - + Don't Ping - + Normal - + All - + Most Important - + Range - + OS Detection - + Fragmentation - + Ipv6 - + Ordered Port - + ICMP Echo - + Main - + Vuln - + Service / Os - + + Nss script result + + + + + NSS + + + + Show Scan Parameters - + ICMP TImestamp - - - + + + Port - + UDP Ping - + TCP SYN Ping - + TCP ACK Ping - + ICMP Netmask - + Input File - + Browser - + Scan Profile - + Max. RTT - + Max. Parallel - + Min, RTT - + Min. Parallel - + Scan Delay - + Initial RTT - + Host Timeout - + Ipv4 TTL - + Normal Throttling - + Paranoid Throttling - + Sneaky Throttling - + Polite Throttling - + Aggressive Throttling - + Insane Throttling - + Quiet - + Verbose - + Very Verbose - + Debug - + Verbose Debug - + When Required - + Always - + Never - + DNS Resolution - + Verbosity - + Spoof Address - + Specific Device - + Decoy - + Source Port - + State - + Lookup - + Hop(s) - + Traceroute - + Warning(s) - + Data - + &File - + &Help - + S&ettings - + &View - + Toolbars - + toolBar - + toolBar_2 - - + + + toolBar_3 - + Date - + Open - + Close - + Fi/Unfiltered - + Service - + Search - + Vulnerabilities - + Back - + Forward - + Stop - + securityfocus.com - + cve.miltre.org - + secunia.com - - + + Bookmarks - - + + &Add Bookmark - - + + Delete - + Scan Options - + Host Thread - + Scan Monitor - + &Bookmarks @@ -848,46 +859,48 @@ nmapClass - + No Ports - - + + + No Info - + (No Host Informations) - + (Report: - + (No Errors or Warnings) - + (No scan informations) - + + (No Hop Informations) - + Errors or Warnings: @@ -917,7 +930,7 @@ - + Close @@ -938,7 +951,32 @@ - + + Scan host(s) + + + + + Log + + + + + Scan Log + + + + + Services + + + + + Check Vulnerabilities + + + + No Host Target @@ -1069,7 +1107,7 @@ - + No description @@ -1080,6 +1118,7 @@ + Scan @@ -1103,11 +1142,6 @@ Timing - - - Vulnerabilities - - Wrong Address diff --git a/nmapsi4/ts/nmapsi4_fr.ts b/nmapsi4/ts/nmapsi4_fr.ts index 9c6740d..06a24f2 100644 --- a/nmapsi4/ts/nmapsi4_fr.ts +++ b/nmapsi4/ts/nmapsi4_fr.ts @@ -4,653 +4,664 @@ MainWindow - - + + Host(s) - + Host(s) Info - + NmapSI4[*] - - - + + + &Quit - - + + Quit - + Ctrl+Q - + &About - - - + + + &Scan - - - - + + + + + Scan - + Ctrl+S - + About &Qt - + &Preferences - + Stop Scan - + Clear History - + Close Tree - + Close Scan Tree - + Clear HostName - + Clear Hostname IP - - + + Save As - - + + Save - + S&ave - + Save &As - + F&ull Screen Mode - + Ctrl+Shift+F11 - + Show &Menu Bar - + Ctrl+M - + Main Toolbar - + Actions Toolbar - + Show Status Bar - - - + + + List(s) - + Error(s) - - + + Log(s) - - + Log - + RPC Scan - + Bounce Host - + Connect Scan - + Ping Sweep - + Host List - + FTP Bounce Attack - + Ports - + Version Probe - + Don't Ping - + Normal - + All - + Most Important - + Range - + OS Detection - + Fragmentation - + Ipv6 - + Ordered Port - + ICMP Echo - + Main - + Vuln - + Service / Os - + + Nss script result + + + + + NSS + + + + Show Scan Parameters - + ICMP TImestamp - - - + + + Port - + UDP Ping - + TCP SYN Ping - + TCP ACK Ping - + ICMP Netmask - + Input File - + Browser - + Scan Profile - + Max. RTT - + Max. Parallel - + Min, RTT - + Min. Parallel - + Scan Delay - + Initial RTT - + Host Timeout - + Ipv4 TTL - + Normal Throttling - + Paranoid Throttling - + Sneaky Throttling - + Polite Throttling - + Aggressive Throttling - + Insane Throttling - + Quiet - + Verbose - + Very Verbose - + Debug - + Verbose Debug - + When Required - + Always - + Never - + DNS Resolution - + Verbosity - + Spoof Address - + Specific Device - + Decoy - + Source Port - + State - + Lookup - + Hop(s) - + Traceroute - + Warning(s) - + Data - + &File - + &Help - + S&ettings - + &View - + Toolbars - + toolBar - + toolBar_2 - - + + + toolBar_3 - + Date - + Open - + Close - + Fi/Unfiltered - + Service - + Search - + Vulnerabilities - + Back - + Forward - + Stop - + securityfocus.com - + cve.miltre.org - + secunia.com - - + + Bookmarks - - + + &Add Bookmark - - + + Delete - + Scan Options - + Host Thread - + Scan Monitor - + &Bookmarks @@ -848,46 +859,48 @@ nmapClass - + No Ports - - + + + No Info - + (No Host Informations) - + (Report: - + (No Errors or Warnings) - + (No scan informations) - + + (No Hop Informations) - + Errors or Warnings: @@ -917,7 +930,7 @@ - + Close @@ -938,7 +951,32 @@ - + + Scan host(s) + + + + + Log + + + + + Scan Log + + + + + Services + + + + + Check Vulnerabilities + + + + No Host Target @@ -1069,7 +1107,7 @@ - + No description @@ -1080,6 +1118,7 @@ + Scan @@ -1103,11 +1142,6 @@ Timing - - - Vulnerabilities - - Wrong Address diff --git a/nmapsi4/ts/nmapsi4_it.ts b/nmapsi4/ts/nmapsi4_it.ts index 00354ba..fda525d 100644 --- a/nmapsi4/ts/nmapsi4_it.ts +++ b/nmapsi4/ts/nmapsi4_it.ts @@ -20,145 +20,144 @@ Errori - + Error(s) Errori - - + Log Log - + Ports Porte - + Version Probe Cerca Versione - + Don't Ping No Ping - + Normal Predefinito - + All Tutti - + Most Important Rilevanti - + Range Intervallo - + OS Detection Scopri OS - + Fragmentation Frammentazione - + Ordered Port Porte ordinate - - - + + + Port Porta - + Input File File in Ingresso - + Browser Sfoglia - + Scan Profile Profilo Scansione - + Scan Delay Ritardo Scan - + Initial RTT RTT Iniziale - + Quiet Sintetico - + Verbose Dettagliato - + Very Verbose Completo - + Debug Debug - + Verbose Debug Debug completo - + When Required Se richiesto - + Always Sempre - + Never Mai - + DNS Resolution Risoluzione DNS - + Verbosity Livello dettaglio @@ -187,325 +186,337 @@ &Timing - + &File &File - + &Help &Aiuto - + S&ettings I&mpostazioni - - - + + + &Quit &Esci - - + + Quit Esci - + Ctrl+Q Ctrl+Q - + &About &About - - - + + + &Scan &Scan - + About &Qt About &Qt - + &Preferences &Preferenze - + Stop Scan Ferma Scan - + Clear History Cancella Risultati - + Close Tree Chiudi Albero - + Clear HostName Cancella Host - + Close Scan Tree Chiudi Albero - + Clear Hostname IP Cancella IP Host - - + + Save As Salva con - - + + Save Salva - + Host(s) Info Informazioni sull'host - + S&ave &Salva - + Save &As Salva &come - + NmapSI4[*] - - - - + + + + + Scan - - + + Host(s) - - + + Log(s) Log - + RPC Scan - + Bounce Host - + Connect Scan - + Ping Sweep - + Host List - + FTP Bounce Attack - + Ipv6 - + ICMP Echo - + Main - + Vuln - + Service / Os - + + Nss script result + + + + + NSS + + + + Show Scan Parameters - + ICMP TImestamp - + UDP Ping - + TCP SYN Ping - + TCP ACK Ping - + ICMP Netmask - + Max. RTT - + Max. Parallel - + Min, RTT - + Min. Parallel - + Host Timeout - + Ipv4 TTL - + Normal Throttling - + Paranoid Throttling - + Sneaky Throttling - + Polite Throttling - + Aggressive Throttling - + Insane Throttling - + Spoof Address - + Specific Device - + Decoy - + Source Port - + Lookup - + Hop(s) - + Traceroute - - + + + toolBar_3 @@ -514,187 +525,187 @@ &Altre Opzioni - + &View &Visualizza - + toolBar - + toolBar_2 - + Ctrl+S - + F&ull Screen Mode Modo &tutto schermo - + Ctrl+Shift+F11 - + Show &Menu Bar Mostra barra del &menu - + Ctrl+M - + State - + Warning(s) - + Data - + Toolbars Barra degli strumenti - + Main Toolbar Barra degli strumenti principale - + Actions Toolbar Barra degli strumenti extra - + Show Status Bar Mostra la barra di stato - - - + + + List(s) - + Date - + Open - + Close Chiudi - + Fi/Unfiltered - + Service - + Search - + Vulnerabilities - + Back - + Forward - + Stop - + securityfocus.com - + cve.miltre.org - + secunia.com - - + + Bookmarks - - + + &Add Bookmark - - + + Delete - + Scan Options - + Host Thread - + Scan Monitor - + &Bookmarks @@ -907,7 +918,7 @@ - + Close Chiudi @@ -924,7 +935,7 @@ Scan predefinito - + No Ports Nessuna porta @@ -935,30 +946,32 @@ Nessuna informazione per la scansione - + (No scan informations) - - + + + No Info Nessuna informazione - + (No Host Informations) Nessuna informazione per l'host - + + (No Hop Informations) - + (Report: @@ -977,14 +990,14 @@ Rapporto: , Filtrato/Non filtrato: - + (No Errors or Warnings) Nessun errore o avvertimento - + Errors or Warnings: Errori o avvertimenti: @@ -1074,7 +1087,32 @@ MS Windows Packages: el.diabl09@gmail.com - + + Scan host(s) + + + + + Log + + + + + Scan Log + + + + + Services + + + + + Check Vulnerabilities + + + + No Host Target Nessun host specificato @@ -1182,7 +1220,7 @@ MS Windows Packages: el.diabl09@gmail.com - + No description @@ -1193,6 +1231,7 @@ MS Windows Packages: el.diabl09@gmail.com + Scan @@ -1216,11 +1255,6 @@ MS Windows Packages: el.diabl09@gmail.com Timing - - - Vulnerabilities - - Wrong Address diff --git a/nmapsi4/ts/nmapsi4_pl.ts b/nmapsi4/ts/nmapsi4_pl.ts index 9c6740d..06a24f2 100644 --- a/nmapsi4/ts/nmapsi4_pl.ts +++ b/nmapsi4/ts/nmapsi4_pl.ts @@ -4,653 +4,664 @@ MainWindow - - + + Host(s) - + Host(s) Info - + NmapSI4[*] - - - + + + &Quit - - + + Quit - + Ctrl+Q - + &About - - - + + + &Scan - - - - + + + + + Scan - + Ctrl+S - + About &Qt - + &Preferences - + Stop Scan - + Clear History - + Close Tree - + Close Scan Tree - + Clear HostName - + Clear Hostname IP - - + + Save As - - + + Save - + S&ave - + Save &As - + F&ull Screen Mode - + Ctrl+Shift+F11 - + Show &Menu Bar - + Ctrl+M - + Main Toolbar - + Actions Toolbar - + Show Status Bar - - - + + + List(s) - + Error(s) - - + + Log(s) - - + Log - + RPC Scan - + Bounce Host - + Connect Scan - + Ping Sweep - + Host List - + FTP Bounce Attack - + Ports - + Version Probe - + Don't Ping - + Normal - + All - + Most Important - + Range - + OS Detection - + Fragmentation - + Ipv6 - + Ordered Port - + ICMP Echo - + Main - + Vuln - + Service / Os - + + Nss script result + + + + + NSS + + + + Show Scan Parameters - + ICMP TImestamp - - - + + + Port - + UDP Ping - + TCP SYN Ping - + TCP ACK Ping - + ICMP Netmask - + Input File - + Browser - + Scan Profile - + Max. RTT - + Max. Parallel - + Min, RTT - + Min. Parallel - + Scan Delay - + Initial RTT - + Host Timeout - + Ipv4 TTL - + Normal Throttling - + Paranoid Throttling - + Sneaky Throttling - + Polite Throttling - + Aggressive Throttling - + Insane Throttling - + Quiet - + Verbose - + Very Verbose - + Debug - + Verbose Debug - + When Required - + Always - + Never - + DNS Resolution - + Verbosity - + Spoof Address - + Specific Device - + Decoy - + Source Port - + State - + Lookup - + Hop(s) - + Traceroute - + Warning(s) - + Data - + &File - + &Help - + S&ettings - + &View - + Toolbars - + toolBar - + toolBar_2 - - + + + toolBar_3 - + Date - + Open - + Close - + Fi/Unfiltered - + Service - + Search - + Vulnerabilities - + Back - + Forward - + Stop - + securityfocus.com - + cve.miltre.org - + secunia.com - - + + Bookmarks - - + + &Add Bookmark - - + + Delete - + Scan Options - + Host Thread - + Scan Monitor - + &Bookmarks @@ -848,46 +859,48 @@ nmapClass - + No Ports - - + + + No Info - + (No Host Informations) - + (Report: - + (No Errors or Warnings) - + (No scan informations) - + + (No Hop Informations) - + Errors or Warnings: @@ -917,7 +930,7 @@ - + Close @@ -938,7 +951,32 @@ - + + Scan host(s) + + + + + Log + + + + + Scan Log + + + + + Services + + + + + Check Vulnerabilities + + + + No Host Target @@ -1069,7 +1107,7 @@ - + No description @@ -1080,6 +1118,7 @@ + Scan @@ -1103,11 +1142,6 @@ Timing - - - Vulnerabilities - - Wrong Address diff --git a/nmapsi4/ts/nmapsi4_pt_BR.ts b/nmapsi4/ts/nmapsi4_pt_BR.ts index bddb0d1..a3a19c9 100644 --- a/nmapsi4/ts/nmapsi4_pt_BR.ts +++ b/nmapsi4/ts/nmapsi4_pt_BR.ts @@ -4,7 +4,7 @@ MainWindow - + NmapSI4[*] NmapSI4[*] @@ -17,21 +17,22 @@ 127.0.0.1 - - - - + + + + + Scan Varrer - - + + Host(s) Máquina(s) - + Host(s) Info Info da(s) máquina(s) @@ -40,337 +41,347 @@ Erro - + Error(s) Erro(s) - - + Log Log - - + + Log(s) Log(s) - + RPC Scan Varrer RPC - + Bounce Host Retornar máquina - + Connect Scan Varrer ao conectar - + Ping Sweep Pingar ao varrer - + Host List Listar máquina - + FTP Bounce Attack Retornar ataque FTP - + Ports Portas - + Version Probe Sondar versão - + Don't Ping Não pingar - + Normal Normal - + All Todos - + Most Important Mais importante - + Range Intervalo - + OS Detection Detecção OS - + Fragmentation Fragmentação - + Ipv6 Ipv6 - + Ordered Port Porta ordenada - + ICMP Echo ICMP Echo - + Main - + Vuln - + Service / Os - + + Nss script result + + + + + NSS + + + + Show Scan Parameters - + ICMP TImestamp ICMP Timestamp - - - + + + Port Porta - + UDP Ping Pingar UDP - + TCP SYN Ping Pingar TCP SYNC - + TCP ACK Ping Pingar TCP ACK - + ICMP Netmask Máscara de Rede ICMP - + Input File Arquivo de entrada - + Browser Navegar - + Scan Profile Varrer perfil - + Max. RTT Máx. RTT - + Max. Parallel Máx. paralelo - + Min, RTT Mín. RTT - + Min. Parallel Mín. paralelo - + Scan Delay Retardar varredura - + Initial RTT RTT inicial - + Host Timeout Tempo esgotado da máquina - + Ipv4 TTL Ipv4 TTL - + Normal Throttling Estrangulação normal - + Paranoid Throttling Estrangulação paranódica - + Sneaky Throttling Estrangulação sorrateria - + Polite Throttling Estrangulação cortês - + Aggressive Throttling Estrangulação agressiva - + Insane Throttling Estrangulação insana - + Quiet Silencioso - + Verbose Detalhado - + Very Verbose Muito detalhado - + Debug Depurar - + Verbose Debug Detalhar depuração - + When Required Quando necessário - + Always Sempre - + Never Nunca - + DNS Resolution Resolver DNS - + Verbosity Detalhamento - + Spoof Address Endereçar spoof - + Specific Device Especificar dispostitivo - + Decoy Isca - + Source Port Fonte da porta - + Lookup - + Hop(s) - + Traceroute - - + + + toolBar_3 @@ -395,124 +406,124 @@ &Cronometragem - + &File &Arquivo - + &Help Aj&uda - + S&ettings &Configurações - + toolBar - + toolBar_2 - - - + + + &Quit &Sair - - + + Quit Sair - + Ctrl+Q Ctrl+Q - + &About &Sobre - - - + + + &Scan &Varrer - + Ctrl+S Ctrl+S - + About &Qt Sobre &Qt - + &Preferences &Preferências - + Stop Scan Parar varredura - + Clear History Limpar histórico - + Close Tree Fechar árvore - + Close Scan Tree Fechar árvore da varredura - + Clear HostName Limpar nome da máquina - + Clear Hostname IP Limpar IP da nome da máquina - - + + Save As Salvar como - - + + Save Salvar - + S&ave S&alvar - + Save &As Salvar &como @@ -521,52 +532,52 @@ Mais opçõ&es - + &View Ver - + F&ull Screen Mode Modo &tela cheia - + Ctrl+Shift+F11 Ctrl+Shift+F11 - + Show &Menu Bar Mostrar barra de menu - + Ctrl+M Ctrl+M - + Data - + Toolbars Barra de ferramentas - + Main Toolbar Barra de ferramentas principal - + Actions Toolbar Ações da barra de ferramentas - + Show Status Bar Mostra barra de status @@ -579,122 +590,122 @@ Info do(s) alvo(s) - + Vulnerabilities - - + + Bookmarks - - + + &Add Bookmark - - - + + + List(s) - + Open - + Close Fechar - + Fi/Unfiltered - + Service - - + + Delete - + Date - + State - + Warning(s) - + securityfocus.com - + cve.miltre.org - + secunia.com - + Search - + Back - + Forward - + Stop - + Scan Options - + Host Thread - + Scan Monitor - + &Bookmarks @@ -906,7 +917,7 @@ - + Close Fechar @@ -922,7 +933,7 @@ Varrer normal - + No Ports Sem portas @@ -932,29 +943,31 @@ (Sem informações de varredura) - + (No scan informations) - - + + + No Info Nenhuma informação - + (No Host Informations) (Sem informações da máquina) - + + (No Hop Informations) - + (Report: (Relatar: @@ -972,13 +985,13 @@ , Fi/Não filtrado: - + (No Errors or Warnings) (Nenhum erro ou aviso) - + Errors or Warnings: Erro ou aviso: @@ -1143,7 +1156,32 @@ Pacotes MS Windows: el.diabl09@gmail.com - + + Scan host(s) + + + + + Log + + + + + Scan Log + + + + + Services + + + + + Check Vulnerabilities + + + + No Host Target Nenhuma máquina alvo @@ -1166,6 +1204,7 @@ Pacotes MS Windows: el.diabl09@gmail.com + Scan Varrer @@ -1190,7 +1229,7 @@ Pacotes MS Windows: el.diabl09@gmail.com - + No description @@ -1204,11 +1243,6 @@ Pacotes MS Windows: el.diabl09@gmail.com <b>Mode:</b> - - - Vulnerabilities - - Wrong Address