angr 9.2.87__py3-none-manylinux2014_x86_64.whl → 9.2.89__py3-none-manylinux2014_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of angr might be problematic. Click here for more details.

Files changed (248) hide show
  1. angr/__init__.py +4 -1
  2. angr/analyses/decompiler/clinic.py +16 -0
  3. angr/analyses/decompiler/decompiler.py +3 -0
  4. angr/analyses/decompiler/optimization_passes/__init__.py +5 -0
  5. angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py +108 -0
  6. angr/analyses/decompiler/optimization_passes/optimization_pass.py +17 -4
  7. angr/analyses/decompiler/optimization_passes/return_duplicator.py +4 -32
  8. angr/analyses/decompiler/structured_codegen/c.py +12 -2
  9. angr/analyses/decompiler/utils.py +13 -0
  10. angr/analyses/typehoon/dfa.py +108 -0
  11. angr/analyses/typehoon/lifter.py +34 -2
  12. angr/analyses/typehoon/simple_solver.py +1043 -503
  13. angr/analyses/typehoon/translator.py +13 -4
  14. angr/analyses/typehoon/typeconsts.py +117 -36
  15. angr/analyses/typehoon/typehoon.py +31 -11
  16. angr/analyses/typehoon/typevars.py +88 -21
  17. angr/analyses/typehoon/variance.py +10 -0
  18. angr/analyses/variable_recovery/engine_ail.py +28 -9
  19. angr/analyses/variable_recovery/engine_base.py +50 -43
  20. angr/analyses/variable_recovery/variable_recovery_base.py +16 -3
  21. angr/analyses/variable_recovery/variable_recovery_fast.py +14 -5
  22. angr/exploration_techniques/tracer.py +2 -0
  23. angr/misc/autoimport.py +26 -0
  24. angr/procedures/definitions/__init__.py +32 -3
  25. angr/utils/constants.py +1 -0
  26. angr/utils/graph.py +20 -1
  27. {angr-9.2.87.dist-info → angr-9.2.89.dist-info}/METADATA +7 -6
  28. {angr-9.2.87.dist-info → angr-9.2.89.dist-info}/RECORD +32 -244
  29. angr-9.2.89.dist-info/top_level.txt +1 -0
  30. angr/procedures/definitions/ntdll.py +0 -12
  31. angr-9.2.87.dist-info/top_level.txt +0 -2
  32. tests/__init__.py +0 -0
  33. tests/analyses/__init__.py +0 -0
  34. tests/analyses/cfg/__init__.py +0 -0
  35. tests/analyses/cfg/test_cfg_clflush.py +0 -43
  36. tests/analyses/cfg/test_cfg_get_any_node.py +0 -34
  37. tests/analyses/cfg/test_cfg_manager.py +0 -32
  38. tests/analyses/cfg/test_cfg_model.py +0 -55
  39. tests/analyses/cfg/test_cfg_patching.py +0 -378
  40. tests/analyses/cfg/test_cfg_rust_got_resolution.py +0 -36
  41. tests/analyses/cfg/test_cfg_thumb_firmware.py +0 -50
  42. tests/analyses/cfg/test_cfg_vex_postprocessor.py +0 -27
  43. tests/analyses/cfg/test_cfgemulated.py +0 -634
  44. tests/analyses/cfg/test_cfgfast.py +0 -1123
  45. tests/analyses/cfg/test_cfgfast_soot.py +0 -38
  46. tests/analyses/cfg/test_const_resolver.py +0 -38
  47. tests/analyses/cfg/test_iat_resolver.py +0 -37
  48. tests/analyses/cfg/test_jumptables.py +0 -3008
  49. tests/analyses/cfg/test_noop_blocks.py +0 -54
  50. tests/analyses/cfg_slice_to_sink/__init__.py +0 -0
  51. tests/analyses/cfg_slice_to_sink/test_cfg_slice_to_sink.py +0 -93
  52. tests/analyses/cfg_slice_to_sink/test_graph.py +0 -114
  53. tests/analyses/cfg_slice_to_sink/test_transitions.py +0 -28
  54. tests/analyses/decompiler/__init__.py +0 -0
  55. tests/analyses/decompiler/test_baseptr_save_simplifier.py +0 -80
  56. tests/analyses/decompiler/test_decompiler.py +0 -3336
  57. tests/analyses/decompiler/test_peephole_optimizations.py +0 -48
  58. tests/analyses/decompiler/test_propagator_loops.py +0 -101
  59. tests/analyses/decompiler/test_structurer.py +0 -275
  60. tests/analyses/reaching_definitions/__init__.py +0 -0
  61. tests/analyses/reaching_definitions/test_dep_graph.py +0 -432
  62. tests/analyses/reaching_definitions/test_function_handler.py +0 -131
  63. tests/analyses/reaching_definitions/test_heap_allocator.py +0 -46
  64. tests/analyses/reaching_definitions/test_rd_state.py +0 -78
  65. tests/analyses/reaching_definitions/test_reachingdefinitions.py +0 -463
  66. tests/analyses/reaching_definitions/test_subject.py +0 -76
  67. tests/analyses/test_bindiff.py +0 -52
  68. tests/analyses/test_block_simplifier.py +0 -112
  69. tests/analyses/test_boyscout.py +0 -104
  70. tests/analyses/test_calling_convention_analysis.py +0 -352
  71. tests/analyses/test_callsite_maker.py +0 -60
  72. tests/analyses/test_cdg.py +0 -165
  73. tests/analyses/test_cfb.py +0 -37
  74. tests/analyses/test_class_identifier.py +0 -46
  75. tests/analyses/test_clinic.py +0 -30
  76. tests/analyses/test_codetagging.py +0 -32
  77. tests/analyses/test_constantpropagation.py +0 -88
  78. tests/analyses/test_ddg.py +0 -95
  79. tests/analyses/test_ddg_global_var_dependencies.py +0 -83
  80. tests/analyses/test_ddg_memvar_addresses.py +0 -40
  81. tests/analyses/test_disassembly.py +0 -121
  82. tests/analyses/test_find_objects_static.py +0 -35
  83. tests/analyses/test_flirt.py +0 -49
  84. tests/analyses/test_identifier.py +0 -33
  85. tests/analyses/test_init_finder.py +0 -38
  86. tests/analyses/test_proximitygraph.py +0 -31
  87. tests/analyses/test_reassembler.py +0 -295
  88. tests/analyses/test_regionidentifier.py +0 -27
  89. tests/analyses/test_slicing.py +0 -164
  90. tests/analyses/test_stack_pointer_tracker.py +0 -74
  91. tests/analyses/test_static_hooker.py +0 -28
  92. tests/analyses/test_typehoon.py +0 -55
  93. tests/analyses/test_variablerecovery.py +0 -464
  94. tests/analyses/test_vfg.py +0 -221
  95. tests/analyses/test_vtable.py +0 -31
  96. tests/analyses/test_xrefs.py +0 -77
  97. tests/common.py +0 -128
  98. tests/engines/__init__.py +0 -0
  99. tests/engines/light/__init__.py +0 -0
  100. tests/engines/light/test_data.py +0 -17
  101. tests/engines/pcode/__init__.py +0 -0
  102. tests/engines/pcode/test_emulate.py +0 -607
  103. tests/engines/pcode/test_pcode.py +0 -84
  104. tests/engines/test_actions.py +0 -27
  105. tests/engines/test_hook.py +0 -112
  106. tests/engines/test_java.py +0 -697
  107. tests/engines/test_unicorn.py +0 -518
  108. tests/engines/vex/__init__.py +0 -0
  109. tests/engines/vex/test_lifter.py +0 -124
  110. tests/engines/vex/test_vex.py +0 -574
  111. tests/exploration_techniques/__init__.py +0 -0
  112. tests/exploration_techniques/test_cacher.py +0 -45
  113. tests/exploration_techniques/test_director.py +0 -67
  114. tests/exploration_techniques/test_driller_core.py +0 -48
  115. tests/exploration_techniques/test_loop_seer.py +0 -158
  116. tests/exploration_techniques/test_memory_watcher.py +0 -46
  117. tests/exploration_techniques/test_oppologist.py +0 -65
  118. tests/exploration_techniques/test_spiller.py +0 -82
  119. tests/exploration_techniques/test_stochastic.py +0 -40
  120. tests/exploration_techniques/test_tech_builder.py +0 -61
  121. tests/exploration_techniques/test_tracer.py +0 -856
  122. tests/exploration_techniques/test_unique.py +0 -40
  123. tests/exploration_techniques/test_veritesting.py +0 -120
  124. tests/factory/__init__.py +0 -0
  125. tests/factory/block/__init__.py +0 -0
  126. tests/factory/block/test_block_cache.py +0 -33
  127. tests/factory/block/test_keystone.py +0 -106
  128. tests/factory/test_argc.py +0 -101
  129. tests/factory/test_argc_sym.py +0 -110
  130. tests/factory/test_argv.py +0 -158
  131. tests/factory/test_callable.py +0 -266
  132. tests/factory/test_windows_args.py +0 -36
  133. tests/knowledge_plugins/__init__.py +0 -0
  134. tests/knowledge_plugins/cfg/__init__.py +0 -0
  135. tests/knowledge_plugins/cfg/test_cfg_manager.py +0 -36
  136. tests/knowledge_plugins/functions/__init__.py +0 -0
  137. tests/knowledge_plugins/functions/test_function.py +0 -91
  138. tests/knowledge_plugins/functions/test_function2.py +0 -79
  139. tests/knowledge_plugins/functions/test_function_manager.py +0 -139
  140. tests/knowledge_plugins/functions/test_prototypes.py +0 -53
  141. tests/knowledge_plugins/key_definitions/__init__.py +0 -0
  142. tests/knowledge_plugins/key_definitions/test_atoms.py +0 -24
  143. tests/knowledge_plugins/key_definitions/test_environment.py +0 -126
  144. tests/knowledge_plugins/key_definitions/test_heap_address.py +0 -27
  145. tests/knowledge_plugins/key_definitions/test_live_definitions.py +0 -72
  146. tests/knowledge_plugins/test_dwarf_variables.py +0 -240
  147. tests/knowledge_plugins/test_kb_plugins.py +0 -91
  148. tests/knowledge_plugins/test_kb_plugins_dwarf.py +0 -36
  149. tests/knowledge_plugins/test_patches.py +0 -48
  150. tests/misc/__init__.py +0 -0
  151. tests/misc/test_hookset.py +0 -57
  152. tests/perf/__init__.py +0 -0
  153. tests/perf/perf_cfgemulated.py +0 -19
  154. tests/perf/perf_cfgfast.py +0 -18
  155. tests/perf/perf_concrete_execution.py +0 -41
  156. tests/perf/perf_siminspect_nop.py +0 -36
  157. tests/perf/perf_state_copy.py +0 -33
  158. tests/perf/perf_unicorn_0.py +0 -27
  159. tests/perf/perf_unicorn_1.py +0 -23
  160. tests/procedures/__init__.py +0 -0
  161. tests/procedures/glibc/__init__.py +0 -0
  162. tests/procedures/glibc/test_ctype_locale.py +0 -164
  163. tests/procedures/libc/__init__.py +0 -0
  164. tests/procedures/libc/test_fgets.py +0 -53
  165. tests/procedures/libc/test_scanf.py +0 -205
  166. tests/procedures/libc/test_sprintf.py +0 -44
  167. tests/procedures/libc/test_sscanf.py +0 -63
  168. tests/procedures/libc/test_strcasecmp.py +0 -37
  169. tests/procedures/libc/test_string.py +0 -1102
  170. tests/procedures/libc/test_strtol.py +0 -78
  171. tests/procedures/linux_kernel/__init__.py +0 -0
  172. tests/procedures/linux_kernel/test_lseek.py +0 -174
  173. tests/procedures/posix/__init__.py +0 -0
  174. tests/procedures/posix/test_chroot.py +0 -33
  175. tests/procedures/posix/test_getenv.py +0 -78
  176. tests/procedures/posix/test_pwrite_pread.py +0 -57
  177. tests/procedures/posix/test_sim_time.py +0 -46
  178. tests/procedures/posix/test_unlink.py +0 -46
  179. tests/procedures/test_project_resolve_simproc.py +0 -43
  180. tests/procedures/test_sim_procedure.py +0 -117
  181. tests/procedures/test_stub_procedure_args.py +0 -53
  182. tests/serialization/__init__.py +0 -0
  183. tests/serialization/test_db.py +0 -197
  184. tests/serialization/test_pickle.py +0 -95
  185. tests/serialization/test_serialization.py +0 -132
  186. tests/serialization/test_vault.py +0 -169
  187. tests/sim/__init__.py +0 -3
  188. tests/sim/exec_func/__init__.py +0 -0
  189. tests/sim/exec_func/test_mem_funcs.py +0 -55
  190. tests/sim/exec_func/test_str_funcs.py +0 -93
  191. tests/sim/exec_func/test_syscall_result.py +0 -39
  192. tests/sim/exec_insn/__init__.py +0 -0
  193. tests/sim/exec_insn/test_adc.py +0 -44
  194. tests/sim/exec_insn/test_ops.py +0 -83
  195. tests/sim/exec_insn/test_rcr.py +0 -26
  196. tests/sim/exec_insn/test_rol.py +0 -51
  197. tests/sim/exec_insn/test_signed_div.py +0 -34
  198. tests/sim/exec_insn/test_sqrt.py +0 -56
  199. tests/sim/options/__init__.py +0 -0
  200. tests/sim/options/test_0div.py +0 -54
  201. tests/sim/options/test_symbolic_fd.py +0 -59
  202. tests/sim/options/test_unsupported.py +0 -34
  203. tests/sim/test_accuracy.py +0 -137
  204. tests/sim/test_checkbyte.py +0 -53
  205. tests/sim/test_echo.py +0 -36
  206. tests/sim/test_fauxware.py +0 -202
  207. tests/sim/test_self_modifying_code.py +0 -65
  208. tests/sim/test_simple_api.py +0 -36
  209. tests/sim/test_simulation_manager.py +0 -147
  210. tests/sim/test_stack_alignment.py +0 -65
  211. tests/sim/test_state.py +0 -303
  212. tests/sim/test_state_customization.py +0 -54
  213. tests/sim/test_symbol_hooked_by.py +0 -49
  214. tests/simos/__init__.py +0 -0
  215. tests/simos/windows/__init__.py +0 -0
  216. tests/simos/windows/test_windows_stack_cookie.py +0 -58
  217. tests/state_plugins/__init__.py +0 -0
  218. tests/state_plugins/inspect/__init__.py +0 -0
  219. tests/state_plugins/inspect/test_inspect.py +0 -310
  220. tests/state_plugins/inspect/test_syscall_override.py +0 -90
  221. tests/state_plugins/posix/__init__.py +0 -0
  222. tests/state_plugins/posix/test_file_struct_funcs.py +0 -56
  223. tests/state_plugins/posix/test_files.py +0 -69
  224. tests/state_plugins/posix/test_posix.py +0 -72
  225. tests/state_plugins/solver/__init__.py +0 -0
  226. tests/state_plugins/solver/test_simsolver.py +0 -58
  227. tests/state_plugins/solver/test_symbolic.py +0 -153
  228. tests/state_plugins/solver/test_variable_registration.py +0 -46
  229. tests/state_plugins/test_callstack.py +0 -54
  230. tests/state_plugins/test_gdb_plugin.py +0 -35
  231. tests/state_plugins/test_multi_open_file.py +0 -47
  232. tests/state_plugins/test_symbolization.py +0 -38
  233. tests/storage/__init__.py +0 -0
  234. tests/storage/test_memory.py +0 -960
  235. tests/storage/test_memory_merge.py +0 -114
  236. tests/storage/test_memview.py +0 -205
  237. tests/storage/test_mmap.py +0 -26
  238. tests/storage/test_multivalues.py +0 -44
  239. tests/storage/test_permissions.py +0 -32
  240. tests/storage/test_ptmalloc.py +0 -291
  241. tests/storage/test_relro_perm.py +0 -49
  242. tests/test_calling_conventions.py +0 -86
  243. tests/test_types.py +0 -329
  244. tests/utils/__init__.py +0 -0
  245. tests/utils/test_graph.py +0 -41
  246. {angr-9.2.87.dist-info → angr-9.2.89.dist-info}/LICENSE +0 -0
  247. {angr-9.2.87.dist-info → angr-9.2.89.dist-info}/WHEEL +0 -0
  248. {angr-9.2.87.dist-info → angr-9.2.89.dist-info}/entry_points.txt +0 -0
