Skip to content

Commit

Permalink
using this version of PyPanda script, I should be done
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewQuijano committed Aug 29, 2024
1 parent 30151ab commit 707fd8f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions scripts/bug_mining.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,13 +193,16 @@ def progress(msg):
# if panda.arch != 'i386':
# panda.load_plugin('hypercall')
# panda.load_plugin('stackprob')

panda.load_plugin("taint2",
args={
'enable_hypercalls' : True,
'no_tp': True
})
panda.load_plugin("tainted_branch")
panda.load_plugin("pri_taint")
panda.load_plugin("pri_taint", args={
'hypercall': True,
'chaff': False
})

if 'use_stdin' in project and project['use_stdin']:
panda.load_plugin("file_taint",
Expand All @@ -221,6 +224,7 @@ def progress(msg):
'verbose' : True
})


# Default name is 'recording'
# https://github.com/panda-re/panda/blob/dev/panda/python/core/pandare/panda.py#L2595
panda.run_replay("recording")
Expand Down

0 comments on commit 707fd8f

Please sign in to comment.