mirror of
https://github.com/nmap/nmap.git
synced 2026-05-14 01:07:08 +00:00
Added an unrequired library and fixed a typo.
This commit is contained in:
parent
1498f9ce7a
commit
bcdb303a2b
1 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue