Skip to content

Commit

Permalink
[doc] Add TFP CSV to output
Browse files Browse the repository at this point in the history
  • Loading branch information
SanWieb committed Dec 21, 2023
1 parent b759752 commit 52ceb6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ A typical workflow might look something like this:
```sh
# Run the analyzer on a binary to find transmissions.
mkdir out
inspectre analyze <BINARY> --address-list <CSV> --config config_all.yaml --output out/gadgets.csv --asm out/asm
inspectre analyze <BINARY> --address-list <CSV> --config config_all.yaml --output out/gadgets.csv --tfp-output output/tfp.csv --asm out/asm

# Evaluate exploitability.
inspectre reason gadgets.csv gadgets-reasoned.csv
Expand Down
2 changes: 1 addition & 1 deletion tests/test-cases/run-single.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ fi
echo "\n"
objdump --adjust-vma=0x4000000 -d -Mintel $f | batcat -l asm
echo ""
python3 ../../inspectre analyze --config config_all.yaml --address 0x4000000 --name $name --output output/gadgets.csv --asm output/asm $f
python3 ../../inspectre analyze --config config_all.yaml --address 0x4000000 --name $name --output output/gadgets.csv --tfp-output output/tfp.csv --asm output/asm $f

0 comments on commit 52ceb6b

Please sign in to comment.