Skip to content

Commit

Permalink
correct script shebang
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewQuijano committed Aug 27, 2024
1 parent a18872a commit 18b80c5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion init-host.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3

# import argparse
import os
Expand Down
2 changes: 1 addition & 1 deletion scripts/bug_mining.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ def progress(msg):
'no_tp': True
})
panda.load_plugin("tainted_branch")
panda.load_plugin("pri_taint")

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

# Default name is 'recording'
# https://github.com/panda-re/panda/blob/dev/panda/python/core/pandare/panda.py#L2595
Expand Down
2 changes: 1 addition & 1 deletion scripts/competition.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3

import argparse
import datetime
Expand Down
2 changes: 1 addition & 1 deletion scripts/inject.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3

import argparse
import atexit
Expand Down
2 changes: 1 addition & 1 deletion scripts/run-on-fuzzed-input.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3

import argparse
import json
Expand Down
2 changes: 1 addition & 1 deletion tools/lavaTool/get_c_files.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3

import json
import os
Expand Down

0 comments on commit 18b80c5

Please sign in to comment.