delete comments
parent
57be789f2c
commit
530df0acf0
|
@ -62,13 +62,11 @@ class Metasploit3 < Msf::Post
|
||||||
private
|
private
|
||||||
|
|
||||||
def low_dword(value)
|
def low_dword(value)
|
||||||
#return [value].pack("Q").unpack("VV")[0]
|
|
||||||
return Rex::Text.pack_int64le(value).unpack("VV")[0]
|
return Rex::Text.pack_int64le(value).unpack("VV")[0]
|
||||||
end
|
end
|
||||||
|
|
||||||
def high_dword(value)
|
def high_dword(value)
|
||||||
return Rex::Text.pack_int64le(value).unpack("VV")[1]
|
return Rex::Text.pack_int64le(value).unpack("VV")[1]
|
||||||
#return [value].pack("Q").unpack("VV")[1]
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def low_byte(value)
|
def low_byte(value)
|
||||||
|
|
Loading…
Reference in New Issue