From 26bec9be41f3267ea4851b4a646a7455e5f3a3f5 Mon Sep 17 00:00:00 2001 From: paulino Date: Sat, 30 Jul 2016 21:58:56 +0000 Subject: [PATCH] Fixes incorrect argument name in documentation --- scripts/http-methods.nse | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/http-methods.nse b/scripts/http-methods.nse index 91ffea5d1..93f78b322 100644 --- a/scripts/http-methods.nse +++ b/scripts/http-methods.nse @@ -27,14 +27,14 @@ only the potentially risky methods are shown. ]] --- --- @args http.url-path The path to request. Defaults to +-- @args http-methods.url-path The path to request. Defaults to -- /. --- @args http.retest If defined, do a request using each method +-- @args http-methods.retest If defined, do a request using each method -- individually and show the response code. Use of this argument can -- make this script unsafe; for example DELETE / is -- possible. All methods received through options are tested with generic -- requests. Saved status lines are shown for rest. --- @args http.test-all If set true tries all the unsafe methods as well. +-- @args http-methods.test-all If set true tries all the unsafe methods as well. -- -- @output -- PORT STATE SERVICE REASON @@ -44,7 +44,7 @@ only the potentially risky methods are shown. -- -- @usage -- nmap --script http-methods --- nmap --script http-methods --script-args http.url-path='/website' +-- nmap --script http-methods --script-args http-methods.url-path='/website' -- -- @xmloutput --