delete comments

bug/bundler_fix
jvazquez-r7 2013-01-14 19:22:39 +01:00
parent 57be789f2c
commit 530df0acf0
1 changed files with 0 additions and 2 deletions

View File

@ -62,13 +62,11 @@ class Metasploit3 < Msf::Post
private
def low_dword(value)
#return [value].pack("Q").unpack("VV")[0]
return Rex::Text.pack_int64le(value).unpack("VV")[0]
end
def high_dword(value)
return Rex::Text.pack_int64le(value).unpack("VV")[1]
#return [value].pack("Q").unpack("VV")[1]
end
def low_byte(value)