@@ -1,4 +1,4 @@
1
- angr/__init__.py,sha256=rb5ZHrlnFUMxOQMkBWSM1ncRdKVGBynfJG6mffNtu68,3851
1
+ angr/__init__.py,sha256=2TAWUz5W98KyyjT9mmlBOKbCo7CnncPtkUA_Lbyda3o,3942
2
2
  angr/__main__.py,sha256=kaO56Te6h73SM94BVtASF00q5QbBbC3eBs9poVc9sVI,1887
3
3
  angr/annocfg.py,sha256=dK5JAdN4Ig_jgxTBZeZXwk3kAS4-IQUvE6T02GBZTDQ,10818
4
4
  angr/blade.py,sha256=B8QXVQ93jz1YCIlb-dZLeBqYmVFdMXI5GleP1Wnxjrw,15519
@@ -95,11 +95,11 @@ angr/analyses/decompiler/ailgraph_walker.py,sha256=sBz9Cn0GtdpuFt7R9y3oX6NFvETQT
95
95
  angr/analyses/decompiler/block_simplifier.py,sha256=X5kO97A1bEwSUfbwgj1cSO56qkhwPQZnIFi1DKMZQoo,17199
96
96
  angr/analyses/decompiler/call_counter.py,sha256=V3TIaSvLUy9vLEWErnvlCS--_ubGWQAeU0tqq6XYeOU,1205
97
97
  angr/analyses/decompiler/callsite_maker.py,sha256=B2lajS20_cTDWvUc-Py-2rP6UybNLd-qAjkuDJMIlX8,14938
98
- angr/analyses/decompiler/clinic.py,sha256=HHBsMgXR2Bm-_zcccSKYerflSOVHKrgnpjhjBT59vR8,80514
98
+ angr/analyses/decompiler/clinic.py,sha256=j97xFyuiflNsMkP4QggHMKEoiH-jxHTNOnk-T6VvK7c,81364
99
99
  angr/analyses/decompiler/condition_processor.py,sha256=e1WlxSr8FbtXi9qLHfvfBgUU-GKkoDSYUgMojHP9lBQ,49091
100
100
  angr/analyses/decompiler/decompilation_cache.py,sha256=NveTVs6IY3TTdgsLvTb3ktftM4n0NrAJIkqjXqQ3550,1119
101
101
  angr/analyses/decompiler/decompilation_options.py,sha256=vbuLF0Oze2ldFNpv2jWFnGG4sJPey527KAAbj9TRvAI,8240
102
- angr/analyses/decompiler/decompiler.py,sha256=YIsOoeELNvC88r3_kPGOv0Hvz82ZYNsPRd8PLWg6z6g,20197
102
+ angr/analyses/decompiler/decompiler.py,sha256=yeSD-amcmIb-6CP0pJlIXGXGvbla_Vkoaggi1QTDaxo,20362
103
103
  angr/analyses/decompiler/empty_node_remover.py,sha256=KhH88_x3A1nR22H3wrdp1gznLuFH12IBLaay4Xa3Law,7368
104
104
  angr/analyses/decompiler/expression_counters.py,sha256=P4RbtnyEy2lJnNUw_G702W-AIGaL4MszZ5fdrritwwg,2867
105
105
  angr/analyses/decompiler/expression_narrower.py,sha256=64VR1xdPVVoCLHOYRPacV9ecQb33rP7nC1l8rpFxTkg,3545
@@ -111,13 +111,14 @@ angr/analyses/decompiler/redundant_label_remover.py,sha256=kDGGFWWV61I5fbASiTQTH
111
111
  angr/analyses/decompiler/region_identifier.py,sha256=AfmnHLkVuaxUrFwabQMr_tymcueTkZV0Iv6s504Bm1k,44774
112
112
  angr/analyses/decompiler/region_walker.py,sha256=lTfweYbY4_a2f2yGztTKG6JtU1jXf-kaz-NHbX9nkXE,717
113
113
  angr/analyses/decompiler/sequence_walker.py,sha256=mw4RG-Act5_no_RyQcsxWZwva-n7FdH2a7w_uItGUpI,8428
