Replies: 2 comments
-
There is a python branch under development that integrates iron python as a scripting engine. However development for python scripting is still on going and not stable yet. |
Beta Was this translation helpful? Give feedback.
0 replies
-
You can do this now with the exec command: variables:
# 'buffer' is evaluated at runtime in debug engine api
ptr_base: "buffer"
# 'segmentSize' variable will be valuated at execution time in debug engine api
size: "segmentSize"
# expressions don't support spaces. 'buffer+(0*segmentSize)' is evaluated later in debug engine api
# ptr_base mustache variable will be replaced with 'buffer'
segData0: "{{ptr_base}}+(0*segmentSize)"
segFile0: "segment0.bin"
# expressions don't support spaces.
segData1: "{{ptr_base}}+(1*segmentSize)"
segFile1: "segment1.bin"
# expressions don't support spaces.
segData2: "{{ptr_base}}+(2*segmentSize)"
segFile2: "segment2.bin"
commands:
- dumpmem -f {{segFile0}} {{segData0}} {{size}}
- dumpmem -f {{segFile1}} {{segData1}} {{size}}
- dumpmem -f {{segFile2}} {{segData2}} {{size}}
- dumpmem -a segments.bin {{segData2}} {{size}}
- dumpmem -a segments.bin {{segData1}} {{size}}
- dumpmem -a segments.bin {{segData0}} {{size}} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is it possible to make support for multi-line commands?

Beta Was this translation helpful? Give feedback.
All reactions