bap-pintraces icon indicating copy to clipboard operation
bap-pintraces copied to clipboard

Results 5 bap-pintraces issues
Sort by recently updated
recently updated
newest added

in gentrace.cpp: ``` if (!isBranch) tracker->taintPropagation(ti->delta); ``` so bap-pintraces does not log the control flow taint propagation. then the code in strcmp function: ``` Dump of assembler code for function...

I try to use the bap-pintrace. After following the instructions from this git, I run into this problem: ``` export LD_LIBRARY_PATH=/home/canicula/local/lib/ ; pin -injection child -t obj-intel64/gentrace.so -o exec.frames -logall_before...

**First**,in the [gentrace.cpp](https://github.com/BinaryAnalysisPlatform/bap-pintraces/blob/master/gentrace.cpp#L1773),you add FS & GS registers into the operand_pre_list.But you define its usage as 0,and usage macro define is [here](https://github.com/BinaryAnalysisPlatform/bap-pintraces/blob/master/pin_taint.h#L66),which means FS&GS has no usage,no RD and no...

Hi, does it support 32-bit? When I compile the program, it only generates obj-intel64. How can I have obj-ia32? Thanks

Looking at the generated trace I realize we can see if it is a branch instruction by checking if R_RIP has the written flag. But how can we identify if...