mirror of
https://github.com/nmap/nmap.git
synced 2025-12-30 11:29:01 +00:00
Spellcheck: common misspellings in the entire source tree
This commit is contained in:
@@ -29,7 +29,7 @@ Performs password guessing against Apple Filing Protocol (AFP).
|
||||
-- Snow Leopard
|
||||
-- ------------
|
||||
-- - Delay 10 seconds for accounts with more than 5 incorrect login attempts (good)
|
||||
-- - Instant response if password is successfull
|
||||
-- - Instant response if password is successful
|
||||
--
|
||||
-- Netatalk
|
||||
-- --------
|
||||
|
||||
@@ -18,8 +18,8 @@ Attempts to discover valid IBM Lotus Domino users and download their ID files by
|
||||
-- 1352/tcp open lotusnotes
|
||||
-- | domino-enum-users:
|
||||
-- | User "Patrik Karlsson" found, but not ID file could be downloaded
|
||||
-- | Succesfully stored "FFlintstone" in /tmp/FFlintstone.id
|
||||
-- |_ Succesfully stored "MJacksson" in /tmp/MJacksson.id
|
||||
-- | Successfully stored "FFlintstone" in /tmp/FFlintstone.id
|
||||
-- |_ Successfully stored "MJacksson" in /tmp/MJacksson.id
|
||||
--
|
||||
--
|
||||
-- @args domino-id.path the location to which any retrieved ID files are stored
|
||||
@@ -107,13 +107,13 @@ action = function(host, port)
|
||||
local status, err = saveIDFile( filename, data )
|
||||
|
||||
if ( status ) then
|
||||
table.insert(result, ("Succesfully stored \"%s\" in %s"):format(username, filename) )
|
||||
table.insert(result, ("Successfully stored \"%s\" in %s"):format(username, filename) )
|
||||
else
|
||||
stdnse.print_debug( err )
|
||||
table.insert(result, ("Failed to store \"%s\" to %s"):format(username, filename) )
|
||||
end
|
||||
elseif( status and data ) then
|
||||
table.insert(result, ("Succesfully retrieved ID for \"%s\" (to store set the domino-enum-users.path argument)"):format(username) )
|
||||
table.insert(result, ("Successfully retrieved ID for \"%s\" (to store set the domino-enum-users.path argument)"):format(username) )
|
||||
elseif ( status ) then
|
||||
table.insert(result, ("User \"%s\" found, but no ID file could be downloaded"):format(username) )
|
||||
end
|
||||
|
||||
@@ -163,7 +163,7 @@ action = function( host, port )
|
||||
threads[co] = true
|
||||
end
|
||||
|
||||
-- wait for all threads to finnish running
|
||||
-- wait for all threads to finish running
|
||||
while threadCount(threads)>0 do
|
||||
condvar("wait")
|
||||
end
|
||||
|
||||
@@ -122,7 +122,7 @@ end
|
||||
-- @return true on valid access, false on failure
|
||||
local function isValidCredential( host, port, path, user, pass )
|
||||
-- we need to supply the no_cache directive, or else the http library
|
||||
-- incorrectly tells us that the authentication was successfull
|
||||
-- incorrectly tells us that the authentication was successful
|
||||
local result = http.get( host, port, path, { auth = { username = user, password = pass }, no_cache = true })
|
||||
|
||||
if ( result.status == 401 ) then
|
||||
|
||||
@@ -45,7 +45,7 @@ payload in the comment.
|
||||
-- 80/tcp open http syn-ack
|
||||
-- | Testing page /post.html
|
||||
-- |
|
||||
-- | Succesfully uploaded and executed payloads:
|
||||
-- | Successfully uploaded and executed payloads:
|
||||
-- | Filename: 1.php, MIME: text/plain
|
||||
-- |_ Filename: 1.php3, MIME: text/plain
|
||||
---
|
||||
@@ -152,7 +152,7 @@ end
|
||||
local makeAndCheckRequests = function(uploadspaths)
|
||||
|
||||
local exit = 0
|
||||
local output = {"Succesfully uploaded and executed payloads: "}
|
||||
local output = {"Successfully uploaded and executed payloads: "}
|
||||
|
||||
for i=1, #listofrequests, 1 do
|
||||
listofrequests[i]:make()
|
||||
|
||||
@@ -104,7 +104,7 @@ Driver = {
|
||||
|
||||
login = function( self, username, password )
|
||||
-- we need to supply the no_cache directive, or else the http library
|
||||
-- incorrectly tells us that the authentication was successfull
|
||||
-- incorrectly tells us that the authentication was successful
|
||||
local postparams = { [self.options.passvar] = password }
|
||||
if ( self.options.uservar ) then postparams[self.options.uservar] = username end
|
||||
|
||||
|
||||
@@ -89,7 +89,7 @@ end
|
||||
-- Seconde: Request to wikipedia.org and checks for wikimedia pattern
|
||||
-- Third: Request to computerhistory.org and checks for museum pattern
|
||||
--
|
||||
-- If any of the requests is succesful, the proxy is considered open
|
||||
-- If any of the requests is successful, the proxy is considered open
|
||||
-- If all get requests return the same result, the user is alerted that
|
||||
-- the proxy might be redirecting his requests (very common on wi-fi
|
||||
-- connections at airports, cafes, etc.)
|
||||
|
||||
@@ -407,7 +407,7 @@ function check(status, response, track)
|
||||
-- NoOp
|
||||
elseif err == 1 then
|
||||
fail = true
|
||||
msg = 'Incompatable Implementation Number'
|
||||
msg = 'Incompatible Implementation Number'
|
||||
elseif err == 2 then
|
||||
fail = true
|
||||
msg = 'Unimplemented Request Code'
|
||||
|
||||
Reference in New Issue
Block a user