mirror of
https://github.com/nmap/nmap.git
synced 2025-12-16 12:49:02 +00:00
Added an unrequired library and fixed a typo.
This commit is contained in:
@@ -6,6 +6,7 @@ local sasl = require "sasl"
|
|||||||
local shortport = require "shortport"
|
local shortport = require "shortport"
|
||||||
local stdnse = require "stdnse"
|
local stdnse = require "stdnse"
|
||||||
local string = require "string"
|
local string = require "string"
|
||||||
|
local table = require "table"
|
||||||
|
|
||||||
description=[[
|
description=[[
|
||||||
Performs brute force password auditing against IRC (Internet Relay Chat) servers supporting SASL authentication.
|
Performs brute force password auditing against IRC (Internet Relay Chat) servers supporting SASL authentication.
|
||||||
@@ -69,7 +70,7 @@ Driver = {
|
|||||||
end
|
end
|
||||||
local status, _ = s:send("CAP END\r\n")
|
local status, _ = s:send("CAP END\r\n")
|
||||||
if not status then return false, "Send failed." end
|
if not status then return false, "Send failed." end
|
||||||
local reponse
|
local response
|
||||||
repeat
|
repeat
|
||||||
status, response = s:receive_lines(1)
|
status, response = s:receive_lines(1)
|
||||||
if not status then return false, "Receive failed." end
|
if not status then return false, "Receive failed." end
|
||||||
|
|||||||
Reference in New Issue
Block a user