| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | Merge pull request #1274 from serpilliere/dont_gen_locationdb | serpilliere | 2020-08-31 | 108 | -551/+640 | |
| |\ \ | |/ |/| | Avoid generate default locationdb | |||||
| | * | Update api according to loc_db update | Fabrice Desclaux | 2020-08-31 | 36 | -143/+117 | |
| | | | ||||||
| | * | IRBlock take loc_db | Fabrice Desclaux | 2020-08-31 | 21 | -97/+107 | |
| | | | ||||||
| | * | Avoid generate default locationdb | Fabrice Desclaux | 2020-08-31 | 77 | -321/+426 | |
| |/ | ||||||
| * | Merge pull request #1272 from IridiumXOR/master | serpilliere | 2020-08-27 | 3 | -4/+4 | |
| |\ | | | | | Fix overflow if virtual memory page size >= 4GiB | |||||
| | * | Fix overflow if virtual memory page size >= 4GiB | IridiumXOR | 2020-08-18 | 3 | -4/+4 | |
| | | | ||||||
| * | | Merge pull request #1275 from Ana06/fix-double-ordinals | serpilliere | 2020-08-22 | 1 | -10/+5 | |
| |\ \ | | | | | | | Remove duplicated ordinals in get_export_name_addr_list | |||||
| | * | | Remove duplicated ordinals in get_export_name_addr_list | Ana María Martínez Gómez | 2020-08-19 | 1 | -10/+5 | |
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove duplicated ordinals in `miasm.jitter.loader.pe.get_export_name_addr_list` and update documentation to include ordinals. Ordinal exports are added twice and consequently duplicated in the output. For example, for `Lab17-02.dll` from https://github.com/mikesiko/PracticalMalwareAnalysis-Labs: ``` [('InstallRT', 268490823), ('InstallSA', 268492481), ('InstallSB', 268494994), ('PSLIST', 268464165), ('ServiceMain', 268488496), ('StartEXS', 268467915), ('UninstallRT', 268497925), ('UninstallSA', 268495365), ('UninstallSB', 268497208), (1, 268490823), (2, 268492481), (3, 268494994), (4, 268464165), (5, 268488496), (6, 268467915), (7, 268497925), (8, 268495365), (9, 268497208), (1, 268490823), (2, 268492481), (3, 268494994), (4, 268464165), (5, 268488496), (6, 268467915), (7, 268497925), (8, 268495365), (9, 268497208)] ``` | |||||
| * | | Merge pull request #1273 from Ana06/fix-export | serpilliere | 2020-08-18 | 1 | -0/+3 | |
| |\ \ | |/ |/| | Fix get_export_name_addr_list when there are no exports | |||||
| | * | Fix get_export_name_addr_list when there are no exports | Ana María Martínez Gómez | 2020-08-18 | 1 | -0/+3 | |
| |/ | | | | | | | | | | | If there are no exports, calling to `get_export_name_addr_list` raises an exception at `miasm/jitter/loader/pe.py`, line 152: ``` AttributeError: 'DirExport' object has no attribute 'f_names' ``` Return an empty list instead. | |||||
| * | Merge pull request #1253 from XVilka/fix-collections | serpilliere | 2020-08-14 | 2 | -2/+10 | |
| |\ | | | | | Fix collections | |||||
| | * | Fix collections deprecation warnings | Anton Kochkov | 2020-06-15 | 2 | -2/+10 | |
| | | | ||||||
| * | | Merge pull request #1269 from eset/output_interval_fix | serpilliere | 2020-07-24 | 1 | -0/+1 | |
| |\ \ | | | | | | | output_interval was never updated and hence always empty | |||||
| | * | | output_interval was never updated and hence always empty | Vladislav Hrčka | 2020-07-24 | 1 | -0/+1 | |
| |/ / | | | | | | | which was making the overlap check meaningless | |||||
| * | | Merge pull request #1267 from serpilliere/int_expr_arg | serpilliere | 2020-07-21 | 17 | -63/+30 | |
| |\ \ | | | | | | | Int expr arg | |||||
| | * | | Move modint in core | Fabrice Desclaux | 2020-07-21 | 16 | -40/+23 | |
| | | | | ||||||
| | * | | ExprInt only takes int | Fabrice Desclaux | 2020-07-21 | 3 | -23/+7 | |
| |/ / | ||||||
| * | | Merge pull request #1266 from serpilliere/mv_x86_is_op_xx | serpilliere | 2020-07-21 | 5 | -22/+26 | |
| |\ \ | | | | | | | Move x86 is_op_segm/is_mem_segm to x86 | |||||
| | * | | Move x86 is_op_segm/is_mem_segm to x86 | Fabrice Desclaux | 2020-07-21 | 5 | -22/+26 | |
| | | | | ||||||
| * | | | Merge pull request #1264 from eset/fix_fname_type_error_in_dse | serpilliere | 2020-07-17 | 1 | -4/+10 | |
| |\ \ \ | |/ / |/| | | Bug fix - tuples need to be converted to str before using force_bytes | |||||
| | * | | Fix bug in lookup for symbolic stubs of library exports via ordinal | Vladislav Hrčka | 2020-07-14 | 1 | -4/+9 | |
| | | | | ||||||
| | * | | Bug fix - tuples need to be converted to str before using force_bytes | Vladislav Hrčka | 2020-07-08 | 1 | -2/+3 | |
| |/ / | | | | | | | to prevent TypeError during the subsequent byte object formatting | |||||
| * | | Merge pull request #1262 from serpilliere/set_fpu_eip | serpilliere | 2020-06-30 | 1 | -0/+1 | |
| |\ \ | | | | | | | Updt fpu set eip | |||||
| | * | | Updt fpu set eip | Fabrice Desclaux | 2020-06-29 | 1 | -0/+1 | |
| |/ / | ||||||
| * | | Merge pull request #1260 from serpilliere/simp_cond_flag | serpilliere | 2020-06-25 | 3 | -0/+46 | |
| |\ \ | | | | | | | Add cond CC flag simplification | |||||
| | * | | Add cond CC flag simplification | Fabrice Desclaux | 2020-06-25 | 3 | -0/+46 | |
| |/ / | ||||||
| * | | Support to ALL system register for AARCH64 (#1251) | IridiumXOR | 2020-06-19 | 4 | -21/+991 | |
| | | | | | | | | | * Support to ALL system register for AARCH64 | |||||
| * | | Merge pull request #1256 from w4kfu/bitfield_fix | serpilliere | 2020-06-16 | 2 | -1/+26 | |
| |\ \ | |/ |/| | Fix issue #1255 ; Add unit test | |||||
| | * | Fix issue #1255 ; Add unit test | w4kfu | 2020-06-16 | 2 | -1/+26 | |
| |/ | ||||||
| * | Merge pull request #1252 from serpilliere/api_dis_callback | serpilliere | 2020-06-10 | 5 | -90/+81 | |
| |\ | | | | | Updt dis_block_callback; apply_splitting | |||||
| | * | Updt dis_block_callback; apply_splitting | Fabrice Desclaux | 2020-06-10 | 5 | -90/+81 | |
| | | | ||||||
| * | | Merge pull request #1185 from nofiv/IDAPython74 | serpilliere | 2020-06-10 | 6 | -31/+31 | |
| |\ \ | |/ |/| | Ported IDAPython code to the 7.4 version | |||||
| | * | IDAPython 7.4 porting | nofiv | 2020-04-16 | 6 | -31/+31 | |
| | | | ||||||
| * | | Merge pull request #1254 from serpilliere/remove_old_deprecation | serpilliere | 2020-06-10 | 1 | -157/+1 | |
| |\ \ | | | | | | | Remove old asmblock deprecations | |||||
| | * | | Remove old asmblock deprecations | Fabrice Desclaux | 2020-06-10 | 1 | -157/+1 | |
| |/ / | ||||||
| * | | Merge pull request #1145 from 6oclock/bcdadd_simplifications_python | serpilliere | 2020-06-09 | 2 | -0/+53 | |
| |\ \ | | | | | | | Adding simplifications for bcdadd and bcdadd_cf with python | |||||
| | * | | Adding simplifications for bcdadd and bcdadd_cf with python | Nicolas DILLIES | 2020-03-03 | 2 | -0/+53 | |
| | | | | ||||||
| * | | | Merge pull request #1243 from Frky/patch-4 | serpilliere | 2020-06-09 | 1 | -0/+94 | |
| |\ \ \ | | | | | | | | | Minimalistic implementation of kernel32_GetStringTypeW | |||||
| | * | | | Minimalistic implementation of kernel32_GetStringTypeW | _Frky | 2020-06-09 | 1 | -0/+94 | |
| | | | | | ||||||
| * | | | | Merge pull request #1250 from serpilliere/fix_x86_sem | serpilliere | 2020-06-09 | 1 | -1/+3 | |
| |\ \ \ \ | | | | | | | | | | | Updt x86 swap 16 bit | |||||
| | * | | | | Updt x86 swap 16 bit | Fabrice Desclaux | 2020-06-09 | 1 | -1/+3 | |
| |/ / / / | ||||||
| * | | | | Merge pull request #1249 from serpilliere/fix_elf_loader | serpilliere | 2020-06-09 | 1 | -0/+2 | |
| |\ \ \ \ | | | | | | | | | | | Fix elf no symb | |||||
| | * | | | | Fix elf no symb | Fabrice Desclaux | 2020-06-09 | 1 | -0/+2 | |
| | | | | | | ||||||
| * | | | | | Merge pull request #1248 from Frky/patch-7 | serpilliere | 2020-06-08 | 1 | -1/+14 | |
| |\ \ \ \ \ | | | | | | | | | | | | | Fix MultiByteToWideChar when cbMultiByte = -1 | |||||
| | * | | | | | Fix MultiByteToWideChar when cbMultiByte = -1 | _Frky | 2020-06-03 | 1 | -1/+14 | |
| | |/ / / / | | | | | | | | | | | When cbMultiByte = -1, the MultiByteStr input string is null-terminated. | |||||
| * | | | | | Merge pull request #1247 from icecr4ck/fix_msvcrt_wcsrchr | serpilliere | 2020-06-03 | 1 | -2/+2 | |
| |\ \ \ \ \ | |/ / / / |/| | | | | Fix type error in msvcrt_wcsrchr and msvcrt_strrchr for Python 3 | |||||
| | * | | | | Fix type error in msvcrt_wcsrchr and msvcrt_strrchr | Hugo Porcher | 2020-06-02 | 1 | -2/+2 | |
| | | | | | | ||||||
| * | | | | | Merge pull request #1246 from serpilliere/fix_x86 | serpilliere | 2020-06-01 | 2 | -2/+8 | |
| |\ \ \ \ \ | | | | | | | | | | | | | Fix x86 | |||||
| | * | | | | | Test expr none | Fabrice Desclaux | 2020-06-01 | 1 | -0/+3 | |
| | | | | | | | ||||||
| | * | | | | | Fix ExprOp(+ with one arg | Fabrice Desclaux | 2020-06-01 | 1 | -1/+4 | |
| | | | | | | | ||||||