1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-09 06:01:28 +00:00

Moved the definition for the 'displayall' argument into http.lua.

This commit is contained in:
ron
2009-08-23 00:24:23 +00:00
parent 77e7738545
commit cf33de55f3
2 changed files with 6 additions and 3 deletions

View File

@@ -14,6 +14,12 @@
-- concatenated and separated by commas. The <code>body</code> value is a string
-- containing the body of the HTTP response.
-- @copyright Same as Nmap--See http://nmap.org/book/man-legal.html
--
--@args displayall Set to '1' or 'true' to treat status codes other than 200 OK and
-- 401 Authentication Required as valid pages. This is generally honoured
-- by scripts that search for valid pages, such as http-enum.nse and
-- http-userdir-enum.nse. Enabling this will create a lot of false positives.
module(... or "http",package.seeall)

View File

@@ -31,9 +31,6 @@ for 404 Not Found and the status code returned by the random files).
-- |_ /x_logo.gif Xerox Phaser Printer
--
--
--@args displayall Set to '1' or 'true' to display all status codes that may indicate a valid page, not just
-- "200 OK" and "401 Authentication Required" pages. Although this is more likely to find certain
-- hidden folders, it also generates far more false positives.
--@args limit Limit the number of folders to check. This option is useful if using a list from, for example,
-- the DirBuster projects which can have 80,000+ entries.