about summary refs log tree commit diff stats
path: root/example/symbol_exec/dse_crackme.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename ir_arch for jitterFabrice Desclaux2020-12-251-4/+4
|
* Rename ira => LifterModelCallFabrice Desclaux2020-12-241-11/+11
|
* Avoid generate default locationdbFabrice Desclaux2020-08-311-2/+4
|
* Clear get_str_* APIFabrice Desclaux2019-11-121-3/+4
| | | | | | | | | | | | | | | | get_str_ansi decoded strings using utf8 and was blindly used for pure windows function (LoadLibraryA) and for stdlib functions (printf, strlen, ...) even if strlen does not use utf8... New API is: get_win_str_a/get_win_str_w and set_win_str_a/set_win_str_w for windows (respectively codepage1252/windows utf16) .Those functions should only be used in windows strings manipulations, so there are taken out of the jitter. get_c_str/set_c_str: as those functions are "classic" in OSes, they are keeped in the jitter.
* Fix get_str_ansi: return strFabrice Desclaux2019-09-221-1/+1
| | | | | get_str_ansi and get_str_unic now returns both *str* object: As get_str_unic decodes the string, get_str_ansi should do the same.
* Rename miasm2 to miasmFabrice Desclaux2019-03-051-6/+6
|
* Support python2/python3Fabrice Desclaux2019-03-051-17/+24
|
* Fix typos & add codespellPierre LALET2018-12-231-2/+2
|
* Adds Windows support and AppVeyor CI (#835)Axel Souchet2018-09-091-11/+21
| | | | | | | | | | | | | | | | | | | | | | | | * Get miasm to work on Windows, also add AppVeyor CI * Fix gcc jitter on Linux * Make the dse_crackme tests work on Windows * calling build and then install is less confusing than install twice * fix os.rename race condition on Windows * clean it up * Clean up after the unused cl.exe's artifacts * Use is_win instead of an additional check * Fix issue on Windows where 'w' and 'wb' modes are different * Address review feedback * setuptools is actually not required, so reverting
* Sandbox: on Linux env import, also set the ABORT_ADDRAjax2018-03-051-1/+1
|
* append b to the opens mode ; Python on Windows makes a distinction between ↵w4kfu2018-01-161-1/+1
| | | | text and binary files
* DSE: avoid using the same test.txt file in test, allowing parallelismAjax2017-09-061-2/+7
|
* DSE: update example to use coverage provided by the moduleAjax2017-09-051-35/+29
|
* DSE: update example to use compute_solutionAjax2017-09-051-5/+5
|
* Remove unecessary assertWilliam Bruneau2017-07-201-1/+0
|
* Fix typoWilliam Bruneau2017-07-201-6/+6
|
* Add an example illustrating DSEAjax2017-04-181-0/+310