Class: Nmap::Host

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

Overview

Wraps a host XML element.

Instance Method Summary collapse

Constructor Details

#initialize(node) ⇒ Host

Creates a new Host object.

Parameters:

  • node (Nokogiri::XML::Node)

    The XML node that contains the host information.



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

def initialize(node)
  @node = node
end

Instance Method Details

#addressString

The address of the host.

Returns:

  • (String)

    The IP or MAC address of the host.



166
167
168
# File 'lib/nmap/host.rb', line 166

def address
  ip || mac
end

#addressesArray<Host>

Parses the addresses of the host.

Returns:

  • (Array<Host>)

    The addresses of the host.



110
111
112
# File 'lib/nmap/host.rb', line 110

def addresses
  each_address.to_a
end

#each(&block) ⇒ Object

Parses the open ports of the host.

See Also:



477
478
479
# File 'lib/nmap/host.rb', line 477

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.



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

def each_address
  return enum_for(__method__) 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 (Hostname)

    A hostname of the host.

Returns:

  • (Host, Enumerator)

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



183
184
185
186
187
188
189
190
191
# File 'lib/nmap/host.rb', line 183

def each_hostname
  return enum_for(__method__) unless block_given?

  @node.xpath("hostnames/hostname[@name]").each do |host|
    yield Hostname.new(host['type'],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.



386
387
388
389
390
391
392
393
394
# File 'lib/nmap/host.rb', line 386

def each_open_port
  return enum_for(__method__) 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.



353
354
355
356
357
358
359
360
361
# File 'lib/nmap/host.rb', line 353

def each_port
  return enum_for(__method__) 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.



419
420
421
422
423
424
425
426
427
# File 'lib/nmap/host.rb', line 419

def each_tcp_port
  return enum_for(__method__) 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.



452
453
454
455
456
457
458
459
460
# File 'lib/nmap/host.rb', line 452

def each_udp_port
  return enum_for(__method__) 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



53
54
55
# File 'lib/nmap/host.rb', line 53

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

#hostnamesArray<Hostname>

Parses the hostnames of the host.

Returns:

  • (Array<Hostname>)

    The hostnames of the host.



199
200
201
# File 'lib/nmap/host.rb', line 199

def hostnames
  each_hostname.to_a
end

#inspectString

Inspects the host.

Returns:

  • (String)

    The inspected host.



542
543
544
# File 'lib/nmap/host.rb', line 542

def inspect
  "#<#{self.class}: #{self}>"
end

#ipString

The IP address of the host.

Returns:

  • (String)

    The IPv4 or IPv6 address of the host.



156
157
158
# File 'lib/nmap/host.rb', line 156

def ip
  ipv6 || ipv4
end

#ip_id_sequence {|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:



292
293
294
295
296
297
298
299
# File 'lib/nmap/host.rb', line 292

def ip_id_sequence
  @ip_id_sequence ||= if (seq = @node.at('ipidsequence'))
                        IpIdSequence.new(seq)
                      end

  yield @ip_id_sequence if (@ip_id_sequence && block_given?)
  return @ip_id_sequence
end

#ipidsequence(&block) ⇒ Object

Deprecated.

Use #ip_id_sequence instead.



304
305
306
307
308
# File 'lib/nmap/host.rb', line 304

def ipidsequence(&block)
  warn "DEPRECATION: use #{self.class}#ip_id_sequence instead"

  ip_id_sequence(&block)
end

#ipv4String

Parses the IPv4 address of the host.

Returns:

  • (String)

    The IPv4 address of the host.



132
133
134
135
136
# File 'lib/nmap/host.rb', line 132

def ipv4
  @ipv4 ||= if (addr = @node.at("address[@addrtype='ipv4']"))
              addr['addr']
            end
end

#ipv6String

Parses the IPv6 address of the host.

Returns:

  • (String)

    The IPv6 address of the host.



144
145
146
147
148
# File 'lib/nmap/host.rb', line 144

def ipv6
  @ipv6 ||= if (@node.at("address[@addrtype='ipv6']"))
              addr['addr']
            end
end

#macString

Parses the MAC address of the host.

Returns:

  • (String)

    The MAC address of the host.



120
121
122
123
124
# File 'lib/nmap/host.rb', line 120

def mac
  @mac ||= if (addr = @node.at("address[@addrtype='mac']"))
             addr['addr']
           end
end

#open_portsArray<Port>

Parses the open ports of the host.

Returns:

  • (Array<Port>)

    The open ports of the host.



402
403
404
# File 'lib/nmap/host.rb', line 402

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.



215
216
217
218
219
220
221
222
# File 'lib/nmap/host.rb', line 215

def os
  @os ||= if (os = @node.at('os'))
            OS.new(os)
          end

  yield @os if (@os && block_given?)
  return @os
end

#portsArray<Port>

Parses the scanned ports of the host.

Returns:

  • (Array<Port>)

    The scanned ports of the host.



369
370
371
# File 'lib/nmap/host.rb', line 369

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



489
490
491
492
493
494
495
496
497
498
499
# File 'lib/nmap/host.rb', line 489

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



41
42
43
# File 'lib/nmap/host.rb', line 41

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.



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

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.



435
436
437
# File 'lib/nmap/host.rb', line 435

def tcp_ports
  each_tcp_port.to_a
end

#tcp_sequence {|sequence| ... } ⇒ TcpSequence

Parses the Tcp Sequence number analysis of the host.

Yields:

  • (sequence)

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

Yield Parameters:

  • sequence (TcpSequence)

    Tcp Sequence number analysis.

Returns:



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

def tcp_sequence
  @tcp_sequence ||= if (seq = @node.at('tcpsequence'))
                      TcpSequence.new(seq)
                    end

  yield @tcp_sequence if (@tcp_sequence && block_given?)
  return @tcp_sequence
end

#tcp_ts_sequence {|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:



322
323
324
325
326
327
328
329
# File 'lib/nmap/host.rb', line 322

def tcp_ts_sequence
  @tcp_ts_sequence ||= if (seq = @node.at('tcptssequence'))
                         TcpTsSequence.new(seq)
                       end

  yield @tcp_ts_sequence if (@tcp_ts_sequence && block_given?)
  return @tcp_ts_sequence
end

#tcpsequence(&block) ⇒ Object

Deprecated.

Use #tcp_sequence instead.



274
275
276
277
278
# File 'lib/nmap/host.rb', line 274

def tcpsequence(&block)
  warn "DEPRECATION: use #{self.class}#tcp_sequence instead"

  tcp_sequence(&block)
end

#tcptssequence(&block) ⇒ Object

Deprecated.

Use #tcp_ts_sequence instead.



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

def tcptssequence(&block)
  warn "DEPRECATION: use #{self.class}#tcp_ts_sequence instead"

  tcp_ts_sequence(&block)
end

#to_sString

Converts the host to a String.

Returns:

  • (String)

    The address of the host.

See Also:



532
533
534
# File 'lib/nmap/host.rb', line 532

def to_s
  address.to_s
end

#traceroute {|traceroute| ... } ⇒ Traceroute

Parses the traceroute information, if present.

Yields:

  • (traceroute)

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

Yield Parameters:

  • traceroute (Traceroute)

    The traceroute information.

Returns:

Since:

  • 0.7.0



515
516
517
518
519
520
521
522
# File 'lib/nmap/host.rb', line 515

def traceroute
  @traceroute ||= if (trace = @node.at('trace'))
                    Traceroute.new(trace)
                  end

  yield @traceroute if (@traceroute && block_given?)
  return @traceroute
end

#udp_portsArray<Port>

Parses the UDP ports of the host.

Returns:

  • (Array<Port>)

    The UDP ports of the host.



468
469
470
# File 'lib/nmap/host.rb', line 468

def udp_ports
  each_udp_port.to_a
end

#uptime {|uptime| ... } ⇒ Uptime

Parses the Uptime analysis of the host.

Yields:

  • (uptime)

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

Yield Parameters:

Returns:

  • (Uptime)

    The parsed object.

Since:

  • 0.7.0



238
239
240
241
242
243
244
245
246
247
248
# File 'lib/nmap/host.rb', line 238

def uptime
  @uptime ||= if (uptime = @node.at('uptime'))
                Uptime.new(
                  uptime['seconds'].to_i,
                  Time.parse(uptime['lastboot'])
                )
              end

  yield @uptime if (@uptime && block_given?)
  return @uptime
end