Class: PacketFu::IPv6Packet
- Defined in:
- lib/packetfu/protos/ipv6.rb
Overview
IPv6Packet is used to construct IPv6 Packets. They contain an EthHeader and an IPv6Header, and in the distant, unknowable future, will take interesting IPv6ish payloads.
This mostly complete, but not very useful. It’s intended primarily as an example protocol.
Parameters
:eth
A pre-generated EthHeader object.
:ip
A pre-generated IPHeader object.
:flavor
TODO: Sets the "flavor" of the IPv6 packet. No idea what this will look like, haven't done much IPv6 fingerprinting.
:config
A hash of return address details, often the output of Utils.whoami?
Instance Attribute Summary collapse
-
#eth_header ⇒ Object
Returns the value of attribute eth_header.
-
#ipv6_header ⇒ Object
Returns the value of attribute ipv6_header.
Attributes inherited from Packet
#flavor, #headers, #iface, #inspect_style
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(args = {}) ⇒ IPv6Packet
constructor
A new instance of IPv6Packet.
-
#peek(args = {}) ⇒ Object
Peek provides summary data on packet contents.
- #read(str = nil, args = {}) ⇒ Object
Methods inherited from Packet
#==, #clone, #dissect, #dissection_table, force_binary, #handle_is_identity, #hexify, inherited, #inspect, #inspect_hex, #kind_of?, layer, #layer, #layer_symbol, layer_symbol, #method_missing, #orig_kind_of?, parse, #payload, #payload=, #peek_format, #proto, #recalc, #respond_to?, #size, #to_f, #to_pcap, #to_s, #to_w, #write
Constructor Details
#initialize(args = {}) ⇒ IPv6Packet
227 228 229 230 231 232 233 234 |
# File 'lib/packetfu/protos/ipv6.rb', line 227 def initialize(args={}) @eth_header = (args[:eth] || EthHeader.new) @ipv6_header = (args[:ipv6] || IPv6Header.new) @eth_header.eth_proto = 0x86dd @eth_header.body=@ipv6_header @headers = [@eth_header, @ipv6_header] super end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class PacketFu::Packet
Instance Attribute Details
#eth_header ⇒ Object
Returns the value of attribute eth_header.
209 210 211 |
# File 'lib/packetfu/protos/ipv6.rb', line 209 def eth_header @eth_header end |
#ipv6_header ⇒ Object
Returns the value of attribute ipv6_header.
209 210 211 |
# File 'lib/packetfu/protos/ipv6.rb', line 209 def ipv6_header @ipv6_header end |
Class Method Details
.can_parse?(str) ⇒ Boolean
211 212 213 214 215 216 |
# File 'lib/packetfu/protos/ipv6.rb', line 211 def self.can_parse?(str) return false unless EthPacket.can_parse? str return false unless str.size >= 54 return false unless str[12,2] == "\x86\xdd" true end |
Instance Method Details
#peek(args = {}) ⇒ Object
Peek provides summary data on packet contents.
237 238 239 240 241 242 243 244 245 246 |
# File 'lib/packetfu/protos/ipv6.rb', line 237 def peek(args={}) peek_data = ["6 "] peek_data << "%-5d" % self.to_s.size peek_data << "%-31s" % self.ipv6_saddr peek_data << "-> " peek_data << "%-31s" % self.ipv6_daddr peek_data << " N:" peek_data << self.ipv6_next.to_s(16) peek_data.join end |
#read(str = nil, args = {}) ⇒ Object
218 219 220 221 222 223 224 225 |
# File 'lib/packetfu/protos/ipv6.rb', line 218 def read(str=nil,args={}) raise "Cannot parse `#{str}'" unless self.class.can_parse?(str) @eth_header.read(str) @ipv6_header.read(str[14,str.size]) @eth_header.body = @ipv6_header super(args) self end |