Xin Luo
Xin Luo
Hello, I have read the tutorial to reverse engineer a toy protocol using Netzob. However, when I tried to apply this to HTTP, it was not going on as expectation....
I noticed that MUL instruction was treated as ins_unitary_op. However, if rax/rdx is not tainted before, MUL instruction might taint them. I am wondering how to solve this. :)
Hello, I noticed that in your code data_loader.py, you loaded the source and target labels as ` lab_source = Image.open(lab_source_path) lab_source = lab_source.resize( [self.opt.loadSize[0], self.opt.loadSize[1]], Image.BICUBIC) img_source, lab_source, scale =...
I have found DynamoRIO offers rich APIs to operate for instrumentation. I noticed that most of us used drx_buf_insert_buf_store to store the value retrieved. I am wondering about the differences...