114
- angr/analyses/decompiler/utils.py,sha256=-sRCFQ7TKSUDyizyQNifZEDiCGVcI3jOxkRY8IIJPMA,25965
114
+ angr/analyses/decompiler/utils.py,sha256=d_2O_1ZyRkP3Q3Dd7htRl1dX-W_PbmnyMjY94ih9pDo,26262
115
115
  angr/analyses/decompiler/ccall_rewriters/__init__.py,sha256=wbWqZ8xG6ZvzEApkAwMsNQFC-iwF3swG1YJsaf1cIrQ,102
116
116
  angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=PjfduEkFVcSBKUfGouVM5dekA4kO4OBUses58ewJnCk,20488
117
117
  angr/analyses/decompiler/ccall_rewriters/rewriter_base.py,sha256=gWezEKB7A_YnlfUDs8V8D5syoYAyIXSIme1BKQRoouM,498
118
- angr/analyses/decompiler/optimization_passes/__init__.py,sha256=O2dRGb-CFEGQKeR7YT4fyMIu_w5OIYNv8QwsyKLloFA,2938
118
+ angr/analyses/decompiler/optimization_passes/__init__.py,sha256=ZGwnBA0T3XjN40NKFHNxKmA9ZKlz0y9JSyfdvaH57FM,3166
119
119
  angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py,sha256=bjpEMW-Lqj5XW9NWUikGPcRn5scKNc8VvEjVMXxAuq8,5289
120
120
  angr/analyses/decompiler/optimization_passes/const_derefs.py,sha256=FEoiprXxns-3S0nFaIWm2DBW_aDMq3GZ-VOG3CIqcMw,10593
121
+ angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py,sha256=CP-WjyQGOw_mnUF0ZpC5C4syMxlx4Tvy0T_EIZQxXrY,4033
121
122
  angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=J7LRc3-DKfToxKVejnkHbNel9_56-7xsGyJJiTCwqsQ,17442
122
123
  angr/analyses/decompiler/optimization_passes/engine_base.py,sha256=7nnNZkVMqvikHCy9X11M8KLWbL8lF0DoLYPemETWP4c,10388
123
124
  angr/analyses/decompiler/optimization_passes/expr_op_swapper.py,sha256=vlPhWDyvuEmbGcd1ka8rS68F72Ty6Hw3J00KM3tWCus,4701
@@ -127,11 +128,11 @@ angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=l571
127
128
  angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py,sha256=9hhCcvE15MCM6KoJU1ba11hFiN6MXxYAb9FbntzYJbg,34328
128
129
  angr/analyses/decompiler/optimization_passes/mod_simplifier.py,sha256=o2AZIpj4NpOAaWOGbudDUfGJJAD2exu-HvNbwph3mi8,3124
129
130
  angr/analyses/decompiler/optimization_passes/multi_simplifier.py,sha256=_63Y2vMNLSXYM6_Grfs89Nu63i5YLxTPmxTR_Z6fwLY,10420
130
- angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=U2boYOhhNuIYg6NNUJQJIJhWQCzdivPtNY6G1lt6PYQ,13044
131
+ angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=yEd-_xH1YS1SivTkrZ2QmRxB01_D6fprii2AsDPOMx8,13401
131
132
  angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py,sha256=2_-nVKkvClCDykVDd29CRIT1ZCPdYBlSi96h9yrSOw4,7398
132
133
  angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py,sha256=_sTaGMQMFa5ATQIvNyL05UK8gCi_SaOckrZKyHZ2vfs,6470
133
134
  angr/analyses/decompiler/optimization_passes/ret_deduplicator.py,sha256=BwD92mD25Qx3nYqG-XTTgorL1hl_JqZ9YRM5xuGHJac,7828
134
- angr/analyses/decompiler/optimization_passes/return_duplicator.py,sha256=-Vz0y7Ujpq-k6E4of8CDYlgelzzbIGdYQsDIbsZFY6c,21463
135
+ angr/analyses/decompiler/optimization_passes/return_duplicator.py,sha256=b54paaiyF5Sk_E1AMTKrXLdGfuuvTmpktI4T7BLV6q0,20617
135
136
  angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py,sha256=diqUO-k1hq9OzuC7OLMyJJODhy3i1c5Tb7d9f7lx6mU,12147
136
137
  angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py,sha256=tIMZ4kDutUY-5jFrfA34tf3NufE7n33PcAlxz_mSebE,12304
137
138
  angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py,sha256=lwLc9QpOCTdSIb-0SK0hdxi2gzpABTk2kzdwBY20UOo,2980
@@ -193,7 +194,7 @@ angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py,sha256=
193
194
  angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py,sha256=HGIiC6c3C91VfcqxUHe9aTsRohwmMXOHZH_G_dbwwx4,3327
194
195
  angr/analyses/decompiler/structured_codegen/__init__.py,sha256=Glc4jBCr7lZckltN9XZdSvMrGHf0swXFyKTr_QQKdWE,290
195
196
  angr/analyses/decompiler/structured_codegen/base.py,sha256=nJPOoeJCbewchYdXjSE4S2b1-WN6pT3TxmCQMDO0azw,3845
196
- angr/analyses/decompiler/structured_codegen/c.py,sha256=3NzZAIHr-A1P1_24gWN9Bd8IwnF-TLt0DxV0luNuElM,131143
197
+ angr/analyses/decompiler/structured_codegen/c.py,sha256=ZW_bpR-g4SSRVxG5x6AfocuOL35WqsoIiLwzHqsKka0,131774
197
198
  angr/analyses/decompiler/structured_codegen/dummy.py,sha256=IVfmtcWpTgNCRVsuW3GdQgDnuPmvodX85V0bBYtF_BI,535
198
199
  angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=TMz65TkF_ID_Ipocj0aFDb84H6slolN90wq0tzhY2Rk,6773
199
200
  angr/analyses/decompiler/structuring/__init__.py,sha256=eSiT6xUpv9K5-enK3OZj2lNzxwowS9_5OTrjHiPgfFs,371
@@ -264,21 +265,23 @@ angr/analyses/reaching_definitions/rd_state.py,sha256=iruxr8VqKN47UgH3AL3JrB1r7v
264
265
  angr/analyses/reaching_definitions/reaching_definitions.py,sha256=CjW3Q7rj_fX-LQ09eACCPohXX44FT13ewWpvJQk-vr4,23163
265
266
  angr/analyses/reaching_definitions/subject.py,sha256=GVaI1jM-Nv2MWaCjJ-Q_54nSS3hvAaZthz14AJJNq-A,1995
266
267
  angr/analyses/typehoon/__init__.py,sha256=kCQMAuvsUKAdYFiOstBzMBCqpquJKJCQSe0CGAr2Rng,31
267
- angr/analyses/typehoon/lifter.py,sha256=IfkY27IyJ7QeQnVER89ZhdyScKLAoHCdVpcvtdqTy8I,1675
268
- angr/analyses/typehoon/simple_solver.py,sha256=hq8O0yXO2QPekFvU3R81OcautBhqSEASCQa7S7CqXcw,25311
269
- angr/analyses/typehoon/translator.py,sha256=8rJQEoN1jwUSjO6EwtEiQiWHQM4gwNqHsXwB2_VLzsc,8310
270
- angr/analyses/typehoon/typeconsts.py,sha256=KlwXgGnWnO7noyRGHZjW3E_b81Kwm4dIvJUNPC6cIno,4163
271
- angr/analyses/typehoon/typehoon.py,sha256=W9wvVe2F4vAJ_EGmxQg74AZsRu18mUf82fRYZ5-fB9M,8382
272
- angr/analyses/typehoon/typevars.py,sha256=qLNOOo50rAs9E8IXwVB8JCEiC30SskJjQUkDp_Tpp-o,13349
268
+ angr/analyses/typehoon/dfa.py,sha256=TdA5ts4-0xQtccJdz1fMPATIKV-gWgXqmKkTM338b-g,3519
269
+ angr/analyses/typehoon/lifter.py,sha256=8pdONjOHc5H2rOqpISPHJW5_tlwjgfovPCsQ-Z5odFI,2631
270
+ angr/analyses/typehoon/simple_solver.py,sha256=DOu6xOicKSz6PZ_ENN_RYQkloS-T29a4iqc_YYQKVrs,45513
271
+ angr/analyses/typehoon/translator.py,sha256=K3m0x0pDqp29YXS8BPLMbDmWdFpKHt3US1eBbAqM0bc,8610
272
+ angr/analyses/typehoon/typeconsts.py,sha256=4VYlzR7xVDIzwx_hH0KXNNKTYFTfMsmtqTIpjrd8Ev4,6990
273
+ angr/analyses/typehoon/typehoon.py,sha256=2VO2pCulrwgZncxRN6nJvNQozaDUsz98kt94boDoniY,9353
274
+ angr/analyses/typehoon/typevars.py,sha256=yZX2rdbHMPdsZXD-HJlbULVkUaXESqzv_ajxgHPzPUA,15783
275
+ angr/analyses/typehoon/variance.py,sha256=VPuBrPmbw5RgNG5SUTNFEd5rr4v3V_qD1vgilqWvdrs,158
273
276
  angr/analyses/variable_recovery/__init__.py,sha256=j2SZyfzCAagqNTj0IcYJtOx4b3oAvhEY9GR3hb0bx4o,105
274
277
  angr/analyses/variable_recovery/annotations.py,sha256=eAifcWVmb1xUmEGtpiy8PzIupSuZtmEDEiUav-3_z20,1403
275
- angr/analyses/variable_recovery/engine_ail.py,sha256=y0KE4Zoiq5WbcDUDqGsKFuj6EyIzk3KdZYy7tJWi_5c,23877
276
- angr/analyses/variable_recovery/engine_base.py,sha256=LxUV7LtQWkEkPIVF8WokiM28Ui2R68ulNuQ02UUO-_0,40263
278
+ angr/analyses/variable_recovery/engine_ail.py,sha256=jymXLtwQEOAnurmCulU3IPRCOQ_ddmfLzCDaVx0BsP4,25003
279
+ angr/analyses/variable_recovery/engine_base.py,sha256=EpGUca04RINRdICYe2XkbstTHCFAMd8DqqJHSzzH9_A,40651
277
280
  angr/analyses/variable_recovery/engine_vex.py,sha256=oDmUaawW8sKJmbtHadubJmiuYuFeORn0Q-BTRG-rUTA,19046
278
281
  angr/analyses/variable_recovery/irsb_scanner.py,sha256=3lUK_jfJCVEZQ0QvhwsmgCn2RAIj_0FDDn8ftggubjA,4701
