1
0
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:
perdo
2012-07-09 13:32:32 +00:00
parent 1498f9ce7a
commit bcdb303a2b

View File

@@ -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