mirror of
https://github.com/nmap/nmap.git
synced 2025-12-14 19:59: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 stdnse = require "stdnse"
|
||||
local string = require "string"
|
||||
local table = require "table"
|
||||
|
||||
description=[[
|
||||
Performs brute force password auditing against IRC (Internet Relay Chat) servers supporting SASL authentication.
|
||||
@@ -69,7 +70,7 @@ Driver = {
|
||||
end
|
||||
local status, _ = s:send("CAP END\r\n")
|
||||
if not status then return false, "Send failed." end
|
||||
local reponse
|
||||
local response
|
||||
repeat
|
||||
status, response = s:receive_lines(1)
|
||||
if not status then return false, "Receive failed." end
|
||||
|
||||
Reference in New Issue
Block a user