279
282
  angr/analyses/variable_recovery/variable_recovery.py,sha256=F7dOWJVdV2kE1jjIyqEDgp0bZ03_cReEeHSPKPnhI1s,21802
280
- angr/analyses/variable_recovery/variable_recovery_base.py,sha256=dMRqvsLmISDENaSZ1jIwkNWbHo5rOxrPXrnyWjVz0T8,14418
281
- angr/analyses/variable_recovery/variable_recovery_fast.py,sha256=1mP18dJbDcwimv4pwMqDqomIk8VvborhQACs6LquUZQ,23663
283
+ angr/analyses/variable_recovery/variable_recovery_base.py,sha256=eEBxD70LChMM97zk3H19GAGct3MCdWgIQX5ztxw0r3w,14821
284
+ angr/analyses/variable_recovery/variable_recovery_fast.py,sha256=l2O6TRAoENsLnWQu60n_pmgAIyXrk86f1JNzlCJLLi0,24125
282
285
  angr/angrdb/__init__.py,sha256=df9W7J7c4rD5oYx6fZGf0BIBwOqVVJlIJTDrAtQChqY,231
283
286
  angr/angrdb/db.py,sha256=HZL4tvxNkxwqLKNTGSz0-5n07OvWcXoIqWWtpBy-M9k,6459
284
287
  angr/angrdb/models.py,sha256=iFEouZNGa5gJK8U5-vy98CErrgeM5E3CGbSKOXjoMfU,4750
@@ -414,7 +417,7 @@ angr/exploration_techniques/symbion.py,sha256=o-o_ZdbSMZCjA0_uV4TJV6jdtZXq2cO3KY
414
417
  angr/exploration_techniques/tech_builder.py,sha256=UWmOE7GqQkZj_X_kR4Un7rDZyB4oL84Q6L-nLaU1i70,1586
415
418
  angr/exploration_techniques/threading.py,sha256=ySZsaltVJ650ZHfyvm_LLYz13J5CT6kwV9E4bXeTDVY,2976
416
419
  angr/exploration_techniques/timeout.py,sha256=Q1auu2Nw0VKOqpMaI9E5KnkKWe_sygXSIe352tUtJ2U,923
417
- angr/exploration_techniques/tracer.py,sha256=Nxk1nbEJ1L35rzpdRwSiNUac-1QJghAeLqzfsr_A8QM,50198
420
+ angr/exploration_techniques/tracer.py,sha256=yZ12LOS9aHk5WQ16ntM1rKFacoQfAc62EPg5Lfn3b2E,50249
418
421
  angr/exploration_techniques/unique.py,sha256=fZ2n1xTtNLbNVMzrhbvy2ouRWE-5BR6bgwJQiJZTRRY,4413
419
422
  angr/exploration_techniques/veritesting.py,sha256=S3d40zASHwqfblC42jLTrjb79z8rHdhhbvKEjTZqmFk,1350
420
423
  angr/flirt/__init__.py,sha256=UTjDOlVPnvb5u1zYOvSrI_8F-RllvA_rWCEF1XGEswk,4428
@@ -476,7 +479,7 @@ angr/knowledge_plugins/xrefs/xref_types.py,sha256=VR3xLQQ-gUg25oX0OL3BJHyQRlZh2A
476
479
  angr/lib/angr_native.so,sha256=XRfNDBnZNNJX3Zrh4_E7RYDe7gHsYxjPFUHfQ-A1RBw,24466040
477
480
  angr/misc/__init__.py,sha256=Ct-Q6-c-Frdz5Ihkqmou3j_1jyJi8WJXlQxs-gPQg0Y,237
478
481
  angr/misc/ansi.py,sha256=TKrx7d_MViChHh5RBR2VLufNrujTUioJWsZS5ugk8k4,807
479
- angr/misc/autoimport.py,sha256=6WT-Z6wf5NiacQhKZmR4d2bPOvNrokA7Wg0g2MUXSuw,2371
482
+ angr/misc/autoimport.py,sha256=K64D53xl3xUqBulXAyaypzqYRBjjm4HDn6TlJsBouKw,3426
480
483
  angr/misc/bug_report.py,sha256=JJ0IkN9-VAjqJjdfNaSNlV5GqRyu-B9gus3WA1WnLbQ,4241
481
484
  angr/misc/hookset.py,sha256=TzhmQYf7BP6fHKXYu_1tHalrHAmP4IVmVkh_Hlp8fS8,4486
482
485
  angr/misc/import_hooks.py,sha256=SpcB3ML_1HTO3JeGVsAD6GFEpxy2C4EMpLzH9zSq8Xo,1943
@@ -498,7 +501,7 @@ angr/procedures/cgc/fdwait.py,sha256=bYccIjGqa-pHXNz_DFVdg6zDTkBk_QX0u9pCwJvOP9o
498
501
  angr/procedures/cgc/random.py,sha256=1dyl58S21I3-LMGi8HlD9VZ0VN97wA7pBIeU1fZi4QI,2334
499
502
  angr/procedures/cgc/receive.py,sha256=qNi7ZX-411q3i-j4z-ylo6jPP5oCky--IP_CyTScWHI,3758
500
503
  angr/procedures/cgc/transmit.py,sha256=CSWX4FLeW2-42_QVo2FMdmV9GJuYqgtTybtYbcMgDCQ,2368
501
- angr/procedures/definitions/__init__.py,sha256=uSTPfnB2QYSOWdr27tPoCUOnArGXxW7W5oiKKsZJKdQ,27764
504
+ angr/procedures/definitions/__init__.py,sha256=xO3LUvd-550Kx0bsidex4Jx6CWwG31pzrSQoMa6qicw,29187
502
505
  angr/procedures/definitions/cgc.py,sha256=tEYT-9MOmlBxehMYP32Fog9t8GczMdA84ienDwcPdyM,460
503
506
  angr/procedures/definitions/glibc.py,sha256=JYvXHEkNMJhyzoCvnIJs6Aa3u_pTtjHuw-mbCkNKWBY,394113
504
507
  angr/procedures/definitions/gnulib.py,sha256=fH8KbaUj6bVOG_cv-JiaffWkVN-YHFbWwvRlE8Mkr9c,1081
@@ -506,7 +509,6 @@ angr/procedures/definitions/libstdcpp.py,sha256=lhV3EGR45spEo_vNFNw2vIdPJWdByqar
506
509
  angr/procedures/definitions/linux_kernel.py,sha256=uaTTlulqv2eeUmIkQ70-pvLT2-ay7rqMBjPazhh5RbQ,238887
507
510
  angr/procedures/definitions/linux_loader.py,sha256=sW7eQ7Dk2co_9x0ql-YsWYB8JYs0YQjGz-IM_ukp5c4,219
508
511
  angr/procedures/definitions/msvcr.py,sha256=9Wvo9U8ARM93oYmID5pBSCAr9Yg0TxjXAj7Gi_Lks2s,601
509
- angr/procedures/definitions/ntdll.py,sha256=2X_f1WvpBncRS6nN6PwatRKtgdn6cMYb4AnvLEhCYN0,404
510
512
  angr/procedures/definitions/ntoskrnl.py,sha256=u4ZBSOArfie7Sp8jUNv_L5n_7lmQVRR2w6RoPf6RR_s,317
511
513
  angr/procedures/definitions/parse_syscalls_from_local_system.py,sha256=9OcLLDNrNb6CifvveD_yTzfhMYEN2iK46nNNjMyz3I0,1795
512
514
  angr/procedures/definitions/parse_win32json.py,sha256=zFfq0SpBjgzIDUisbzA4zTvISGslOEPHe4V2zDbqepE,84681
@@ -1191,237 +1193,23 @@ angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py,sha256=i7oyY
1191
1193
  angr/storage/memory_mixins/regioned_memory/static_find_mixin.py,sha256=I8O2DFCCALahx7wnAtxziZ3mEASRZHaY1OhnN0KMblk,2240
1192
1194
  angr/utils/__init__.py,sha256=XjOtDNWPHZZjayRA6OxLra78wBtR-pY_A8EC3nqCGkE,980
1193
1195
  angr/utils/algo.py,sha256=WZrCP3a1RnbBpDw6BQQNWjng1EghMmBRlDyU83tMLuM,995
1194
- angr/utils/constants.py,sha256=LpeZTr9Q_FV0avWymiCbY4V0_ZhuY5HLL1la6FFqsmc,179
1196
+ angr/utils/constants.py,sha256=hxSJHIILsDP8ZOpw76BxMLu2Q_s2-rxTjACh7RL5wJs,209
1195
1197
  angr/utils/cowdict.py,sha256=Xn0hu8-QywCXOAPhgLK-VRGwXb3NqA-CgqZdlXrA8fs,2079
1196
1198
  angr/utils/dynamic_dictlist.py,sha256=80kE4ySWF3dAffUt5qlyUfK6h0A8jOVMMaNG8RNUz7s,3107
1197
1199
  angr/utils/enums_conv.py,sha256=YdnZzvuVc_BW1EuC4OtEo7LqB35XkPrXICyWox8Posg,2091
1198
1200
  angr/utils/env.py,sha256=wWlmjLp7CtafKItn7xq2RW3UzGGgxw58Wc8fSm3EZJQ,363
1199
1201
  angr/utils/formatting.py,sha256=QOw75CLSrttGTn2aYQzBFIBhZj40J9ESQZxJOz0BexA,4217
1200
1202
  angr/utils/funcid.py,sha256=PCOvMfRrt70Es1cMlVqKFVCmHfELXQHvX08Uqabn7Nk,5006
1201
- angr/utils/graph.py,sha256=HjUzom1Mfu2j6aVU7j3UHvSPju_0UPwClMBNu85qlqU,27838
1203
+ angr/utils/graph.py,sha256=z36Q_bitE9yu0CFRhrRAj6hAWe-dSvzJvDHgqz6tJMQ,28417
1202
1204
  angr/utils/lazy_import.py,sha256=VgN0-cMsr6XdGIq56Js1X8YecfPdW9Z4NrB3d2jD-5Y,308
1203
1205
  angr/utils/library.py,sha256=MYbY6rvC2Fi1ofbBHynh6-cdmaDETxj8hBz1gxKvsQQ,7178
1204
1206
  angr/utils/loader.py,sha256=QdkatPiyRfz5KdfCzRI1Xp3TJL_Pa75wY0dsILgMbwk,1944
