Class: Nmap::Host

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/nmap/host.rb

Instance Method Summary collapse

Constructor Details

#initialize(node) {|host| ... } ⇒ Host

Creates a new Host object.

Parameters:

  • node (Nokogiri::XML::Node)

    The XML node that contains the host information.

Yields:

  • (host)

    If a block is given, it will be passed the newly created Host object.

Yield Parameters:

  • host (Host)

    The newly created Host object.



29
30
31
32
33
# File 'lib/nmap/host.rb', line 29

def initialize(node)
  @node = node

  yield self if block_given?
end

Instance Method Details

#addressString

The address of the host.

Returns:

  • (String)

    The IP or MAC address of the host.



180
181
182
# File 'lib/nmap/host.rb', line 180

def address
  ip || mac
end

#addressesArray<Host>

Parses the addresses of the host.

Returns:

  • (Array<Host>)

    The addresses of the host.



112
113
114
# File 'lib/nmap/host.rb', line 112

def addresses
  each_address.to_a
end

#each(&block) ⇒ Object

Parses the open ports of the host.

See Also:



423
424
425
# File 'lib/nmap/host.rb', line 423

def each(&block)
  each_open_port(&block)
end

#each_address {|addr| ... } ⇒ Host, Enumerator

Parses each address of the host.

Yields:

  • (addr)

    Each parsed address will be pass to a given block.

Yield Parameters:

  • addr (Address)

    A address of the host.

Returns:

  • (Host, Enumerator)

    The host. If no block was given, an enumerator will be returned.



91
92
93
94
95
96
97
98
99
100
101
102
103
104
# File 'lib/nmap/host.rb', line 91

def each_address
  return enum_for(:each_address) unless block_given?

  @node.xpath("address[@addr]").each do |addr|
    address = Address.new(
      addr['addrtype'].to_sym,
      addr['addr']
    )

    yield address
  end

  return self
end

#each_hostname {|host| ... } ⇒ Host, Enumerator

Parses the hostnames of the host.

Yields:

  • (host)

    Each parsed hostname will be passed to the given block.

Yield Parameters:

  • host (String)

    A hostname of the host.

Returns:

  • (Host, Enumerator)

    The host. If no block was given, an enumerator will be returned.



197
198
199
200
201
202
203
204
205
# File 'lib/nmap/host.rb', line 197

def each_hostname
  return enum_for(:each_hostname) unless block_given?

  @node.xpath("hostnames/hostname[@name]").each do |host|
    yield host['name']
  end

  return self
end

#each_open_port {|port| ... } ⇒ Host, Enumerator

Parses the open ports of the host.

Yields:

  • (port)

    Each open port of the host.

Yield Parameters:

  • port (Port)

    An open scanned port of the host.

Returns:

  • (Host, Enumerator)

    The host. If no block was given, an enumerator will be returned.



332
333
334
335
336
337
338
339
340
# File 'lib/nmap/host.rb', line 332

def each_open_port(&block)
  return enum_for(:each_open_port) unless block_given?

  @node.xpath("ports/port[state/@state='open']").each do |port|
    yield Port.new(port)
  end

  return self
end

#each_port {|port| ... } ⇒ Host, Enumerator

Parses the scanned ports of the host.

Yields:

  • (port)

    Each scanned port of the host.

Yield Parameters:

  • port (Port)

    A scanned port of the host.

Returns:

  • (Host, Enumerator)

    The host. If no block was given, an enumerator will be returned.



299
300
301
302
303
304
305
306
307
# File 'lib/nmap/host.rb', line 299

def each_port
  return enum_for(:each_port) unless block_given?

  @node.xpath("ports/port").each do |port|
    yield Port.new(port)
  end

  return self
end

#each_tcp_port {|port| ... } ⇒ Host, Enumerator

Parses the TCP ports of the host.

Yields:

  • (port)

    Each TCP port of the host.

Yield Parameters:

  • port (Port)

    An TCP scanned port of the host.

Returns:

  • (Host, Enumerator)

    The host. If no block was given, an enumerator will be returned.



365
366
367
368
369
370
371
372
373
# File 'lib/nmap/host.rb', line 365

def each_tcp_port
  return enum_for(:each_tcp_port) unless block_given?

  @node.xpath("ports/port[@protocol='tcp']").each do |port|
    yield Port.new(port)
  end

  return self
end

#each_udp_port {|port| ... } ⇒ Host, Enumerator

Parses the UDP ports of the host.

Yields:

  • (port)

    Each UDP port of the host.

Yield Parameters:

  • port (Port)

    An UDP scanned port of the host.

Returns:

  • (Host, Enumerator)

    The host. If no block was given, an enumerator will be returned.



398
399
400
401
402
403
404
405
406
# File 'lib/nmap/host.rb', line 398

def each_udp_port
  return enum_for(:each_udp_port) unless block_given?

  @node.xpath("ports/port[@protocol='udp']").each do |port|
    yield Port.new(port)
  end

  return self
end

#end_timeTime

The time the host was last scanned.

Returns:

  • (Time)

    The time the host was last scanned.

Since:

  • 0.1.2



55
56
57
# File 'lib/nmap/host.rb', line 55

def end_time
  @end_time ||= Time.at(@node['endtime'].to_i)
end

#hostnamesArray<String>

Parses the hostnames of the host.

Returns:

  • (Array<String>)

    The hostnames of the host.



213
214
215
# File 'lib/nmap/host.rb', line 213

def hostnames
  each_hostname.to_a
end

#ipString

The IP address of the host.

Returns:

  • (String)

    The IPv4 or IPv6 address of the host.



170
171
172
# File 'lib/nmap/host.rb', line 170

