1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-24 08:29:04 +00:00

o Made a few improvements to nmap.xsl (details:

http://seclists.org/nmap-dev/2009/q1/0210.html) [Tom Sellers]
This commit is contained in:
fyodor
2009-01-28 00:57:57 +00:00
parent a5b73cf906
commit 298d17268e
2 changed files with 18 additions and 3 deletions

View File

@@ -1,5 +1,8 @@
# Nmap Changelog ($Id$); -*-text-*-
o Made a few improvements to nmap.xsl (details:
http://seclists.org/nmap-dev/2009/q1/0210.html) [Tom Sellers]
o A new Zenmap translation: French, contributed by Gutek
o The xampp-default-auth.nse script was renamed to ftp-brute.nse.

View File

@@ -653,16 +653,28 @@
<!-- osfingerprint -->
<!-- ............................................................ -->
<xsl:template match="osfingerprint">
<br /><br />
<li>Cannot determine exact operating system. Fingerprint provided below.</li>
<xsl:choose>
<xsl:when test="count(../osmatch)=0">
<br /><br />
<li>Cannot determine exact operating system. Fingerprint provided below.</li>
<li>If you know what OS is running on it, see http://nmap.org/submit/</li>
</xsl:when>
<xsl:otherwise>
<br /><br />
<li>OS Fingerprint requested at scan time and provided below.</li>
</xsl:otherwise>
</xsl:choose>
<table cellspacing="1">
<tr class="head">
<td>Operating System fingerprint</td>
</tr>
<tr>
<td><xsl:value-of select="@fingerprint" /></td>
<td><pre><xsl:value-of select="@fingerprint" /></pre></td>
</tr>
</table>
</xsl:template>
<!-- ............................................................ -->