1205
1207
  angr/utils/mp.py,sha256=xSWDnZdkLaTwGXntuSDwb2tIqMsIxJpmLrxd_YWBILw,1822
1206
1208
  angr/utils/timing.py,sha256=uOowCP8kotDrKDOjlAod-guBuYkAA8zEtiAwpdwMlIU,1334
1207
1209
  angr/utils/typing.py,sha256=_I4dzZSh1_uRKQ3PpjXseA_CaJH6ru2yAxjICkJhfmI,417
1208
- tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1209
- tests/common.py,sha256=JBh8dHmqwfAxmhl_3lHpno8m2s70AXmYLRgCkJ9E_tk,3983
1210
- tests/test_calling_conventions.py,sha256=_TAAnGejPTAv4evuigaMDpf2KHDhR9lWXG_ptkwnzd4,3392
1211
- tests/test_types.py,sha256=IbuNpWjWDo_dAxwYjtMbXBpi-dD-cbLPTb69W_9T1Ho,14468
1212
- tests/analyses/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1213
- tests/analyses/test_bindiff.py,sha256=Y4FmpnWDdsHd4UoJ10vPnolSUxRY0C2D0NMh14IWcwY,1851
1214
- tests/analyses/test_block_simplifier.py,sha256=9WQEzPrtw63xAfnndXWZjjPxjULDuoJhL9oJZGUQxFQ,3594
1215
- tests/analyses/test_boyscout.py,sha256=lSWGviQfa2N_srSkTpbRMyr93aEAG9UGCVrfnHxYRTk,3119
1216
- tests/analyses/test_calling_convention_analysis.py,sha256=PcHYZXoBBl5YrBSysY7xXGFQLDjvLb-yxozDTVqY4Mk,13859
1217
- tests/analyses/test_callsite_maker.py,sha256=-a05ja-pJ16iQFrkPtUNe6ezmrS0JC2AfpwUyWJxfKI,1910
1218
- tests/analyses/test_cdg.py,sha256=vKcKUjYF4oy3TjkJL3itSyGbl0iSbAyj3wSymzaHeHQ,4546
1219
- tests/analyses/test_cfb.py,sha256=5lV3QHvDqQlyHvtVXkxiMdL091uUM13wnzGl8n1Hakk,916
1220
- tests/analyses/test_class_identifier.py,sha256=UaswarpeuBDiyaEkjWng_AwxU-kg_x-ZHR0u24mNqhU,1428
1221
- tests/analyses/test_clinic.py,sha256=I1Su7BtiTPWdSf3l90vy-lHAA75_lbzdj-g_syIJlLM,743
1222
- tests/analyses/test_codetagging.py,sha256=JMTdmJuaW_rZNcg4twVWKEjs8SQKdd8J8jttBPLorQ0,1026
1223
- tests/analyses/test_constantpropagation.py,sha256=voSC6P3Z2N2PLFrW73d9_fut4P-ODFADtSdjfoR_Ym8,3028
1224
- tests/analyses/test_ddg.py,sha256=PcCbM3VQciTO02-XkjkCJeu5wahsXyNvKyyKHja36ao,3176
1225
- tests/analyses/test_ddg_global_var_dependencies.py,sha256=Dv9ObVLuCuf8pkhUK2fL0jC--NcnVjgRj1MyG2Xggxk,3613
1226
- tests/analyses/test_ddg_memvar_addresses.py,sha256=anbiZ8s1hgu6XhDxS_zVfb43DtHQLrmNWRhLdMk1zCw,1258
1227
- tests/analyses/test_disassembly.py,sha256=tgNxgiqK836gSQKu2raddSHQd8_Trt2TZwVxi-oVirE,4786
1228
- tests/analyses/test_find_objects_static.py,sha256=SY5ZTD7-N_976iAL7AqU9mtEIbSDesyEWH9v-gDFfyc,1157
1229
- tests/analyses/test_flirt.py,sha256=oe7m7KWWjnLUSO-Osb3rOR3ntiJq4_pYI00HfmjSMgE,2129
1230
- tests/analyses/test_identifier.py,sha256=xBx-86WSTxAxRWCa5ZNStGgWi1f2xAOc2dWz5d94T8w,972
1231
- tests/analyses/test_init_finder.py,sha256=F3ze2iJ_dfRIwx1m2fUQFF0-c5G4kNYXKB9R4j_H4xA,1310
1232
- tests/analyses/test_proximitygraph.py,sha256=Q5YLgciyhqYuHd3LVx6vWI7ItDCrUqgvVxbceWs8Mfg,960
1233
- tests/analyses/test_reassembler.py,sha256=37eendD9zsVoI4W3okGENDS49oYXE4bq8OCUWBFIKIs,13715
1234
- tests/analyses/test_regionidentifier.py,sha256=cNUQV-CaCOpon5RgkPaXnpp8QTf1sYoU_C1RGwwnsCI,666
1235
- tests/analyses/test_slicing.py,sha256=9nj3YcyUlUTg0cgQuA-rMWA8ZtmKsWjlE8E2LxYQOnU,6052
1236
- tests/analyses/test_stack_pointer_tracker.py,sha256=pIk3i3ZsANQ-IUEGgKjusF_QWrreh-bPO1YBZIz3Nx8,2425
1237
- tests/analyses/test_static_hooker.py,sha256=wVF15hBLPRRHZ8-ihflZR7rkw1qPibKuE7n_POBIa0U,833
1238
- tests/analyses/test_typehoon.py,sha256=C-_yz-eBvPF2UsMTpoxPwToBEqd4kTWPzFYEEyFXgag,1793
1239
- tests/analyses/test_variablerecovery.py,sha256=1IlhVTmBJBm9IcAwQXv37TkgaQpJA6mxs_sSezd2v4E,17075
1240
- tests/analyses/test_vfg.py,sha256=KbhnDMMB7pG7Z73dpCG7k8_Kok06FqrJniVgN0kjQ2o,7885
1241
- tests/analyses/test_vtable.py,sha256=toM3K_M1ZvfFj98TCmqD-WR3Upm9B7VYRRI_pSubGns,920
1242
- tests/analyses/test_xrefs.py,sha256=44PvboWQpnrxgoLqIwynIBdZqDJeuN57SWqvvtvKios,3107
1243
- tests/analyses/cfg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1244
- tests/analyses/cfg/test_cfg_clflush.py,sha256=UTr4b8wcOlIoE9ldSrAy6fQF2hPxm11HwqHhs4hUxnM,1333
1245
- tests/analyses/cfg/test_cfg_get_any_node.py,sha256=TocYKnj4EDcPhAzNsVXi7YQoIvo16SccvcGWGFVDzws,933
1246
- tests/analyses/cfg/test_cfg_manager.py,sha256=aKoGPkZvjUFnJDt5B2jHffhn1PlaxURFE7NAEG4uJvk,957
1247
- tests/analyses/cfg/test_cfg_model.py,sha256=bM1-lRTdjqWpoJMC-6V3mvTGoITBa6IIH5u1SRhSxJo,1633
1248
- tests/analyses/cfg/test_cfg_patching.py,sha256=URD-mO-YQWtzqY2o5p0UDnnvtOZln4Fg0XY-JDMP2Ho,14193
1249
- tests/analyses/cfg/test_cfg_rust_got_resolution.py,sha256=SeYjFaXoU3bvr7sVMoG9e9aTUdc4Di895EMRSYz3bzA,1138
1250
- tests/analyses/cfg/test_cfg_thumb_firmware.py,sha256=VpZ52hp4L01WmIJoa-j1LVGdRNiBVqjz0TFSEvRa8bI,1767
1251
- tests/analyses/cfg/test_cfg_vex_postprocessor.py,sha256=wVj2LLT2ibo0SsQXbPbOrIFG03Z7nMxpBXZV88wox1o,627
1252
- tests/analyses/cfg/test_cfgemulated.py,sha256=yf9YSHQibw62Vf1ixu7pb5Uo-2rbhYdcKaEfZn-UkG0,23341
1253
- tests/analyses/cfg/test_cfgfast.py,sha256=Qmne4A9CvgZSEHcd8Xsd4AHKelyKbjU4OA3hjvO8H_A,41019
1254
- tests/analyses/cfg/test_cfgfast_soot.py,sha256=oq9P3FH89V5wU5HSwfSOiN2PflevOKHgVFgPWANPz0o,1094
1255
- tests/analyses/cfg/test_const_resolver.py,sha256=GOgiqISS5BC2Ts4gSx1L6id54w2kEHUH4ENvizVT3I0,1178
1256
- tests/analyses/cfg/test_iat_resolver.py,sha256=_tGaLI07TsOekyk5TZI0hg32wKptWpBxgkNPAv1IFck,989
1257
- tests/analyses/cfg/test_jumptables.py,sha256=SNf62X7jkblyLROEDV97pWc9ztTRA028HGjC7a0iUGM,91793
1258
- tests/analyses/cfg/test_noop_blocks.py,sha256=WnTxKbvkuPU1uaPv-JaZFCqdz2wG7XZz4EplIuFAm6A,2110
1259
- tests/analyses/cfg_slice_to_sink/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1260
- tests/analyses/cfg_slice_to_sink/test_cfg_slice_to_sink.py,sha256=Pbg5FfXOZou-KDIfdzZBrCzEoOIN9yMwzU5Lvc74EDM,3062
1261
- tests/analyses/cfg_slice_to_sink/test_graph.py,sha256=K77zi-kkcdsazokuk4pCr_qPExFr0OtfOcb9FShENhI,4515
1262
- tests/analyses/cfg_slice_to_sink/test_transitions.py,sha256=Jh5g8MPny5NcD4Ubg0cMgR0hNi_SCMA2CE9bmhopodo,698
1263
- tests/analyses/decompiler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1264
- tests/analyses/decompiler/test_baseptr_save_simplifier.py,sha256=K7E87Gksi1rNDhft1w0KuavVwzijRpdUkwLcEriQjlY,3006
1265
- tests/analyses/decompiler/test_decompiler.py,sha256=x4PFjB_C_GYpvQAPoOpECUVMmL_TY04g2YQ3UbwQGbI,151967
1266
- tests/analyses/decompiler/test_peephole_optimizations.py,sha256=H8amGt72-KwsPamy9h3pgRVhZ-fzhVXkkUzEn_YgO6Y,1648
1267
- tests/analyses/decompiler/test_propagator_loops.py,sha256=zOP3vH5ldnutlismSrGH1JfYsTUIn872Jcb8CYanmro,3268
1268
- tests/analyses/decompiler/test_structurer.py,sha256=_SX5ps4l9kG0ovssuplgSL9c-0602g0r85RjVHzWp6k,7782
1269
- tests/analyses/reaching_definitions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1270
- tests/analyses/reaching_definitions/test_dep_graph.py,sha256=29-lG1bG81rGaeZfCBiVagQDl_y8XyjLpaxyRiV80PA,14050
1271
- tests/analyses/reaching_definitions/test_function_handler.py,sha256=LNHOCANldD5bB14T-7KpCEI_C7UW5ysMMhn1YGaeBAU,5158
1272
- tests/analyses/reaching_definitions/test_heap_allocator.py,sha256=3Z0VPZCF2eScbpVBWNQsKwQwc8v7QI3oGdHLlQgFtJQ,1819
1273
- tests/analyses/reaching_definitions/test_rd_state.py,sha256=qS5Qd6lptmQzmFlizwPwtOQePDTfKwZnli9dLhVD4FE,2868
1274
- tests/analyses/reaching_definitions/test_reachingdefinitions.py,sha256=FRALgbTyZMdwfOQGpEnzwGez9V6jGoPtBCUkktbWrik,20075
1275
- tests/analyses/reaching_definitions/test_subject.py,sha256=VXZ2WDxlT1EV8dbOf5OuidJ_ffKUr-BwqER2Q3kGL3g,2659
1276
- tests/engines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1277
- tests/engines/test_actions.py,sha256=46rvcGYMOlzRU7kAS3m0mjFhygjDITbYvmUA5-C4lFc,809
1278
- tests/engines/test_hook.py,sha256=RuwSgkxo1-kqAlwxfr353QMxeGonO4jwpz2G09Vbd68,3493
1279
- tests/engines/test_java.py,sha256=fcvTSHBl7KYUOTlNN6Fmh0o4YShxP-6B169GAYbPfts,27304
1280
- tests/engines/test_unicorn.py,sha256=eDkvljRHbO3eNXOODW_nM_d-FqALzo_C6FZEH_pPfso,22646
1281
- tests/engines/light/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1282
- tests/engines/light/test_data.py,sha256=ybvMB3XaqME0qnwY8zzaQD-OuFBjNSo5YGtFOs0I25g,405
1283
- tests/engines/pcode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1284
- tests/engines/pcode/test_emulate.py,sha256=qds-kVdKFH0CUKU6H7reXOVuixVat8s0yHpXoJmFNzA,19660
1285
- tests/engines/pcode/test_pcode.py,sha256=qLTOUm9sCAQzQNDK_6i3meF9Kl6ucllb4tZ7jz14f34,2773
1286
- tests/engines/vex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1287
- tests/engines/vex/test_lifter.py,sha256=zj9jnWX6LDTb6YCNyUqEqlptFyf0b6w8cyjXtEszzxo,5426
1288
- tests/engines/vex/test_vex.py,sha256=fS2Kc0eDuzB5kDVhkXrjq3ewkYn3Q0KlxwblmUMcX20,24520
1289
- tests/exploration_techniques/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1290
- tests/exploration_techniques/test_cacher.py,sha256=LSKyPIC8UrgBDoQL1oScToFRcGY_pVW5Bnmxpr0Fzuw,1422
1291
- tests/exploration_techniques/test_director.py,sha256=ZmIQvY3wLh_h_HaaCcjmVOQEIwxOK-kRpyx_dVm8JUQ,2198
1292
- tests/exploration_techniques/test_driller_core.py,sha256=jlsxTs0piAchv2n3WUsR_I5-vBYjt-QY7FkHRA0CtBs,1574
1293
- tests/exploration_techniques/test_loop_seer.py,sha256=8A8uGwc10MVzVZaRv2A_sRY8ifUghvV49bTThUnw60k,6761
1294
- tests/exploration_techniques/test_memory_watcher.py,sha256=NQJ4v3uXVzc2foIgBvVIF1E9GlXAsKRVr_oIfDi5G6o,1301
1295
- tests/exploration_techniques/test_oppologist.py,sha256=thOJA5oPqRSWASMbbRzk1eb0T0DS6ajRm8wWaysNfgs,2312
1296
- tests/exploration_techniques/test_spiller.py,sha256=hYZWrnD7U3sTcJPWZ1EOrFUIUGm2R66_wPyxAZpGHvI,2457
1297
- tests/exploration_techniques/test_stochastic.py,sha256=F9N44G1V8PmSB81klCKif2IR-_JLV5edfsBly6XqtAc,1170
1298
- tests/exploration_techniques/test_tech_builder.py,sha256=9YXrsT02Ev23R13_6mxTjDpQfTzkPiewRpoN02-_gxg,1730
1299
- tests/exploration_techniques/test_tracer.py,sha256=scu6SC5KCM_dTZgUZr-QfnXfv-LNQMWBsc54PO6in5A,35166
1300
- tests/exploration_techniques/test_unique.py,sha256=_1isddQaETs95qTKsfZEr_njb9r9KlVwQPBIeYZobVk,1112
1301
- tests/exploration_techniques/test_veritesting.py,sha256=wKAGK-tD1LvTo4Emz0DeId1j2rey9mrAxUlngHo4zaY,4262
1302
- tests/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1303
- tests/factory/test_argc.py,sha256=qJKRm5XufdxnH5tzQnffVWQjPfrzJJ7AVtK4ZOFGbHU,3594
1304
- tests/factory/test_argc_sym.py,sha256=fvlI_sAcAywoN4UBtItmajsbef7YftxWzT36t28jnps,4358
1305
- tests/factory/test_argv.py,sha256=4om-2pBjsbwGX9CH9mUfxsxX1teMr-ccDt9FC1iUs4M,6069
1306
- tests/factory/test_callable.py,sha256=7cPSF3oPA3rpKsnuYHWKq22jXy-BHcba1PYBvW0uvKY,8930
1307
- tests/factory/test_windows_args.py,sha256=kQG4h8zhX-1v_etQCL-3F-FlNpDxfM4jWa6nNfDAFrE,1034
1308
- tests/factory/block/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1309
- tests/factory/block/test_block_cache.py,sha256=qul1Wk11Yb03d-9nLClw6jCuWAH1ayqsOiiCnx0dLHE,917
1310
- tests/factory/block/test_keystone.py,sha256=r4romirVmTwWCv8cB3EXGnsjJ66RVRDldc4Ayc_ldE0,3384
1311
- tests/knowledge_plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1312
- tests/knowledge_plugins/test_dwarf_variables.py,sha256=04cmXPTStR3UGlk5IwKMAgkc846BT7yOwyhAA6G4mbM,9028
1313
- tests/knowledge_plugins/test_kb_plugins.py,sha256=GciYETCdNb44zSnAFqjf8I-Ph3CC151s4ON-iQMMa78,3179
1314
- tests/knowledge_plugins/test_kb_plugins_dwarf.py,sha256=L_VnS8yGDXCjS8emYNiZsTBEnkUlix5-CK6n9mPuHq4,953
1315
- tests/knowledge_plugins/test_patches.py,sha256=QLrCpJ26OM49zfVk76rRVQ-a0GvzAhjO5Ee-nI55yRE,1360
1316
- tests/knowledge_plugins/cfg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1317
- tests/knowledge_plugins/cfg/test_cfg_manager.py,sha256=pgAVvNNazzNQq7ckRJAWNLv3sCY2Qvdk7UnBXR6pGH0,1109
1318
- tests/knowledge_plugins/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1319
- tests/knowledge_plugins/functions/test_function.py,sha256=YJ3HPfkSRJUIzs1lPcw5LPEyqgRGdjEvQcbc2_VVX6c,2895
1320
- tests/knowledge_plugins/functions/test_function2.py,sha256=E4yB5o5CdtRfXlTfS7l7RE1OsHqKI6P-BxDQJaV6Gro,3062
1321
- tests/knowledge_plugins/functions/test_function_manager.py,sha256=1n5G9kSMlE1AfNl0tMmNdf1vXUE6-rCKHCvJMBNZEj8,4991
1322
- tests/knowledge_plugins/functions/test_prototypes.py,sha256=ntZb4yjJXxzi5KS36N6wbFSB1O76gn2mG-0VipCC5Z0,1894
1323
- tests/knowledge_plugins/key_definitions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1324
- tests/knowledge_plugins/key_definitions/test_atoms.py,sha256=ISMCQivOpaoyFpBzbQeAjpFSF2qcJl-Ssv6aqU8OtrI,687
1325
- tests/knowledge_plugins/key_definitions/test_environment.py,sha256=myBYtfLlU2bX4uEqvXC7xutJ3i2Kru3ubXoC3Nc6TSI,4807
1326
- tests/knowledge_plugins/key_definitions/test_heap_address.py,sha256=WOOl2dI3bcJ1OgOYfcOg5H5yizwvHvVEqlly56mQil0,815
1327
- tests/knowledge_plugins/key_definitions/test_live_definitions.py,sha256=7GtHwNQbvK1pcb3xUCgTl66hOx9L2yF5SBem_SFqieM,3330
1328
- tests/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1329
- tests/misc/test_hookset.py,sha256=egvXy6ltN8yP4I0Jzl4u6WRNjcq3Xb31WoEQJt1z0LY,1495
1330
- tests/perf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1331
- tests/perf/perf_cfgemulated.py,sha256=KeG40LxLgeIlkh5eU0X3Bo6Scyu0PuNQBNQ_8nCqNns,482
1332
- tests/perf/perf_cfgfast.py,sha256=g3cgpbpX9FkZGnCR16Y7Lzrz3SSXQmVh9fQ_9MQx-CY,405
1333
- tests/perf/perf_concrete_execution.py,sha256=QUPqKsJJTEJN2NB7roUQPLFLzhGM3pqQ-hQTMV4EpxI,1102
1334
- tests/perf/perf_siminspect_nop.py,sha256=DPrO7X2SOkEJg7yrgN_MSKNO7fdcOgSdTWGoPF37uPU,933
1335
- tests/perf/perf_state_copy.py,sha256=TlBMGkhgxy2520cFQaQnqrawieLs-j3l_-HeAQ5Smbc,716
1336
- tests/perf/perf_unicorn_0.py,sha256=8ba4lEnT3k5ID5cExi7tDJdkriQeWEIJbMEfEU951mE,767
1337
- tests/perf/perf_unicorn_1.py,sha256=Kgl4HuToFr7_1I0YUb1-tuqpgzkq9gej1SkTbeCz8SU,606
1338
- tests/procedures/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1339
- tests/procedures/test_project_resolve_simproc.py,sha256=2LbVdyW_UO7Edt8DHhq3e-OCeA308sIGn_JETVX9Zf0,1663
1340
- tests/procedures/test_sim_procedure.py,sha256=SgAFQgAddZGAPDfPHnkN_GWOu2O_sJ0UlKwTnEZJH9U,4208
1341
- tests/procedures/test_stub_procedure_args.py,sha256=cOUaSx3-C9b_XySoMxW3wk8DoQvQ68K5pXD9kdMw0g4,1853
1342
- tests/procedures/glibc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1343
- tests/procedures/glibc/test_ctype_locale.py,sha256=Nk8tmx2Kz6RmCydGkPf-1pPNOyEC10yQ8bUqv2W3eU0,6516
1344
- tests/procedures/libc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1345
- tests/procedures/libc/test_fgets.py,sha256=CnuKMnBDoawrkfJtN7VgFR1-MBBPJ0NOxkwi64WWDvQ,1731
1346
- tests/procedures/libc/test_scanf.py,sha256=IGaEEEo9gwkxK-X0uSCqXkOe6QA8XDomVEJysITsE4c,6993
1347
- tests/procedures/libc/test_sprintf.py,sha256=Xj09X8QCnCNoBGcVCuC-WoDNZSCpgkgZPdDuoxnphUU,1401
1348
- tests/procedures/libc/test_sscanf.py,sha256=5Xmx2-5dAaS4iCqW_zE0ic8L0acK42JY_AfMxioA82Y,1887
1349
- tests/procedures/libc/test_strcasecmp.py,sha256=UrLiE8ioBGgEAE8Jr94TwB0DlXQdWTglRYqpvfXweZM,1065
1350
- tests/procedures/libc/test_string.py,sha256=ZNKjbRSlSKEHMvnTKjioAqV7ygdL9MlpxvHZMtNVV_8,44753
1351
- tests/procedures/libc/test_strtol.py,sha256=ACe9Y7fCMkyMI7kOo3xvQyfZ3jw3R7K3Dur7tPF-xnw,2619
1352
- tests/procedures/linux_kernel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1353
- tests/procedures/linux_kernel/test_lseek.py,sha256=auoKwjCxID1NI40OzZycVQrH2p1o4AbtSNUlrri0myw,4845
1354
- tests/procedures/posix/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1355
- tests/procedures/posix/test_chroot.py,sha256=d5vgr-5lDgEAHkIcAPtNMjtZfryur3twcwv7525sboA,907
1356
- tests/procedures/posix/test_getenv.py,sha256=XEaqIN1manNRwGP1WtSAHk_dZUeGNY37IDlNgIY3IFg,2475
1357
- tests/procedures/posix/test_pwrite_pread.py,sha256=xnvbAeAHFPwfdVcfx1lONmbt-pYCK-pL4UZ1mer18z8,1737
1358
- tests/procedures/posix/test_sim_time.py,sha256=YFpzoCaZcnYhD0Y1ogae6f-VrzfWumAXrGKXToKdWEM,1347
1359
- tests/procedures/posix/test_unlink.py,sha256=GcTjrq_6394E2w3o3aAD--KKlIuRQ2qq-gk8s-TKwZA,1504
1360
- tests/serialization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1361
- tests/serialization/test_db.py,sha256=aXQSdTGxGUJGTtv6hqkx7cyYMg2QPcD-PrJiTeiHNpA,7029
1362
- tests/serialization/test_pickle.py,sha256=cVPsTZSPHEtUI1P96gcAKM--h8KuiybL_NQwJ2OIa2U,2735
1363
- tests/serialization/test_serialization.py,sha256=58ma0McHNP2kU1KXEXeGY1Iufu5tbIYOfUKht401dl8,3426
1364
- tests/serialization/test_vault.py,sha256=qWqzxp6LhJgbBz6jpEWAYFEhTpCWszZzWGdUyvO4IhA,4362
1365
- tests/sim/__init__.py,sha256=8zwyCPH9uvTuXab-xS9yiCGmIP6Rfh7XZ7MamQXkJC4,36
1366
- tests/sim/test_accuracy.py,sha256=bIurLlUP8WN5grXdwR37Dq_ITbPoYUrvMqfPPuV87GE,5432
1367
- tests/sim/test_checkbyte.py,sha256=42bIrZNuNXTU2G7vmBHYvvWpNjRDcfYOz4FGqf6u6nI,1395
1368
- tests/sim/test_echo.py,sha256=VFXqPS4yiAUVh_nvVnfM-l6YIWDkfdymv8R4rSm0MHQ,1109
1369
- tests/sim/test_fauxware.py,sha256=Olj2Vj8U567LAV0M7oLf6SMmNzwSTXrU5vL0lTyQBVE,6759
1370
- tests/sim/test_self_modifying_code.py,sha256=mEA7GVWyJn1xtVaS7LLaff4G3CHto2C7ZMlCmYy-jTE,2726
1371
- tests/sim/test_simple_api.py,sha256=QRK7MgJRNrSvWJgJKqjj8DAof_HPtzod_aeri0XXHuw,916
1372
- tests/sim/test_simulation_manager.py,sha256=eXQde2cSU_T8cfDgTmX1Zdgn0Z0ToMMHdNJ1aguE0Hs,5178
1373
- tests/sim/test_stack_alignment.py,sha256=cVK-wtIgNs-SRQyKTSl_4AwgYJzpW04TZvRbr4RZfs8,2494
1374
- tests/sim/test_state.py,sha256=qm0hMtb1j3IxJ3QCXqmJqkowel0rwPoxQQLZmliWMp0,11442
1375
- tests/sim/test_state_customization.py,sha256=e7c7JfEEr4RgbH_wMp8wvGynfU4Tj2wtKveKFYXZ1hE,1897
1376
- tests/sim/test_symbol_hooked_by.py,sha256=kCYmMyQVstMJatW-MLVRD7_wJvNMFuJZrlTm0FW23w4,1618
1377
- tests/sim/exec_func/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1378
- tests/sim/exec_func/test_mem_funcs.py,sha256=zXxkt5bcVh4Y3TPNpW96EMbnyJwAjQ-Nx0YWJcIN_TA,2060
1379
- tests/sim/exec_func/test_str_funcs.py,sha256=9izALlnP6kGtj7fjZq7eFMOaNP-5NL9VJ6wGR54y--A,4087
1380
- tests/sim/exec_func/test_syscall_result.py,sha256=zLFgHHyiURlM8BissT2x0Vrtxnq1CYMRACs4cQ3hxvs,1097
1381
- tests/sim/exec_insn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1382
- tests/sim/exec_insn/test_adc.py,sha256=-08AlrfP7iqjy9NhWQEi75x9BE4AO5ylreb5dqzFJHs,1104
1383
- tests/sim/exec_insn/test_ops.py,sha256=iq5CvlmN05DEe1sLFl5L1eX4fn9zh-qy0GFm8gG65Cg,3199
1384
- tests/sim/exec_insn/test_rcr.py,sha256=xFHSya_ZGhxiziC2AS7Pe-T8HGtASjJVPFlWhtE0mHc,658
1385
- tests/sim/exec_insn/test_rol.py,sha256=Q6DSJ_u7epsxf877OlOQ_0q1xGMvFSbBKGUqVoh2iOo,1504
1386
- tests/sim/exec_insn/test_signed_div.py,sha256=RAFIvNGnAh-tUm140bvIXU1crx3JIS7miuPgACsQcSs,947
1387
- tests/sim/exec_insn/test_sqrt.py,sha256=uQ7BPX-xFNM6YwbhE3LKlI3d-tsEGbsoH-mUfi2xQ4M,1709
1388
- tests/sim/options/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1389
- tests/sim/options/test_0div.py,sha256=e5Zcymp-fbSaGHk0mSvi9oFqeRCCu-02hWTEfX2vOTo,1792
1390
- tests/sim/options/test_symbolic_fd.py,sha256=2CkHlNGpmUaSdZPzlnyBdOwFE-aUKtaloCTLEdz_NNM,2099
1391
- tests/sim/options/test_unsupported.py,sha256=HHh6fFn00Qn4RyNwYmkQogTX_kb-gq6abgUZAhrheGc,1067
1392
- tests/simos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1393
- tests/simos/windows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1394
- tests/simos/windows/test_windows_stack_cookie.py,sha256=OlNVHHntVMiWhx2g0on_5cDcDhBZbkDdnnOkTWJPARM,1940
1395
- tests/state_plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1396
- tests/state_plugins/test_callstack.py,sha256=hIP1zKKOAz4_SPExeFuolHgqLcPDAqaEd4bbd2XDoWA,1911
1397
- tests/state_plugins/test_gdb_plugin.py,sha256=s1NDkC9abdRoWhWZT6O7v5GflLkYXo3KPZBSfCkDn_E,1132
1398
- tests/state_plugins/test_multi_open_file.py,sha256=utPvn-p8HFGvJgRBbOoK7_ECT0Ry56PWTIl-JlslyKw,1427
1399
- tests/state_plugins/test_symbolization.py,sha256=46GnlfgIlUt6DsCOxM4uST2VCKJoUh5IePtQN-nqK1o,1111
1400
- tests/state_plugins/inspect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1401
- tests/state_plugins/inspect/test_inspect.py,sha256=seB45lRobH0y_p1Fpgiz_-PVqcpHd0PsT5I34CiGz4I,11826
1402
- tests/state_plugins/inspect/test_syscall_override.py,sha256=aLvy4tVI_J5v_O7vr11NVuMVVl2p7BzF5mvxqnMzSYE,3176
1403
- tests/state_plugins/posix/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1404
- tests/state_plugins/posix/test_file_struct_funcs.py,sha256=HAnH4EPdcQC854bZEFYter0E6urIf3ZYzhHqEoYm2nc,1721
1405
- tests/state_plugins/posix/test_files.py,sha256=jMOqEi_eI80bMYsM8zzjYcyVHPkVN0kJQqrnyo3fb8I,2428
1406
- tests/state_plugins/posix/test_posix.py,sha256=KVG7RAHMwaJ4vsytuuK3QN5eOJNgpm3xXWql_0CDhdI,2190
1407
- tests/state_plugins/solver/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1408
- tests/state_plugins/solver/test_simsolver.py,sha256=Q_UWP2SyKQ9V95w5Y1rUUO-CwsMbCMfRV4i491JvYBk,2265
1409
- tests/state_plugins/solver/test_symbolic.py,sha256=ISrdkJB14POeKW8iXv9_NJjvDj32EKMBZ1z1PipTXmE,5885
1410
- tests/state_plugins/solver/test_variable_registration.py,sha256=xChHBGkGx5lkIVoGm2EwI9v2kLLZG7jXgdRwFvoPKm4,1481
1411
- tests/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1412
- tests/storage/test_memory.py,sha256=8JRKW7hcPZqBk0yL9YKGrx5lYUDf_8B7137P85eKy8s,39090
1413
- tests/storage/test_memory_merge.py,sha256=ggw5AUXVs0Rp_--3lYUP2R4ToWPTIjLKDbYSU-OQOck,3804
1414
- tests/storage/test_memview.py,sha256=oWBzfG6iUStd97ZqLvJqcZEg26QmiYPqZsrLE3FmEE4,7236
1415
- tests/storage/test_mmap.py,sha256=v3gmIbVlfdSk80OoGXUxCypRVTi0cyLMFRJVRMX-iFs,549
1416
- tests/storage/test_multivalues.py,sha256=x82duiIMsU9nE-6vhm-eEsofshKfbVy5d9CNgdC_I1c,1646
1417
- tests/storage/test_permissions.py,sha256=-Gsd1CUO7xZv7NTieiuikm33xfl33MyzIkembL3CuIw,883
1418
- tests/storage/test_ptmalloc.py,sha256=WwORhRoN0SYC8R9aJ_RITbVKlB6JQnLyINTWbT4PidU,10592
1419
- tests/storage/test_relro_perm.py,sha256=gqNbkYfAYr0wM-oSijS3HYi0-cbtplMDCSWQqRCqEb4,1406
1420
- tests/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1421
- tests/utils/test_graph.py,sha256=6mMOM0rIIKkkvBlk-PCyfWbtmnR_2KjfsD-pJNHdx5A,1136
1422
- angr-9.2.87.dist-info/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
1423
- angr-9.2.87.dist-info/METADATA,sha256=3ScX_6mHr4SyNGOjgvlubMnVl9HTorSv1v4p0gLpE1k,4770
1424
- angr-9.2.87.dist-info/WHEEL,sha256=XDTs3wIbcE-BcRO08VJlZpA6z9OaC1mOKPCGGGwuM2g,109
1425
- angr-9.2.87.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
1426
- angr-9.2.87.dist-info/top_level.txt,sha256=EGgw8HjaUI9JWd6w70Tzkn1AcyKTMJTVJ9OpWyaOewk,11
1427
- angr-9.2.87.dist-info/RECORD,,
1210
+ angr-9.2.89.dist-info/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
1211
+ angr-9.2.89.dist-info/METADATA,sha256=cSfTfaH4dfJpbC4VCyyymVxBU6l8Yq9epiYKXirEYzo,4796
1212
+ angr-9.2.89.dist-info/WHEEL,sha256=XDTs3wIbcE-BcRO08VJlZpA6z9OaC1mOKPCGGGwuM2g,109
1213
+ angr-9.2.89.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
1214
+ angr-9.2.89.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
1215
+ angr-9.2.89.dist-info/RECORD,,
@@ -0,0 +1 @@
1
+ angr
@@ -1,12 +0,0 @@
1
- from . import SimLibrary
2
- from .. import SIM_PROCEDURES as P
3
- from ...calling_conventions import SimCCStdcall
4
-
5
- lib = SimLibrary()
6
- lib.set_library_names('ntdll.dll')
7
- lib.add_all_from_dict(P['ntdll'])
8
- lib.set_default_cc('X86', SimCCStdcall)
9
-
10
- lib.add('RtlEncodePointer', P['win32']['EncodePointer'])
11
- lib.add('RtlDecodePointer', P['win32']['EncodePointer'])
12
- lib.add('RtlAllocateHeap', P['win32']['HeapAlloc'])
@@ -1,2 +0,0 @@
1
- angr
2
- tests
tests/__init__.py DELETED
File without changes
File without changes
File without changes
@@ -1,43 +0,0 @@
1
- #!/usr/bin/env python3
2
- __package__ = __package__ or "tests.analyses.cfg" # pylint:disable=redefined-builtin
3
-
4
- import os
5
- import unittest
6
-
7
- import angr
8
-
9
- from ...common import bin_location
10
-
11
- test_location = os.path.join(bin_location, "tests")
12
-
13
-
14
- # pylint: disable=missing-class-docstring
15
- # pylint: disable=no-self-use
16
- class TestCfgClflush(unittest.TestCase):
17
- def test_cfgfast_clflush(self):
18
- bin_path = os.path.join(test_location, "x86_64", "igt_stats")
19
- p = angr.Project(bin_path, auto_load_libs=False)
20
- # build a CFG of function 0x12190
21
- cfg = p.analyses.CFG(
22
- function_starts=(0x412190,),
23
- # Do not scan the entire binary
24
- force_complete_scan=False,
25
- symbols=False,
26
- function_prologues=False,
27
- )
28
- node = cfg.get_any_node(0x4121AA)
29
- assert node is not None
30
- assert len(node.successors) == 1
31
-
32
- def test_cfgemulated_clflush(self):
33
- bin_path = os.path.join(test_location, "x86_64", "igt_stats")
34
- p = angr.Project(bin_path, auto_load_libs=False)
35
- # build a CFG of function 0x12190
36
- cfg = p.analyses.CFGEmulated(starts=(0x412190,))
37
- node = cfg.get_any_node(0x4121AA)
38
- assert node is not None
39
- assert len(node.successors) == 1
40
-
41
-
42
- if __name__ == "__main__":
43
- unittest.main()
@@ -1,34 +0,0 @@
1
- #!/usr/bin/env python3
2
- __package__ = __package__ or "tests.analyses.cfg" # pylint:disable=redefined-builtin
3
-
4
- import os
5
- import unittest
6
-
7
- import angr
8
-
9
- from ...common import bin_location
10
-
11
- test_location = os.path.join(bin_location, "tests")
12
- arches = {"i386", "x86_64"}
13
-
14
-
15
- # pylint: disable=missing-class-docstring
16
- # pylint: disable=no-self-use
17
- class TestCfgGetAnyNode(unittest.TestCase):
18
- def test_cfg_get_any_node(self):
19
- for arch in arches:
20
- self.run_cfg_get_any_node(arch)
21
-
22
- def run_cfg_get_any_node(self, arch):
23
- test_file = os.path.join(test_location, arch, "hello_world")
24
- proj = angr.Project(test_file, auto_load_libs=False)
25
- cfg = proj.analyses.CFGFast()
26
-
27
- for node1 in cfg.nodes():
28
- if node1.size == 0:
29
- node2 = cfg.get_any_node(addr=node1.addr, anyaddr=True)
30
- assert node2 is not None
31
-
32
-
33
- if __name__ == "__main__":
34
- unittest.main()
@@ -1,32 +0,0 @@
1
- #!/usr/bin/env python3
2
- __package__ = __package__ or "tests.analyses.cfg" # pylint:disable=redefined-builtin
3
-
4
- import os
5
- import unittest
6
-
7
- from angr.project import Project
8
-
9
- from ...common import bin_location
10
-
11
-
12
- # pylint: disable=missing-class-docstring
13
- # pylint: disable=no-self-use
14
- class TestCfgManager(unittest.TestCase):
15
- def test_cfg_manager_copies_cfg_graphs(self):
16
- binary_path = os.path.join(bin_location, "tests", "x86_64", "all")
17
- project = Project(binary_path, auto_load_libs=False)
18
- _ = project.analyses.CFGFast()
19
-
20
- original_cfgs = project.kb.cfgs
21
- new_cfgs = project.kb.cfgs.copy()
22
-
23
- original_graph = original_cfgs.cfgs["CFGFast"].graph
24
- new_graph = new_cfgs.cfgs["CFGFast"].graph
25
-
26
- assert original_graph.edges() == new_graph.edges()
27
- assert original_graph.nodes() == new_graph.nodes()
28
- assert original_graph is not new_graph
29
-
30
-
31
- if __name__ == "__main__":
32
- unittest.main()
@@ -1,55 +0,0 @@
1
- #!/usr/bin/env python3
2
- # pylint:disable=no-self-use
3
- __package__ = __package__ or "tests.analyses.cfg" # pylint:disable=redefined-builtin
4
-
5
- import os
6
- import unittest
7
- import logging
8
-
9
- import angr
10
- from angr.analyses import CFGFast
11
-
12
- from ...common import bin_location
13
-
14
- log = logging.getLogger(__name__)
15
- log.setLevel(logging.DEBUG)
16
- FAUXWARE_PATH = os.path.join(bin_location, "tests", "x86_64", "fauxware")
17
-
18
-
19
- class TestCfgModel(unittest.TestCase):
20
- """
21
- Test cases for CFGModel.
22
- """
23
-
24
- def test_cfgmodel_clear_region_for_reflow(self):
25
- """Test CFGModel::clear_region_for_reflow."""
26
- proj = angr.Project(FAUXWARE_PATH, auto_load_libs=False)
27
- cfg = proj.analyses[CFGFast].prep()()
28
- func = cfg.functions["authenticate"]
29
-
30
- addr = 0x40068E
31
- end_addr = 0x400692
32
- cfg.model.clear_region_for_reflow(addr, end_addr - addr)
33
-
34
- for addr in func.block_addrs:
35
- assert cfg.model.get_any_node(addr) is None
36
-
37
- def test_cfgmodel_clear_region_for_reflow_multifunc(self):
38
- """Test CFGModel::clear_region_for_reflow across function boundaries."""
39
- proj = angr.Project(FAUXWARE_PATH, auto_load_libs=False)
40
- cfg = proj.analyses[CFGFast].prep()()
41
-
42
- expected_removed_addrs = list(cfg.functions["accepted"].block_addrs) + list(
43
- cfg.functions["rejected"].block_addrs
44
- )
45
-
46
- addr = 0x4006FB
47
- end_addr = 0x4006FE
48
- cfg.model.clear_region_for_reflow(addr, end_addr - addr)
49
-
50
- for addr in expected_removed_addrs:
51
- assert cfg.model.get_any_node(addr) is None
52
-
53
-
54
- if __name__ == "__main__":
55
- unittest.main()