mirror of
https://github.com/nmap/nmap.git
synced 2026-01-27 08:39:02 +00:00
Re-indent some scripts. Whitespace-only commit
https://secwiki.org/w/Nmap/Code_Standards
This commit is contained in:
@@ -31,60 +31,60 @@ portrule = shortport.portnumber(3260, "tcp", {"open", "open|filtered"})
|
||||
|
||||
Driver = {
|
||||
|
||||
new = function(self, host, port)
|
||||
local o = {}
|
||||
setmetatable(o, self)
|
||||
self.__index = self
|
||||
o.host = host
|
||||
o.port = port
|
||||
o.target = stdnse.get_script_args('iscsi-brute.target')
|
||||
return o
|
||||
end,
|
||||
new = function(self, host, port)
|
||||
local o = {}
|
||||
setmetatable(o, self)
|
||||
self.__index = self
|
||||
o.host = host
|
||||
o.port = port
|
||||
o.target = stdnse.get_script_args('iscsi-brute.target')
|
||||
return o
|
||||
end,
|
||||
|
||||
connect = function( self )
|
||||
self.helper = iscsi.Helper:new( self.host, self.port )
|
||||
return self.helper:connect()
|
||||
end,
|
||||
connect = function( self )
|
||||
self.helper = iscsi.Helper:new( self.host, self.port )
|
||||
return self.helper:connect()
|
||||
end,
|
||||
|
||||
login = function( self, username, password )
|
||||
local status = self.helper:login( self.target, username, password, "CHAP")
|
||||
login = function( self, username, password )
|
||||
local status = self.helper:login( self.target, username, password, "CHAP")
|
||||
|
||||
if ( status ) then
|
||||
return true, brute.Account:new(username, password, creds.State.VALID)
|
||||
end
|
||||
if ( status ) then
|
||||
return true, brute.Account:new(username, password, creds.State.VALID)
|
||||
end
|
||||
|
||||
return false, brute.Error:new( "Incorrect password" )
|
||||
end,
|
||||
return false, brute.Error:new( "Incorrect password" )
|
||||
end,
|
||||
|
||||
disconnect = function( self )
|
||||
self.helper:close()
|
||||
end,
|
||||
disconnect = function( self )
|
||||
self.helper:close()
|
||||
end,
|
||||
}
|
||||
|
||||
|
||||
action = function( host, port )
|
||||
|
||||
local target = stdnse.get_script_args('iscsi-brute.target')
|
||||
if ( not(target) ) then
|
||||
return "ERROR: No target specified (see iscsi-brute.target)"
|
||||
end
|
||||
local target = stdnse.get_script_args('iscsi-brute.target')
|
||||
if ( not(target) ) then
|
||||
return "ERROR: No target specified (see iscsi-brute.target)"
|
||||
end
|
||||
|
||||
local helper = iscsi.Helper:new( host, port )
|
||||
local status, err = helper:connect()
|
||||
if ( not(status) ) then return false, "Failed to connect" end
|
||||
local helper = iscsi.Helper:new( host, port )
|
||||
local status, err = helper:connect()
|
||||
if ( not(status) ) then return false, "Failed to connect" end
|
||||
|
||||
local response
|
||||
status, response = helper:login( target )
|
||||
helper:logout()
|
||||
helper:close()
|
||||
local response
|
||||
status, response = helper:login( target )
|
||||
helper:logout()
|
||||
helper:close()
|
||||
|
||||
if ( status ) then return "No authentication required" end
|
||||
if ( status ) then return "No authentication required" end
|
||||
|
||||
local accounts
|
||||
local accounts
|
||||
|
||||
local engine = brute.Engine:new(Driver, host, port)
|
||||
engine.options.script_name = SCRIPT_NAME
|
||||
status, accounts = engine:start()
|
||||
local engine = brute.Engine:new(Driver, host, port)
|
||||
engine.options.script_name = SCRIPT_NAME
|
||||
status, accounts = engine:start()
|
||||
|
||||
if ( status ) then return accounts end
|
||||
if ( status ) then return accounts end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user