diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2023-04-23 21:24:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-23 21:24:51 +0200 |
| commit | 49ec4bc9a90391bc796ac6940a6d9b77deb17ac9 (patch) | |
| tree | 1a890a007c103e643ffe4e1b13caada32c901ef9 /test | |
| parent | 230d528c50d8a2870a89011fc1e660fcab4910ff (diff) | |
| parent | b66becdead10f0bb2aa009dda61c422e79c567fe (diff) | |
| download | focaccia-miasm-49ec4bc9a90391bc796ac6940a6d9b77deb17ac9.tar.gz focaccia-miasm-49ec4bc9a90391bc796ac6940a6d9b77deb17ac9.zip | |
Merge pull request #1448 from cea-sec/generic-unpack
Generic import recovery (cheap ImpRec style)
Diffstat (limited to 'test')
| -rwxr-xr-x | test/test_all.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/test_all.py b/test/test_all.py index 591f3d8e..85ebb31f 100755 --- a/test/test_all.py +++ b/test/test_all.py @@ -800,6 +800,12 @@ for jitter in ExampleJitter.jitter_engines: products=[Example.get_sample("box_upx_exe_unupx.bin")], tags=tags.get(jitter, [])) + testset += ExampleJitter(["unpack_generic.py", + Example.get_sample("box_upx.exe")] + + ["--jitter", jitter, "-o"], + products=[Example.get_sample("box_upx.exe.dump")], + tags=tags.get(jitter, [])) + testset += ExampleJitter(["memory_breakpoint.py", Example.get_sample("box_upx.exe")] + ["--jitter", jitter] + |