aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2004-12-23 00:40:05 +0000
committerScott Ullrich <sullrich@pfsense.org>2004-12-23 00:40:05 +0000
commite6efd87ed48ed7bae8e46deca200cfc993dfc307 (patch)
tree032248ec21b2e735fe9ed26b93aad028e4e354c1 /packages
parent7018ff573be7ce6f0b643486549678cb3766c9cd (diff)
downloadpfsense-packages-e6efd87ed48ed7bae8e46deca200cfc993dfc307.tar.gz
pfsense-packages-e6efd87ed48ed7bae8e46deca200cfc993dfc307.tar.bz2
pfsense-packages-e6efd87ed48ed7bae8e46deca200cfc993dfc307.zip
Correct scanning typo.
Diffstat (limited to 'packages')
-rw-r--r--packages/nmap.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/nmap.xml b/packages/nmap.xml
index d92cf5c1..7aeee6f2 100644
--- a/packages/nmap.xml
+++ b/packages/nmap.xml
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?>
<packagegui>
<name>nmap</name>
- <donotsave>true</donotsave>
- <preoutput>yes</preoutput>
- <savetext>Scan</savetext>
+ <donotsave>true</donotsave>
+ <preoutput>yes</preoutput>
+ <savetext>Scan</savetext>
<!-- Menu is where this packages menu will appear -->
<menu>
<name>NMap</name>
@@ -42,7 +42,7 @@
</field>
<field>
<fielddescr>-P0</fielddescr>
- <typehint>Do not try to ping hosts at all before scanning them.</typehint>
+ <typehint>Do not try to ping hosts at all before scanning them.</typehint>
<fieldname>noping</fieldname>
<description>This allows the scanning of networks that don't allow ICMP echo requests (or responses) through their firewall. microsoft.com is an example of such a network, and thus you should always use -P0 or -PT80 when portscanning microsoft.com. Note tht "ping" in this contect may involve more than the traditional ICMP echo request packet. Nmap supports many such probes, including arbi- trary combinations of TCP, UDP, and ICMP probes. By default, Nmap sends an ICMP echo request and a TCP ACK packet to port 80.</description>
<type>checkbox</type>
@@ -51,7 +51,7 @@
<custom_add_php_command>
$nmap_options = "";
if($_POST['option'] == "-sT: TCP connect() scan.") $nmap_options .= " -sT";
- if($_POST['option'] == "-sP: Ping canning") $nmap_options .= " -sP";
+ if($_POST['option'] == "-sP: Ping scanning") $nmap_options .= " -sP";
if($_POST['option'] == "-sU: UDP Scanning") $nmap_options .= " -sU";
if($_POST['noping']) $nmap_options .= " -P0";
$nmap_options .= " " . $_POST['hostname'];