def ip
  ipv6 || ipv4
end

#ipidsequence {|ipidsequence| ... } ⇒ IpidSequence

Parses the IPID sequence number analysis of the host.

Yields:

  • (ipidsequence)

    If a block is given, it will be passed the resulting object

Yield Parameters:

  • ipidsequence (IpidSequence)

    IPID Sequence number analysis.

Returns:



263
264
265
266
267
# File 'lib/nmap/host.rb', line 263

def ipidsequence(&block)
  if (seq = @node.at('ipidsequence'))
    @ipidsequence = IpidSequence.new(seq,&block)
  end
end

#ipv4String

Parses the IPv4 address of the host.

Returns:

  • (String)

    The IPv4 address of the host.



138
139
140
141
142
143
144
145
146
# File 'lib/nmap/host.rb', line 138

def ipv4
  unless @ipv4
    addr = @node.xpath("address[@addr][@addrtype='ipv4']").first

    @ipv4 = addr['addr'] if addr
  end

  return @ipv4
end

#ipv6String

Parses the IPv6 address of the host.

Returns:

  • (String)

    The IPv6 address of the host.



154
155
156
157
158
159
160
161
162
# File 'lib/nmap/host.rb', line 154

def ipv6
  unless @ipv6
    addr = @node.xpath("address[@addr][@addrtype='ipv6']").first

    @ipv6 = addr['addr'] if addr
  end

  return @ipv6
end

#macString

Parses the MAC address of the host.

Returns:

  • (String)

    The MAC address of the host.



122
123
124
125
126
127
128
129
130
# File 'lib/nmap/host.rb', line 122

def mac
  unless @mac
    addr = @node.xpath("address[@addr][@addrtype='mac']").first

    @mac = addr['addr'] if addr
  end

  return @mac
end

#open_portsArray<Port>

Parses the open ports of the host.

Returns:

  • (Array<Port>)

    The open ports of the host.



348
349
350
# File 'lib/nmap/host.rb', line 348

def open_ports
  each_open_port.to_a
end

#os {|os| ... } ⇒ OS

Parses the OS guessing information of the host.

Yields:

  • (os)

    If a block is given, it will be passed the OS guessing information.

Yield Parameters:

  • os (OS)

    The OS guessing information.

Returns:

  • (OS)

    The OS guessing information.



229
230
231
232
233
# File 'lib/nmap/host.rb', line 229

def os(&block)
  if (os = @node.at('os'))
    @os = OS.new(os,&block)
  end
end

#portsArray<Port>

Parses the scanned ports of the host.

Returns:

  • (Array<Port>)

    The scanned ports of the host.



315
316
317
# File 'lib/nmap/host.rb', line 315

def ports
  each_port.to_a
end

#scriptsHash{String => String}

The output from the NSE scripts ran against the host.

Returns:

  • (Hash{String => String})

    The NSE script names and output.

Since:

  • 0.3.0



435
436
437
438
439
440
441
442
443
444
445
# File 'lib/nmap/host.rb', line 435

def scripts
  unless @scripts
    @scripts = {}

    @node.xpath('hostscript/script').each do |script|
      @scripts[script['id']] = script['output']
    end
  end

  return @scripts
end

#start_timeTime

The time the host was first scanned.

Returns:

  • (Time)

    The time the host was first scanned.

Since:

  • 0.1.2



43
44
45
# File 'lib/nmap/host.rb', line 43

def start_time
  @start_time ||= Time.at(@node['starttime'].to_i)
end

#statusStatus

Parses the status of the host.

Returns:

  • (Status)

    The status of the host.



65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/nmap/host.rb', line 65

def status
  unless @status
    status = @node.at('status')

    @status = Status.new(
      status['state'].to_sym,
      status['reason']
    )
  end

  return @status
end

#tcp_portsArray<Port>

Parses the TCP ports of the host.

Returns:

  • (Array<Port>)

    The TCP ports of the host.



381
382
383
# File 'lib/nmap/host.rb', line 381

def tcp_ports
  each_tcp_port.to_a
end

#tcpsequence {|tcpsequence| ... } ⇒ TcpSequence

Parses the Tcp Sequence number analysis of the host.

Yields:

  • (tcpsequence)

    If a block is given, it will be passed the resulting object

Yield Parameters:

  • tcpsequence (TcpSequence)

    Tcp Sequence number analysis.

Returns:



246
247
248
249
250
# File 'lib/nmap/host.rb', line 246

def tcpsequence(&block)
  if (seq = @node.at('tcpsequence'))
    @tcpsequence = TcpSequence.new(seq,&block)
  end
end

#tcptssequence {|tcptssequence| ... } ⇒ TcpTsSequence

Parses the TCP Timestamp sequence number analysis of the host.

Yields:

  • (tcptssequence)

    If a block is given, it will be passed the resulting object

Yield Parameters:

  • tcptssequence (TcpTsSequence)

    TCP Timestamp Sequence number analysis.

Returns:



280
281
282
283
284
# File 'lib/nmap/host.rb', line 280

def tcptssequence(&block)
  if (seq = @node.at('tcptssequence'))
    @tcptssequence = TcpTsSequence.new(seq,&block)
  end
end

#to_sString

Converts the host to a String.

Returns:

  • (String)

    The address of the host.

See Also:



455
456
457
# File 'lib/nmap/host.rb', line 455

def to_s
  address.to_s
end

#udp_portsArray<Port>

Parses the UDP ports of the host.

Returns:

  • (Array<Port>)

    The UDP ports of the host.



414
415
416
# File 'lib/nmap/host.rb', line 414

def udp_ports
  each_udp_port.to_a
end