简体   繁体   中英

padding oracle attack - how to represent hexadecimal as one byte in python

I am trying to carry out a padding oracle attack. I am aware that I have to modify the bytes from 00 to the point where it succeeds, to find the correct padding. But, how do I represent 00-FF in python? When I try representing it as a part of the string, 00 is taken as 2 bytes.

PS - This is a homework problem.

执行'\\ x00 \\ x00 \\ xff'或“ 0000ff” .decode('hex')应该可以。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM