[Python] revers binary

 

Notice : 해당 자료가 저작권등에 의해서 문제가 있다면 바로 삭제하겠습니다.
연구목적으로 사용하지 않고 악의적인 목적으로 이용할 경우 발생할 수 있는 법적은 책임은 모두 본인에게 있습니다.

binary를 뒤집는 python code

import sys, binascii

f=open(sys.argv[1], 'rb')
data=f.read()
f.close()

tmp = binascii.hexlify(data)
print type(tmp)
output = open(sys.argv[1] + '-output','wb')
output.write(binascii.unhexlify(tmp[::-1]))
#output.write(''.join(reversed(tmp)))
output.close()

 

This entry was posted in Python/Ruby/Perl and tagged , , . Bookmark the permalink.

댓글 남기기