Skip to content

Commit

Permalink
Remove colons from filename.
Browse files Browse the repository at this point in the history
This allows the panda repo to be cloned on windows.
  • Loading branch information
MarkMankins authored and AndrewFasano committed Jun 24, 2024
1 parent 236c1a8 commit 50cf602
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion panda/python/examples/cosi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
* [`list_modules.py`](./list_modules.py) - list the currently loaded kernel modules
* [`raw_api.py`](./raw_api.py) - examples of using the lower-level COSI API

All examples require the profile `ubuntu:4.15.0-72-generic:64.json.xz` be present in the current working directory when the script is run.
All examples require the profile `ubuntu_4.15.0-72-generic_64.json.xz` be present in the current working directory when the script is run.
2 changes: 1 addition & 1 deletion panda/python/examples/cosi/creds.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def run_cmd():
panda.revert_sync("root")

# set the volatility symbol table for cosi to use
panda.load_plugin("cosi", { "profile": "ubuntu:4.15.0-72-generic:64.json.xz" })
panda.load_plugin("cosi", { "profile": "ubuntu_4.15.0-72-generic_64.json.xz" })

@panda.cb_asid_changed
def print_current_process_files(cpu, old, new):
Expand Down
2 changes: 1 addition & 1 deletion panda/python/examples/cosi/file_tester.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def run_cmd():
panda.revert_sync("root")

# set the volatility symbol table for cosi to use
panda.load_plugin("cosi", { "profile": "ubuntu:4.15.0-72-generic:64.json.xz" })
panda.load_plugin("cosi", { "profile": "ubuntu_4.15.0-72-generic_64.json.xz" })

@panda.cb_asid_changed()
def print_current_process_files(cpu, old, new):
Expand Down
2 changes: 1 addition & 1 deletion panda/python/examples/cosi/list_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def run_cmd():
panda.revert_sync("root")

# set the volatility symbol table for cosi to use
panda.load_plugin("cosi", { "profile": "ubuntu:4.15.0-72-generic:64.json.xz" })
panda.load_plugin("cosi", { "profile": "ubuntu_4.15.0-72-generic_64.json.xz" })

# run a command
panda.run_serial_cmd("cat /proc/version")
Expand Down
2 changes: 1 addition & 1 deletion panda/python/examples/cosi/process_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def run_cmd():
panda.revert_sync("root")

# set the volatility symbol table for cosi to use
panda.load_plugin("cosi", { "profile": "ubuntu:4.15.0-72-generic:64.json.xz" })
panda.load_plugin("cosi", { "profile": "ubuntu_4.15.0-72-generic_64.json.xz" })

# run a command
panda.run_serial_cmd("cat /proc/version")
Expand Down
2 changes: 1 addition & 1 deletion panda/python/examples/cosi/raw_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def run_cmd():
panda.revert_sync("root")

# set the volatility symbol table for cosi to use
panda.load_plugin("cosi", { "profile": "ubuntu:4.15.0-72-generic:64.json.xz" })
panda.load_plugin("cosi", { "profile": "ubuntu_4.15.0-72-generic_64.json.xz" })

# run a command
panda.run_serial_cmd("cat /proc/version")
Expand Down

0 comments on commit 50cf602

Please sign in to comment.