Files
metasploit-gs/lib/msf/core/encoding/xor.rb
T

30 lines
460 B
Ruby
Raw Normal View History

2005-05-21 17:57:00 +00:00
module Msf
module Encoding
###
#
# This class provides basic XOR encoding facilities and is used
# by XOR encoders.
#
###
class Xor
2005-11-15 15:11:43 +00:00
#
# Encodes a block using XOR.
#
2005-05-21 17:57:00 +00:00
def Xor.encode_block(key, block, block_size = 4, block_pack = 'V')
offset = 0
oblock = ''
while (offset < block.length)
cblock = block[offset, block_size].unpack(block_pack)[0]
cblock ^= key
oblock += [ cblock ].pack(block_pack)
end
return oblock
end
end
2008-10-19 21:03:39 +00:00
end end