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

Convert some file encodings from ISO-8859-2 to UTF-8

https://secwiki.org/w/Nmap/Code_Standards
This commit is contained in:
dmiller
2014-02-12 19:49:43 +00:00
parent c9fe124e3d
commit 2896c21989
6 changed files with 7 additions and 7 deletions

View File

@@ -5,7 +5,7 @@
/* /*
* Copyright (c) 1995-1999 Kungliga Tekniska H<EFBFBD>gskolan * Copyright (c) 1995-1999 Kungliga Tekniska Högskolan
* (Royal Institute of Technology, Stockholm, Sweden). * (Royal Institute of Technology, Stockholm, Sweden).
* All rights reserved. * All rights reserved.
* *

View File

@@ -12,7 +12,7 @@
-- --
-- @class module -- @class module
-- @name strict -- @name strict
-- @copyright Copyright© Same as Nmap--See http://nmap.org/book/man-legal.html -- @copyright Same as Nmap--See http://nmap.org/book/man-legal.html
local debug = require "debug" local debug = require "debug"

View File

@@ -57,9 +57,9 @@
-- o Oracle 11g TNS AES-192 authentication details (Massimiliano Montoro) -- o Oracle 11g TNS AES-192 authentication details (Massimiliano Montoro)
-- x http://www.oxid.it/downloads/oracle_tns_aes192_check.txt -- x http://www.oxid.it/downloads/oracle_tns_aes192_check.txt
-- o Initial analysis of Oracle native authentication version 11g -- o Initial analysis of Oracle native authentication version 11g
-- (L<EFBFBD>szl<EFBFBD> T<EFBFBD>th) -- (László Tóth)
-- x http://www.soonerorlater.hu/index.khtml?article_id=512 -- x http://www.soonerorlater.hu/index.khtml?article_id=512
-- o Oracle native authentication version 9i and 10g (L<EFBFBD>szl<EFBFBD> T<EFBFBD>th) -- o Oracle native authentication version 9i and 10g (László Tóth)
-- x http://www.soonerorlater.hu/index.khtml?article_id=511 -- x http://www.soonerorlater.hu/index.khtml?article_id=511
-- --
-- This implementation is tested and known to work against Oracle 10g and 11g -- This implementation is tested and known to work against Oracle 10g and 11g

View File

@@ -82,7 +82,7 @@ end
local areaIPs = { local areaIPs = {
A4 = {ip=47763456, desc="GB,A4,Bath"}, A4 = {ip=47763456, desc="GB,A4,Bath"},
A5 = {ip=1043402336, desc="GB,A5,Biggleswade"}, A5 = {ip=1043402336, desc="GB,A5,Biggleswade"},
A6 = {ip=1364222182, desc="FR,A6,Ch<EFBFBD>vremont"}, A6 = {ip=1364222182, desc="FR,A6,Chèvremont"},
A7 = {ip=35357952, desc="GB,A7,Birmingham"}, A7 = {ip=35357952, desc="GB,A7,Birmingham"},
A8 = {ip=1050694009, desc="FR,A8,Romainville"}, A8 = {ip=1050694009, desc="FR,A8,Romainville"},
A9 = {ip=534257152, desc="FR,A9,Montpellier"}, A9 = {ip=534257152, desc="FR,A9,Montpellier"},

View File

@@ -14,7 +14,7 @@ authentication enabled.
By sending a HTTP NTLM authentication request with null domain and user By sending a HTTP NTLM authentication request with null domain and user
credentials (passed in the 'Authorization' header), the remote service will credentials (passed in the 'Authorization' header), the remote service will
respond with a NTLMSSP message (encoded within the WWW-Authenticate header) respond with a NTLMSSP message (encoded within the 'WWW-Authenticate' header)
and disclose information to include NetBIOS, DNS, and OS build version if and disclose information to include NetBIOS, DNS, and OS build version if
available. available.
]] ]]

View File

@@ -55,7 +55,7 @@ result in a large number of accounts being locked out on the database server.
-- - oracle-brute.sid argument -- - oracle-brute.sid argument
-- Revised 07/25/2011 - v0.3 - added support for guessing default accounts -- Revised 07/25/2011 - v0.3 - added support for guessing default accounts
-- changed code to use ConnectionPool -- changed code to use ConnectionPool
-- Revised 03/13/2012 - v0.4 - revised by L<EFBFBD>szl<EFBFBD> T<EFBFBD>th -- Revised 03/13/2012 - v0.4 - revised by László Tóth
-- added support for SYSDBA accounts -- added support for SYSDBA accounts
-- Revised 08/07/2012 - v0.5 - revised to suit the changes in brute -- Revised 08/07/2012 - v0.5 - revised to suit the changes in brute
-- library [Aleksandar Nikolic] -- library [Aleksandar Nikolic]