angr 9.2.103__py3-none-manylinux2014_aarch64.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 (1300) hide show
  1. angr/__init__.py +153 -0
  2. angr/__main__.py +59 -0
  3. angr/analyses/__init__.py +46 -0
  4. angr/analyses/analysis.py +359 -0
  5. angr/analyses/backward_slice.py +691 -0
  6. angr/analyses/binary_optimizer.py +683 -0
  7. angr/analyses/bindiff.py +1251 -0
  8. angr/analyses/boyscout.py +77 -0
  9. angr/analyses/callee_cleanup_finder.py +75 -0
  10. angr/analyses/calling_convention.py +956 -0
  11. angr/analyses/cdg.py +197 -0
  12. angr/analyses/cfg/__init__.py +11 -0
  13. angr/analyses/cfg/cfb.py +436 -0
  14. angr/analyses/cfg/cfg.py +73 -0
  15. angr/analyses/cfg/cfg_arch_options.py +82 -0
  16. angr/analyses/cfg/cfg_base.py +2917 -0
  17. angr/analyses/cfg/cfg_emulated.py +3570 -0
  18. angr/analyses/cfg/cfg_fast.py +5053 -0
  19. angr/analyses/cfg/cfg_fast_soot.py +669 -0
  20. angr/analyses/cfg/cfg_job_base.py +204 -0
  21. angr/analyses/cfg/indirect_jump_resolvers/__init__.py +8 -0
  22. angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py +63 -0
  23. angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py +52 -0
  24. angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py +151 -0
  25. angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py +141 -0
  26. angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py +68 -0
  27. angr/analyses/cfg/indirect_jump_resolvers/jumptable.py +2368 -0
  28. angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py +517 -0
  29. angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py +26 -0
  30. angr/analyses/cfg/indirect_jump_resolvers/resolver.py +74 -0
  31. angr/analyses/cfg/indirect_jump_resolvers/x86_elf_pic_plt.py +93 -0
  32. angr/analyses/cfg/indirect_jump_resolvers/x86_pe_iat.py +51 -0
  33. angr/analyses/cfg_slice_to_sink/__init__.py +2 -0
  34. angr/analyses/cfg_slice_to_sink/cfg_slice_to_sink.py +117 -0
  35. angr/analyses/cfg_slice_to_sink/graph.py +84 -0
  36. angr/analyses/cfg_slice_to_sink/transitions.py +25 -0
  37. angr/analyses/class_identifier.py +62 -0
  38. angr/analyses/code_tagging.py +123 -0
  39. angr/analyses/complete_calling_conventions.py +424 -0
  40. angr/analyses/congruency_check.py +384 -0
  41. angr/analyses/data_dep/__init__.py +2 -0
  42. angr/analyses/data_dep/data_dependency_analysis.py +605 -0
  43. angr/analyses/data_dep/dep_nodes.py +170 -0
  44. angr/analyses/data_dep/sim_act_location.py +46 -0
  45. angr/analyses/datagraph_meta.py +105 -0
  46. angr/analyses/ddg.py +1695 -0
  47. angr/analyses/decompiler/__init__.py +13 -0
  48. angr/analyses/decompiler/ail_simplifier.py +1408 -0
  49. angr/analyses/decompiler/ailgraph_walker.py +48 -0
  50. angr/analyses/decompiler/block_io_finder.py +293 -0
  51. angr/analyses/decompiler/block_similarity.py +188 -0
  52. angr/analyses/decompiler/block_simplifier.py +434 -0
  53. angr/analyses/decompiler/call_counter.py +43 -0
  54. angr/analyses/decompiler/callsite_maker.py +403 -0
  55. angr/analyses/decompiler/ccall_rewriters/__init__.py +6 -0
  56. angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py +489 -0
  57. angr/analyses/decompiler/ccall_rewriters/rewriter_base.py +19 -0
  58. angr/analyses/decompiler/clinic.py +2166 -0
  59. angr/analyses/decompiler/condition_processor.py +1184 -0
  60. angr/analyses/decompiler/decompilation_cache.py +38 -0
  61. angr/analyses/decompiler/decompilation_options.py +274 -0
  62. angr/analyses/decompiler/decompiler.py +544 -0
  63. angr/analyses/decompiler/empty_node_remover.py +211 -0
  64. angr/analyses/decompiler/expression_counters.py +76 -0
  65. angr/analyses/decompiler/expression_narrower.py +92 -0
  66. angr/analyses/decompiler/goto_manager.py +73 -0
  67. angr/analyses/decompiler/graph_region.py +413 -0
  68. angr/analyses/decompiler/jump_target_collector.py +36 -0
  69. angr/analyses/decompiler/jumptable_entry_condition_rewriter.py +66 -0
  70. angr/analyses/decompiler/optimization_passes/__init__.py +108 -0
  71. angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py +144 -0
  72. angr/analyses/decompiler/optimization_passes/code_motion.py +360 -0
  73. angr/analyses/decompiler/optimization_passes/const_derefs.py +265 -0
  74. angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py +108 -0
  75. angr/analyses/decompiler/optimization_passes/deadblock_remover.py +73 -0
  76. angr/analyses/decompiler/optimization_passes/div_simplifier.py +391 -0
  77. angr/analyses/decompiler/optimization_passes/engine_base.py +303 -0
  78. angr/analyses/decompiler/optimization_passes/expr_op_swapper.py +136 -0
  79. angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py +91 -0
  80. angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py +386 -0
  81. angr/analyses/decompiler/optimization_passes/ite_expr_converter.py +226 -0
  82. angr/analyses/decompiler/optimization_passes/ite_region_converter.py +189 -0
  83. angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py +757 -0
  84. angr/analyses/decompiler/optimization_passes/mod_simplifier.py +86 -0
  85. angr/analyses/decompiler/optimization_passes/multi_simplifier.py +227 -0
  86. angr/analyses/decompiler/optimization_passes/optimization_pass.py +397 -0
  87. angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py +198 -0
  88. angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py +172 -0
  89. angr/analyses/decompiler/optimization_passes/ret_deduplicator.py +219 -0
  90. angr/analyses/decompiler/optimization_passes/return_duplicator_base.py +448 -0
  91. angr/analyses/decompiler/optimization_passes/return_duplicator_high.py +57 -0
  92. angr/analyses/decompiler/optimization_passes/return_duplicator_low.py +121 -0
  93. angr/analyses/decompiler/optimization_passes/spilled_register_finder.py +18 -0
  94. angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py +293 -0
  95. angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py +110 -0
  96. angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py +281 -0
  97. angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py +87 -0
  98. angr/analyses/decompiler/peephole_optimizations/__init__.py +69 -0
  99. angr/analyses/decompiler/peephole_optimizations/a_div_const_add_a_mul_n_div_const.py +38 -0
  100. angr/analyses/decompiler/peephole_optimizations/a_mul_const_div_shr_const.py +38 -0
  101. angr/analyses/decompiler/peephole_optimizations/a_shl_const_sub_a.py +31 -0
  102. angr/analyses/decompiler/peephole_optimizations/a_sub_a_div.py +25 -0
  103. angr/analyses/decompiler/peephole_optimizations/a_sub_a_div_const_mul_const.py +56 -0
  104. angr/analyses/decompiler/peephole_optimizations/a_sub_a_sub_n.py +19 -0
  105. angr/analyses/decompiler/peephole_optimizations/arm_cmpf.py +235 -0
  106. angr/analyses/decompiler/peephole_optimizations/base.py +120 -0
  107. angr/analyses/decompiler/peephole_optimizations/basepointeroffset_add_n.py +33 -0
  108. angr/analyses/decompiler/peephole_optimizations/basepointeroffset_and_mask.py +35 -0
  109. angr/analyses/decompiler/peephole_optimizations/bitwise_or_to_logical_or.py +34 -0
  110. angr/analyses/decompiler/peephole_optimizations/bool_expr_xor_1.py +27 -0
  111. angr/analyses/decompiler/peephole_optimizations/bswap.py +131 -0
  112. angr/analyses/decompiler/peephole_optimizations/cmpord_rewriter.py +72 -0
  113. angr/analyses/decompiler/peephole_optimizations/coalesce_same_cascading_ifs.py +27 -0
  114. angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py +91 -0
  115. angr/analyses/decompiler/peephole_optimizations/constant_derefs.py +43 -0
  116. angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py +70 -0
  117. angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py +51 -0
  118. angr/analyses/decompiler/peephole_optimizations/eager_eval.py +225 -0
  119. angr/analyses/decompiler/peephole_optimizations/extended_byte_and_mask.py +55 -0
  120. angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py +146 -0
  121. angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py +102 -0
  122. angr/analyses/decompiler/peephole_optimizations/inlined_wstrcpy.py +159 -0
  123. angr/analyses/decompiler/peephole_optimizations/invert_negated_logical_conjuction_disjunction.py +50 -0
  124. angr/analyses/decompiler/peephole_optimizations/one_sub_bool.py +33 -0
  125. angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py +19 -0
  126. angr/analyses/decompiler/peephole_optimizations/remove_empty_if_body.py +45 -0
  127. angr/analyses/decompiler/peephole_optimizations/remove_noop_conversions.py +26 -0
  128. angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py +48 -0
  129. angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py +160 -0
  130. angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_branch.py +29 -0
  131. angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_comparisons.py +54 -0
  132. angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py +17 -0
  133. angr/analyses/decompiler/peephole_optimizations/remove_redundant_reinterprets.py +43 -0
  134. angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts.py +44 -0
  135. angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts_around_comparators.py +40 -0
  136. angr/analyses/decompiler/peephole_optimizations/rewrite_bit_extractions.py +85 -0
  137. angr/analyses/decompiler/peephole_optimizations/rewrite_mips_gp_loads.py +47 -0
  138. angr/analyses/decompiler/peephole_optimizations/rol_ror.py +77 -0
  139. angr/analyses/decompiler/peephole_optimizations/sar_to_signed_div.py +105 -0
  140. angr/analyses/decompiler/peephole_optimizations/simplify_pc_relative_loads.py +37 -0
  141. angr/analyses/decompiler/peephole_optimizations/single_bit_cond_to_boolexpr.py +52 -0
  142. angr/analyses/decompiler/peephole_optimizations/single_bit_xor.py +26 -0
  143. angr/analyses/decompiler/peephole_optimizations/tidy_stack_addr.py +133 -0
  144. angr/analyses/decompiler/redundant_label_remover.py +116 -0
  145. angr/analyses/decompiler/region_identifier.py +1098 -0
  146. angr/analyses/decompiler/region_simplifiers/__init__.py +1 -0
  147. angr/analyses/decompiler/region_simplifiers/cascading_cond_transformer.py +93 -0
  148. angr/analyses/decompiler/region_simplifiers/cascading_ifs.py +81 -0
  149. angr/analyses/decompiler/region_simplifiers/expr_folding.py +606 -0
  150. angr/analyses/decompiler/region_simplifiers/goto.py +177 -0
  151. angr/analyses/decompiler/region_simplifiers/if_.py +142 -0
  152. angr/analyses/decompiler/region_simplifiers/ifelse.py +90 -0
  153. angr/analyses/decompiler/region_simplifiers/loop.py +135 -0
  154. angr/analyses/decompiler/region_simplifiers/node_address_finder.py +23 -0
  155. angr/analyses/decompiler/region_simplifiers/region_simplifier.py +211 -0
  156. angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py +644 -0
  157. angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py +83 -0
  158. angr/analyses/decompiler/region_walker.py +23 -0
  159. angr/analyses/decompiler/return_maker.py +70 -0
  160. angr/analyses/decompiler/seq_to_blocks.py +19 -0
  161. angr/analyses/decompiler/sequence_walker.py +235 -0
  162. angr/analyses/decompiler/structured_codegen/__init__.py +10 -0
  163. angr/analyses/decompiler/structured_codegen/base.py +132 -0
  164. angr/analyses/decompiler/structured_codegen/c.py +3811 -0
  165. angr/analyses/decompiler/structured_codegen/dummy.py +14 -0
  166. angr/analyses/decompiler/structured_codegen/dwarf_import.py +186 -0
  167. angr/analyses/decompiler/structuring/__init__.py +15 -0
  168. angr/analyses/decompiler/structuring/dream.py +1225 -0
  169. angr/analyses/decompiler/structuring/phoenix.py +2546 -0
  170. angr/analyses/decompiler/structuring/recursive_structurer.py +186 -0
  171. angr/analyses/decompiler/structuring/structurer_base.py +954 -0
  172. angr/analyses/decompiler/structuring/structurer_nodes.py +414 -0
  173. angr/analyses/decompiler/utils.py +787 -0
  174. angr/analyses/disassembly.py +1302 -0
  175. angr/analyses/disassembly_utils.py +104 -0
  176. angr/analyses/dominance_frontier.py +39 -0
  177. angr/analyses/find_objects_static.py +203 -0
  178. angr/analyses/flirt.py +185 -0
  179. angr/analyses/forward_analysis/__init__.py +2 -0
  180. angr/analyses/forward_analysis/forward_analysis.py +527 -0
  181. angr/analyses/forward_analysis/job_info.py +64 -0
  182. angr/analyses/forward_analysis/visitors/__init__.py +4 -0
  183. angr/analyses/forward_analysis/visitors/call_graph.py +28 -0
  184. angr/analyses/forward_analysis/visitors/function_graph.py +85 -0
  185. angr/analyses/forward_analysis/visitors/graph.py +250 -0
  186. angr/analyses/forward_analysis/visitors/loop.py +28 -0
  187. angr/analyses/forward_analysis/visitors/single_node_graph.py +38 -0
  188. angr/analyses/identifier/__init__.py +1 -0
  189. angr/analyses/identifier/custom_callable.py +138 -0
  190. angr/analyses/identifier/errors.py +9 -0
  191. angr/analyses/identifier/func.py +57 -0
  192. angr/analyses/identifier/functions/__init__.py +36 -0
  193. angr/analyses/identifier/functions/atoi.py +75 -0
  194. angr/analyses/identifier/functions/based_atoi.py +128 -0
  195. angr/analyses/identifier/functions/fdprintf.py +122 -0
  196. angr/analyses/identifier/functions/free.py +64 -0
  197. angr/analyses/identifier/functions/int2str.py +302 -0
  198. angr/analyses/identifier/functions/malloc.py +113 -0
  199. angr/analyses/identifier/functions/memcmp.py +69 -0
  200. angr/analyses/identifier/functions/memcpy.py +89 -0
  201. angr/analyses/identifier/functions/memset.py +43 -0
  202. angr/analyses/identifier/functions/printf.py +122 -0
  203. angr/analyses/identifier/functions/recv_until.py +315 -0
  204. angr/analyses/identifier/functions/skip_calloc.py +72 -0
  205. angr/analyses/identifier/functions/skip_realloc.py +99 -0
  206. angr/analyses/identifier/functions/skip_recv_n.py +107 -0
  207. angr/analyses/identifier/functions/snprintf.py +114 -0
  208. angr/analyses/identifier/functions/sprintf.py +115 -0
  209. angr/analyses/identifier/functions/strcasecmp.py +32 -0
  210. angr/analyses/identifier/functions/strcmp.py +112 -0
  211. angr/analyses/identifier/functions/strcpy.py +43 -0
  212. angr/analyses/identifier/functions/strlen.py +26 -0
  213. angr/analyses/identifier/functions/strncmp.py +103 -0
  214. angr/analyses/identifier/functions/strncpy.py +65 -0
  215. angr/analyses/identifier/functions/strtol.py +91 -0
  216. angr/analyses/identifier/identify.py +848 -0
  217. angr/analyses/identifier/runner.py +359 -0
  218. angr/analyses/init_finder.py +264 -0
  219. angr/analyses/loop_analysis.py +353 -0
  220. angr/analyses/loopfinder.py +174 -0
  221. angr/analyses/propagator/__init__.py +1 -0
  222. angr/analyses/propagator/engine_ail.py +1560 -0
  223. angr/analyses/propagator/engine_base.py +53 -0
  224. angr/analyses/propagator/engine_vex.py +328 -0
  225. angr/analyses/propagator/outdated_definition_walker.py +158 -0
  226. angr/analyses/propagator/propagator.py +422 -0
  227. angr/analyses/propagator/tmpvar_finder.py +17 -0
  228. angr/analyses/propagator/top_checker_mixin.py +14 -0
  229. angr/analyses/propagator/values.py +116 -0
  230. angr/analyses/propagator/vex_vars.py +67 -0
  231. angr/analyses/proximity_graph.py +452 -0
  232. angr/analyses/reaching_definitions/__init__.py +65 -0
  233. angr/analyses/reaching_definitions/call_trace.py +72 -0
  234. angr/analyses/reaching_definitions/dep_graph.py +392 -0
  235. angr/analyses/reaching_definitions/engine_ail.py +1172 -0
  236. angr/analyses/reaching_definitions/engine_vex.py +1102 -0
  237. angr/analyses/reaching_definitions/external_codeloc.py +0 -0
  238. angr/analyses/reaching_definitions/function_handler.py +603 -0
  239. angr/analyses/reaching_definitions/heap_allocator.py +69 -0
  240. angr/analyses/reaching_definitions/rd_initializer.py +235 -0
  241. angr/analyses/reaching_definitions/rd_state.py +613 -0
  242. angr/analyses/reaching_definitions/reaching_definitions.py +594 -0
  243. angr/analyses/reaching_definitions/subject.py +64 -0
  244. angr/analyses/reassembler.py +2970 -0
  245. angr/analyses/soot_class_hierarchy.py +283 -0
  246. angr/analyses/stack_pointer_tracker.py +832 -0
  247. angr/analyses/static_hooker.py +51 -0
  248. angr/analyses/typehoon/__init__.py +1 -0
  249. angr/analyses/typehoon/dfa.py +108 -0
  250. angr/analyses/typehoon/lifter.py +91 -0
  251. angr/analyses/typehoon/simple_solver.py +1258 -0
  252. angr/analyses/typehoon/translator.py +242 -0
  253. angr/analyses/typehoon/typeconsts.py +294 -0
  254. angr/analyses/typehoon/typehoon.py +239 -0
  255. angr/analyses/typehoon/typevars.py +565 -0
  256. angr/analyses/typehoon/variance.py +10 -0
  257. angr/analyses/variable_recovery/__init__.py +2 -0
  258. angr/analyses/variable_recovery/annotations.py +57 -0
  259. angr/analyses/variable_recovery/engine_ail.py +746 -0
  260. angr/analyses/variable_recovery/engine_base.py +962 -0
  261. angr/analyses/variable_recovery/engine_vex.py +580 -0
  262. angr/analyses/variable_recovery/irsb_scanner.py +131 -0
  263. angr/analyses/variable_recovery/variable_recovery.py +552 -0
  264. angr/analyses/variable_recovery/variable_recovery_base.py +452 -0
  265. angr/analyses/variable_recovery/variable_recovery_fast.py +589 -0
  266. angr/analyses/veritesting.py +635 -0
  267. angr/analyses/vfg.py +1945 -0
  268. angr/analyses/vsa_ddg.py +423 -0
  269. angr/analyses/vtable.py +92 -0
  270. angr/analyses/xrefs.py +263 -0
  271. angr/angrdb/__init__.py +9 -0
  272. angr/angrdb/db.py +208 -0
  273. angr/angrdb/models.py +183 -0
  274. angr/angrdb/serializers/__init__.py +2 -0
  275. angr/angrdb/serializers/cfg_model.py +41 -0
  276. angr/angrdb/serializers/comments.py +59 -0
  277. angr/angrdb/serializers/funcs.py +60 -0
  278. angr/angrdb/serializers/kb.py +110 -0
  279. angr/angrdb/serializers/labels.py +58 -0
  280. angr/angrdb/serializers/loader.py +81 -0
  281. angr/angrdb/serializers/structured_code.py +128 -0
  282. angr/angrdb/serializers/variables.py +58 -0
  283. angr/angrdb/serializers/xrefs.py +48 -0
  284. angr/annocfg.py +320 -0
  285. angr/blade.py +430 -0
  286. angr/block.py +506 -0
  287. angr/callable.py +162 -0
  288. angr/calling_conventions.py +2383 -0
  289. angr/code_location.py +168 -0
  290. angr/codenode.py +140 -0
  291. angr/concretization_strategies/__init__.py +97 -0
  292. angr/concretization_strategies/any.py +15 -0
  293. angr/concretization_strategies/any_named.py +32 -0
  294. angr/concretization_strategies/controlled_data.py +54 -0
  295. angr/concretization_strategies/eval.py +18 -0
  296. angr/concretization_strategies/logging.py +32 -0
  297. angr/concretization_strategies/max.py +24 -0
  298. angr/concretization_strategies/nonzero.py +14 -0
  299. angr/concretization_strategies/nonzero_range.py +20 -0
  300. angr/concretization_strategies/norepeats.py +35 -0
  301. angr/concretization_strategies/norepeats_range.py +35 -0
  302. angr/concretization_strategies/range.py +17 -0
  303. angr/concretization_strategies/signed_add.py +24 -0
  304. angr/concretization_strategies/single.py +12 -0
  305. angr/concretization_strategies/solutions.py +18 -0
  306. angr/concretization_strategies/unlimited_range.py +15 -0
  307. angr/distributed/__init__.py +3 -0
  308. angr/distributed/server.py +198 -0
  309. angr/distributed/worker.py +183 -0
  310. angr/engines/__init__.py +41 -0
  311. angr/engines/concrete.py +178 -0
  312. angr/engines/engine.py +212 -0
  313. angr/engines/failure.py +27 -0
  314. angr/engines/hook.py +67 -0
  315. angr/engines/light/__init__.py +2 -0
  316. angr/engines/light/data.py +715 -0
  317. angr/engines/light/engine.py +1441 -0
  318. angr/engines/pcode/__init__.py +2 -0
  319. angr/engines/pcode/behavior.py +995 -0
  320. angr/engines/pcode/cc.py +123 -0
  321. angr/engines/pcode/emulate.py +446 -0
  322. angr/engines/pcode/engine.py +256 -0
  323. angr/engines/pcode/lifter.py +1423 -0
  324. angr/engines/procedure.py +71 -0
  325. angr/engines/soot/__init__.py +1 -0
  326. angr/engines/soot/engine.py +415 -0
  327. angr/engines/soot/exceptions.py +14 -0
  328. angr/engines/soot/expressions/__init__.py +56 -0
  329. angr/engines/soot/expressions/arrayref.py +21 -0
  330. angr/engines/soot/expressions/base.py +22 -0
  331. angr/engines/soot/expressions/binop.py +27 -0
  332. angr/engines/soot/expressions/cast.py +21 -0
  333. angr/engines/soot/expressions/condition.py +34 -0
  334. angr/engines/soot/expressions/constants.py +45 -0
  335. angr/engines/soot/expressions/instanceOf.py +11 -0
  336. angr/engines/soot/expressions/instancefieldref.py +7 -0
  337. angr/engines/soot/expressions/invoke.py +117 -0
  338. angr/engines/soot/expressions/length.py +7 -0
  339. angr/engines/soot/expressions/local.py +7 -0
  340. angr/engines/soot/expressions/new.py +15 -0
  341. angr/engines/soot/expressions/newArray.py +51 -0
  342. angr/engines/soot/expressions/newMultiArray.py +84 -0
  343. angr/engines/soot/expressions/paramref.py +7 -0
  344. angr/engines/soot/expressions/phi.py +29 -0
  345. angr/engines/soot/expressions/staticfieldref.py +7 -0
  346. angr/engines/soot/expressions/thisref.py +6 -0
  347. angr/engines/soot/expressions/unsupported.py +6 -0
  348. angr/engines/soot/field_dispatcher.py +49 -0
  349. angr/engines/soot/method_dispatcher.py +49 -0
  350. angr/engines/soot/statements/__init__.py +30 -0
  351. angr/engines/soot/statements/assign.py +29 -0
  352. angr/engines/soot/statements/base.py +80 -0
  353. angr/engines/soot/statements/goto.py +11 -0
  354. angr/engines/soot/statements/identity.py +14 -0
  355. angr/engines/soot/statements/if_.py +16 -0
  356. angr/engines/soot/statements/invoke.py +11 -0
  357. angr/engines/soot/statements/return_.py +19 -0
  358. angr/engines/soot/statements/switch.py +38 -0
  359. angr/engines/soot/statements/throw.py +12 -0
  360. angr/engines/soot/values/__init__.py +24 -0
  361. angr/engines/soot/values/arrayref.py +124 -0
  362. angr/engines/soot/values/base.py +4 -0
  363. angr/engines/soot/values/constants.py +17 -0
  364. angr/engines/soot/values/instancefieldref.py +42 -0
  365. angr/engines/soot/values/local.py +17 -0
  366. angr/engines/soot/values/paramref.py +17 -0
  367. angr/engines/soot/values/staticfieldref.py +37 -0
  368. angr/engines/soot/values/strref.py +37 -0
  369. angr/engines/soot/values/thisref.py +148 -0
  370. angr/engines/successors.py +540 -0
  371. angr/engines/syscall.py +53 -0
  372. angr/engines/unicorn.py +483 -0
  373. angr/engines/vex/__init__.py +4 -0
  374. angr/engines/vex/claripy/__init__.py +1 -0
  375. angr/engines/vex/claripy/ccall.py +2097 -0
  376. angr/engines/vex/claripy/datalayer.py +149 -0
  377. angr/engines/vex/claripy/irop.py +1279 -0
  378. angr/engines/vex/heavy/__init__.py +5 -0
  379. angr/engines/vex/heavy/actions.py +237 -0
  380. angr/engines/vex/heavy/concretizers.py +394 -0
  381. angr/engines/vex/heavy/dirty.py +467 -0
  382. angr/engines/vex/heavy/heavy.py +379 -0
  383. angr/engines/vex/heavy/inspect.py +51 -0
  384. angr/engines/vex/heavy/resilience.py +85 -0
  385. angr/engines/vex/heavy/super_fastpath.py +34 -0
  386. angr/engines/vex/lifter.py +424 -0
  387. angr/engines/vex/light/__init__.py +3 -0
  388. angr/engines/vex/light/light.py +555 -0
  389. angr/engines/vex/light/resilience.py +73 -0
  390. angr/engines/vex/light/slicing.py +51 -0
  391. angr/errors.py +604 -0
  392. angr/exploration_techniques/__init__.py +176 -0
  393. angr/exploration_techniques/bucketizer.py +96 -0
  394. angr/exploration_techniques/common.py +56 -0
  395. angr/exploration_techniques/dfs.py +34 -0
  396. angr/exploration_techniques/director.py +523 -0
  397. angr/exploration_techniques/driller_core.py +102 -0
  398. angr/exploration_techniques/explorer.py +146 -0
  399. angr/exploration_techniques/lengthlimiter.py +20 -0
  400. angr/exploration_techniques/local_loop_seer.py +64 -0
  401. angr/exploration_techniques/loop_seer.py +239 -0
  402. angr/exploration_techniques/manual_mergepoint.py +80 -0
  403. angr/exploration_techniques/memory_watcher.py +40 -0
  404. angr/exploration_techniques/oppologist.py +93 -0
  405. angr/exploration_techniques/slicecutor.py +115 -0
  406. angr/exploration_techniques/spiller.py +282 -0
  407. angr/exploration_techniques/spiller_db.py +27 -0
  408. angr/exploration_techniques/stochastic.py +57 -0
  409. angr/exploration_techniques/suggestions.py +156 -0
  410. angr/exploration_techniques/symbion.py +78 -0
  411. angr/exploration_techniques/tech_builder.py +47 -0
  412. angr/exploration_techniques/threading.py +77 -0
  413. angr/exploration_techniques/timeout.py +31 -0
  414. angr/exploration_techniques/tracer.py +1101 -0
  415. angr/exploration_techniques/unique.py +104 -0
  416. angr/exploration_techniques/veritesting.py +36 -0
  417. angr/factory.py +385 -0
  418. angr/flirt/__init__.py +126 -0
  419. angr/flirt/build_sig.py +316 -0
  420. angr/graph_utils.py +0 -0
  421. angr/keyed_region.py +532 -0
  422. angr/knowledge_base/__init__.py +1 -0
  423. angr/knowledge_base/knowledge_base.py +145 -0
  424. angr/knowledge_plugins/__init__.py +18 -0
  425. angr/knowledge_plugins/callsite_prototypes.py +52 -0
  426. angr/knowledge_plugins/cfg/__init__.py +16 -0
  427. angr/knowledge_plugins/cfg/cfg_manager.py +94 -0
  428. angr/knowledge_plugins/cfg/cfg_model.py +1057 -0
  429. angr/knowledge_plugins/cfg/cfg_node.py +541 -0
  430. angr/knowledge_plugins/cfg/indirect_jump.py +67 -0
  431. angr/knowledge_plugins/cfg/memory_data.py +156 -0
  432. angr/knowledge_plugins/comments.py +15 -0
  433. angr/knowledge_plugins/custom_strings.py +37 -0
  434. angr/knowledge_plugins/data.py +21 -0
  435. angr/knowledge_plugins/debug_variables.py +221 -0
  436. angr/knowledge_plugins/functions/__init__.py +2 -0
  437. angr/knowledge_plugins/functions/function.py +1694 -0
  438. angr/knowledge_plugins/functions/function_manager.py +501 -0
  439. angr/knowledge_plugins/functions/function_parser.py +295 -0
  440. angr/knowledge_plugins/functions/soot_function.py +131 -0
  441. angr/knowledge_plugins/indirect_jumps.py +34 -0
  442. angr/knowledge_plugins/key_definitions/__init__.py +16 -0
  443. angr/knowledge_plugins/key_definitions/atoms.py +314 -0
  444. angr/knowledge_plugins/key_definitions/constants.py +23 -0
  445. angr/knowledge_plugins/key_definitions/definition.py +217 -0
  446. angr/knowledge_plugins/key_definitions/environment.py +92 -0
  447. angr/knowledge_plugins/key_definitions/heap_address.py +32 -0
  448. angr/knowledge_plugins/key_definitions/key_definition_manager.py +81 -0
  449. angr/knowledge_plugins/key_definitions/live_definitions.py +1074 -0
  450. angr/knowledge_plugins/key_definitions/liveness.py +170 -0
  451. angr/knowledge_plugins/key_definitions/rd_model.py +176 -0
  452. angr/knowledge_plugins/key_definitions/tag.py +77 -0
  453. angr/knowledge_plugins/key_definitions/undefined.py +67 -0
  454. angr/knowledge_plugins/key_definitions/unknown_size.py +83 -0
  455. angr/knowledge_plugins/key_definitions/uses.py +180 -0
  456. angr/knowledge_plugins/labels.py +109 -0
  457. angr/knowledge_plugins/patches.py +125 -0
  458. angr/knowledge_plugins/plugin.py +23 -0
  459. angr/knowledge_plugins/propagations/__init__.py +2 -0
  460. angr/knowledge_plugins/propagations/prop_value.py +193 -0
  461. angr/knowledge_plugins/propagations/propagation_manager.py +60 -0
  462. angr/knowledge_plugins/propagations/propagation_model.py +74 -0
  463. angr/knowledge_plugins/propagations/states.py +1064 -0
  464. angr/knowledge_plugins/structured_code/__init__.py +1 -0
  465. angr/knowledge_plugins/structured_code/manager.py +59 -0
  466. angr/knowledge_plugins/sync/__init__.py +1 -0
  467. angr/knowledge_plugins/sync/sync_controller.py +329 -0
  468. angr/knowledge_plugins/types.py +87 -0
  469. angr/knowledge_plugins/variables/__init__.py +1 -0
  470. angr/knowledge_plugins/variables/variable_access.py +114 -0
  471. angr/knowledge_plugins/variables/variable_manager.py +1191 -0
  472. angr/knowledge_plugins/xrefs/__init__.py +3 -0
  473. angr/knowledge_plugins/xrefs/xref.py +157 -0
  474. angr/knowledge_plugins/xrefs/xref_manager.py +122 -0
  475. angr/knowledge_plugins/xrefs/xref_types.py +13 -0
  476. angr/lib/angr_native.so +0 -0
  477. angr/misc/__init__.py +8 -0
  478. angr/misc/ansi.py +46 -0
  479. angr/misc/autoimport.py +89 -0
  480. angr/misc/bug_report.py +125 -0
  481. angr/misc/hookset.py +106 -0
  482. angr/misc/import_hooks.py +63 -0
  483. angr/misc/loggers.py +130 -0
  484. angr/misc/picklable_lock.py +45 -0
  485. angr/misc/plugins.py +291 -0
  486. angr/misc/range.py +21 -0
  487. angr/misc/testing.py +23 -0
  488. angr/misc/ux.py +31 -0
  489. angr/misc/weakpatch.py +58 -0
  490. angr/procedures/__init__.py +2 -0
  491. angr/procedures/advapi32/__init__.py +0 -0
  492. angr/procedures/cgc/__init__.py +3 -0
  493. angr/procedures/cgc/_terminate.py +10 -0
  494. angr/procedures/cgc/allocate.py +76 -0
  495. angr/procedures/cgc/deallocate.py +59 -0
  496. angr/procedures/cgc/fdwait.py +62 -0
  497. angr/procedures/cgc/random.py +60 -0
  498. angr/procedures/cgc/receive.py +91 -0
  499. angr/procedures/cgc/transmit.py +63 -0
  500. angr/procedures/definitions/__init__.py +784 -0
  501. angr/procedures/definitions/cgc.py +19 -0
  502. angr/procedures/definitions/glibc.py +8384 -0
  503. angr/procedures/definitions/gnulib.py +35 -0
  504. angr/procedures/definitions/libstdcpp.py +20 -0
  505. angr/procedures/definitions/linux_kernel.py +6167 -0
  506. angr/procedures/definitions/linux_loader.py +6 -0
  507. angr/procedures/definitions/msvcr.py +15 -0
  508. angr/procedures/definitions/parse_syscalls_from_local_system.py +49 -0
  509. angr/procedures/definitions/parse_win32json.py +2556 -0
  510. angr/procedures/definitions/types_win32.py +34481 -0
  511. angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-4.py +44 -0
  512. angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-6.py +40 -0
  513. angr/procedures/definitions/wdk_clfs.py +154 -0
  514. angr/procedures/definitions/wdk_fltmgr.py +570 -0
  515. angr/procedures/definitions/wdk_fwpkclnt.py +44 -0
  516. angr/procedures/definitions/wdk_fwpuclnt.py +330 -0
  517. angr/procedures/definitions/wdk_gdi32.py +380 -0
  518. angr/procedures/definitions/wdk_hal.py +92 -0
  519. angr/procedures/definitions/wdk_ksecdd.py +76 -0
  520. angr/procedures/definitions/wdk_ndis.py +252 -0
  521. angr/procedures/definitions/wdk_ntoskrnl.py +3463 -0
  522. angr/procedures/definitions/wdk_offreg.py +86 -0
  523. angr/procedures/definitions/wdk_pshed.py +50 -0
  524. angr/procedures/definitions/wdk_secur32.py +54 -0
  525. angr/procedures/definitions/wdk_vhfum.py +48 -0
  526. angr/procedures/definitions/win32_aclui.py +44 -0
  527. angr/procedures/definitions/win32_activeds.py +82 -0
  528. angr/procedures/definitions/win32_advapi32.py +1698 -0
  529. angr/procedures/definitions/win32_advpack.py +138 -0
  530. angr/procedures/definitions/win32_amsi.py +52 -0
  531. angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-1.py +58 -0
  532. angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-3.py +48 -0
  533. angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-6.py +40 -0
  534. angr/procedures/definitions/win32_api-ms-win-core-apiquery-l2-1-0.py +40 -0
  535. angr/procedures/definitions/win32_api-ms-win-core-backgroundtask-l1-1-0.py +40 -0
  536. angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-1.py +40 -0
  537. angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-2.py +40 -0
  538. angr/procedures/definitions/win32_api-ms-win-core-enclave-l1-1-1.py +44 -0
  539. angr/procedures/definitions/win32_api-ms-win-core-errorhandling-l1-1-3.py +40 -0
  540. angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-0.py +48 -0
  541. angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-1.py +40 -0
  542. angr/procedures/definitions/win32_api-ms-win-core-file-fromapp-l1-1-0.py +60 -0
  543. angr/procedures/definitions/win32_api-ms-win-core-handle-l1-1-0.py +40 -0
  544. angr/procedures/definitions/win32_api-ms-win-core-ioring-l1-1-0.py +62 -0
  545. angr/procedures/definitions/win32_api-ms-win-core-marshal-l1-1-0.py +46 -0
  546. angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-3.py +46 -0
  547. angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-4.py +40 -0
  548. angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-5.py +44 -0
  549. angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-6.py +46 -0
  550. angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-7.py +42 -0
  551. angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-8.py +44 -0
  552. angr/procedures/definitions/win32_api-ms-win-core-path-l1-1-0.py +82 -0
  553. angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-0.py +42 -0
  554. angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-1.py +42 -0
  555. angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-1.py +44 -0
  556. angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-2.py +44 -0
  557. angr/procedures/definitions/win32_api-ms-win-core-slapi-l1-1-0.py +40 -0
  558. angr/procedures/definitions/win32_api-ms-win-core-state-helpers-l1-1-0.py +40 -0
  559. angr/procedures/definitions/win32_api-ms-win-core-synch-l1-2-0.py +44 -0
  560. angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-0.py +40 -0
  561. angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-3.py +42 -0
  562. angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-4.py +42 -0
  563. angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-6.py +40 -0
  564. angr/procedures/definitions/win32_api-ms-win-core-util-l1-1-1.py +42 -0
  565. angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-0.py +43 -0
  566. angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-1.py +37 -0
  567. angr/procedures/definitions/win32_api-ms-win-core-winrt-l1-1-0.py +39 -0
  568. angr/procedures/definitions/win32_api-ms-win-core-winrt-registration-l1-1-0.py +23 -0
  569. angr/procedures/definitions/win32_api-ms-win-core-winrt-robuffer-l1-1-0.py +23 -0
  570. angr/procedures/definitions/win32_api-ms-win-core-winrt-roparameterizediid-l1-1-0.py +27 -0
  571. angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-0.py +75 -0
  572. angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-1.py +23 -0
  573. angr/procedures/definitions/win32_api-ms-win-core-wow64-l1-1-1.py +44 -0
  574. angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-0.py +56 -0
  575. angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-1.py +48 -0
  576. angr/procedures/definitions/win32_api-ms-win-dx-d3dkmt-l1-1-0.py +40 -0
  577. angr/procedures/definitions/win32_api-ms-win-gaming-deviceinformation-l1-1-0.py +40 -0
  578. angr/procedures/definitions/win32_api-ms-win-gaming-expandedresources-l1-1-0.py +44 -0
  579. angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-0.py +52 -0
  580. angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-1.py +42 -0
  581. angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-2.py +52 -0
  582. angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-3.py +42 -0
  583. angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-4.py +54 -0
  584. angr/procedures/definitions/win32_api-ms-win-mm-misc-l1-1-1.py +40 -0
  585. angr/procedures/definitions/win32_api-ms-win-net-isolation-l1-1-0.py +54 -0
  586. angr/procedures/definitions/win32_api-ms-win-security-base-l1-2-2.py +40 -0
  587. angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-0.py +40 -0
  588. angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-1.py +40 -0
  589. angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-3.py +40 -0
  590. angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-4.py +40 -0
  591. angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-5.py +42 -0
  592. angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-0.py +44 -0
  593. angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-1.py +50 -0
  594. angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-2.py +40 -0
  595. angr/procedures/definitions/win32_api-ms-win-shcore-stream-winrt-l1-1-0.py +27 -0
  596. angr/procedures/definitions/win32_api-ms-win-wsl-api-l1-1-0.py +52 -0
  597. angr/procedures/definitions/win32_apphelp.py +40 -0
  598. angr/procedures/definitions/win32_authz.py +104 -0
  599. angr/procedures/definitions/win32_avicap32.py +46 -0
  600. angr/procedures/definitions/win32_avifil32.py +158 -0
  601. angr/procedures/definitions/win32_avrt.py +66 -0
  602. angr/procedures/definitions/win32_bcp47mrm.py +42 -0
  603. angr/procedures/definitions/win32_bcrypt.py +144 -0
  604. angr/procedures/definitions/win32_bcryptprimitives.py +42 -0
  605. angr/procedures/definitions/win32_bluetoothapis.py +120 -0
  606. angr/procedures/definitions/win32_bthprops.py +33 -0
  607. angr/procedures/definitions/win32_bthprops_cpl.py +50 -0
  608. angr/procedures/definitions/win32_cabinet.py +82 -0
  609. angr/procedures/definitions/win32_certadm.py +74 -0
  610. angr/procedures/definitions/win32_certpoleng.py +54 -0
  611. angr/procedures/definitions/win32_cfgmgr32.py +516 -0
  612. angr/procedures/definitions/win32_chakra.py +212 -0
  613. angr/procedures/definitions/win32_cldapi.py +110 -0
  614. angr/procedures/definitions/win32_clfsw32.py +156 -0
  615. angr/procedures/definitions/win32_clusapi.py +598 -0
  616. angr/procedures/definitions/win32_comctl32.py +268 -0
  617. angr/procedures/definitions/win32_comdlg32.py +80 -0
  618. angr/procedures/definitions/win32_compstui.py +46 -0
  619. angr/procedures/definitions/win32_computecore.py +146 -0
  620. angr/procedures/definitions/win32_computenetwork.py +124 -0
  621. angr/procedures/definitions/win32_computestorage.py +62 -0
  622. angr/procedures/definitions/win32_comsvcs.py +52 -0
  623. angr/procedures/definitions/win32_coremessaging.py +23 -0
  624. angr/procedures/definitions/win32_credui.py +76 -0
  625. angr/procedures/definitions/win32_crypt32.py +496 -0
  626. angr/procedures/definitions/win32_cryptnet.py +48 -0
  627. angr/procedures/definitions/win32_cryptui.py +58 -0
  628. angr/procedures/definitions/win32_cryptxml.py +76 -0
  629. angr/procedures/definitions/win32_cscapi.py +46 -0
  630. angr/procedures/definitions/win32_d2d1.py +64 -0
  631. angr/procedures/definitions/win32_d3d10.py +92 -0
  632. angr/procedures/definitions/win32_d3d10_1.py +42 -0
  633. angr/procedures/definitions/win32_d3d11.py +44 -0
  634. angr/procedures/definitions/win32_d3d12.py +54 -0
  635. angr/procedures/definitions/win32_d3d9.py +60 -0
  636. angr/procedures/definitions/win32_d3dcompiler_47.py +90 -0
  637. angr/procedures/definitions/win32_d3dcsx.py +56 -0
  638. angr/procedures/definitions/win32_davclnt.py +74 -0
  639. angr/procedures/definitions/win32_dbgeng.py +46 -0
  640. angr/procedures/definitions/win32_dbghelp.py +476 -0
  641. angr/procedures/definitions/win32_dbgmodel.py +40 -0
  642. angr/procedures/definitions/win32_dciman32.py +78 -0
  643. angr/procedures/definitions/win32_dcomp.py +62 -0
  644. angr/procedures/definitions/win32_ddraw.py +52 -0
  645. angr/procedures/definitions/win32_deviceaccess.py +40 -0
  646. angr/procedures/definitions/win32_dflayout.py +40 -0
  647. angr/procedures/definitions/win32_dhcpcsvc.py +68 -0
  648. angr/procedures/definitions/win32_dhcpcsvc6.py +50 -0
  649. angr/procedures/definitions/win32_dhcpsapi.py +430 -0
  650. angr/procedures/definitions/win32_diagnosticdataquery.py +108 -0
  651. angr/procedures/definitions/win32_dinput8.py +40 -0
  652. angr/procedures/definitions/win32_directml.py +42 -0
  653. angr/procedures/definitions/win32_dmprocessxmlfiltered.py +40 -0
  654. angr/procedures/definitions/win32_dnsapi.py +166 -0
  655. angr/procedures/definitions/win32_drt.py +70 -0
  656. angr/procedures/definitions/win32_drtprov.py +56 -0
  657. angr/procedures/definitions/win32_drttransport.py +42 -0
  658. angr/procedures/definitions/win32_dsound.py +58 -0
  659. angr/procedures/definitions/win32_dsparse.py +76 -0
  660. angr/procedures/definitions/win32_dsprop.py +52 -0
  661. angr/procedures/definitions/win32_dssec.py +46 -0
  662. angr/procedures/definitions/win32_dsuiext.py +46 -0
  663. angr/procedures/definitions/win32_dwmapi.py +100 -0
  664. angr/procedures/definitions/win32_dwrite.py +40 -0
  665. angr/procedures/definitions/win32_dxcompiler.py +42 -0
  666. angr/procedures/definitions/win32_dxcore.py +40 -0
  667. angr/procedures/definitions/win32_dxgi.py +50 -0
  668. angr/procedures/definitions/win32_dxva2.py +114 -0
  669. angr/procedures/definitions/win32_eappcfg.py +66 -0
  670. angr/procedures/definitions/win32_eappprxy.py +74 -0
  671. angr/procedures/definitions/win32_efswrt.py +42 -0
  672. angr/procedures/definitions/win32_elscore.py +48 -0
  673. angr/procedures/definitions/win32_esent.py +496 -0
  674. angr/procedures/definitions/win32_evr.py +52 -0
  675. angr/procedures/definitions/win32_faultrep.py +46 -0
  676. angr/procedures/definitions/win32_fhsvcctl.py +52 -0
  677. angr/procedures/definitions/win32_firewallapi.py +44 -0
  678. angr/procedures/definitions/win32_fltlib.py +94 -0
  679. angr/procedures/definitions/win32_fontsub.py +42 -0
  680. angr/procedures/definitions/win32_forceinline.py +44 -0
  681. angr/procedures/definitions/win32_fwpuclnt.py +422 -0
  682. angr/procedures/definitions/win32_fxsutility.py +42 -0
  683. angr/procedures/definitions/win32_gdi32.py +900 -0
  684. angr/procedures/definitions/win32_gdiplus.py +1296 -0
  685. angr/procedures/definitions/win32_glu32.py +142 -0
  686. angr/procedures/definitions/win32_gpedit.py +50 -0
  687. angr/procedures/definitions/win32_hhctrl_ocx.py +42 -0
  688. angr/procedures/definitions/win32_hid.py +128 -0
  689. angr/procedures/definitions/win32_hlink.py +94 -0
  690. angr/procedures/definitions/win32_hrtfapo.py +40 -0
  691. angr/procedures/definitions/win32_httpapi.py +124 -0
  692. angr/procedures/definitions/win32_icm32.py +80 -0
  693. angr/procedures/definitions/win32_icmui.py +42 -0
  694. angr/procedures/definitions/win32_icu.py +2088 -0
  695. angr/procedures/definitions/win32_ieframe.py +96 -0
  696. angr/procedures/definitions/win32_imagehlp.py +90 -0
  697. angr/procedures/definitions/win32_imgutil.py +56 -0
  698. angr/procedures/definitions/win32_imm32.py +202 -0
  699. angr/procedures/definitions/win32_infocardapi.py +72 -0
  700. angr/procedures/definitions/win32_inkobjcore.py +92 -0
  701. angr/procedures/definitions/win32_iphlpapi.py +440 -0
  702. angr/procedures/definitions/win32_iscsidsc.py +196 -0
  703. angr/procedures/definitions/win32_isolatedwindowsenvironmentutils.py +42 -0
  704. angr/procedures/definitions/win32_kernel32.py +3199 -0
  705. angr/procedures/definitions/win32_kernelbase.py +50 -0
  706. angr/procedures/definitions/win32_keycredmgr.py +46 -0
  707. angr/procedures/definitions/win32_ksproxy_ax.py +50 -0
  708. angr/procedures/definitions/win32_ksuser.py +54 -0
  709. angr/procedures/definitions/win32_ktmw32.py +116 -0
  710. angr/procedures/definitions/win32_licenseprotection.py +42 -0
  711. angr/procedures/definitions/win32_loadperf.py +62 -0
  712. angr/procedures/definitions/win32_magnification.py +76 -0
  713. angr/procedures/definitions/win32_mapi32.py +170 -0
  714. angr/procedures/definitions/win32_mdmlocalmanagement.py +44 -0
  715. angr/procedures/definitions/win32_mdmregistration.py +68 -0
  716. angr/procedures/definitions/win32_mf.py +162 -0
  717. angr/procedures/definitions/win32_mfcore.py +42 -0
  718. angr/procedures/definitions/win32_mfplat.py +328 -0
  719. angr/procedures/definitions/win32_mfplay.py +40 -0
  720. angr/procedures/definitions/win32_mfreadwrite.py +48 -0
  721. angr/procedures/definitions/win32_mfsensorgroup.py +58 -0
  722. angr/procedures/definitions/win32_mfsrcsnk.py +42 -0
  723. angr/procedures/definitions/win32_mgmtapi.py +56 -0
  724. angr/procedures/definitions/win32_mi.py +40 -0
  725. angr/procedures/definitions/win32_mmdevapi.py +40 -0
  726. angr/procedures/definitions/win32_mpr.py +132 -0
  727. angr/procedures/definitions/win32_mprapi.py +262 -0
  728. angr/procedures/definitions/win32_mqrt.py +106 -0
  729. angr/procedures/definitions/win32_mrmsupport.py +92 -0
  730. angr/procedures/definitions/win32_msacm32.py +122 -0
  731. angr/procedures/definitions/win32_msajapi.py +1132 -0
  732. angr/procedures/definitions/win32_mscms.py +196 -0
  733. angr/procedures/definitions/win32_mscoree.py +92 -0
  734. angr/procedures/definitions/win32_msctfmonitor.py +44 -0
  735. angr/procedures/definitions/win32_msdelta.py +70 -0
  736. angr/procedures/definitions/win32_msdmo.py +60 -0
  737. angr/procedures/definitions/win32_msdrm.py +206 -0
  738. angr/procedures/definitions/win32_msi.py +566 -0
  739. angr/procedures/definitions/win32_msimg32.py +44 -0
  740. angr/procedures/definitions/win32_mspatcha.py +70 -0
  741. angr/procedures/definitions/win32_mspatchc.py +56 -0
  742. angr/procedures/definitions/win32_msports.py +52 -0
  743. angr/procedures/definitions/win32_msrating.py +76 -0
  744. angr/procedures/definitions/win32_mssign32.py +58 -0
  745. angr/procedures/definitions/win32_mstask.py +42 -0
  746. angr/procedures/definitions/win32_msvfw32.py +124 -0
  747. angr/procedures/definitions/win32_mswsock.py +70 -0
  748. angr/procedures/definitions/win32_mtxdm.py +40 -0
  749. angr/procedures/definitions/win32_ncrypt.py +116 -0
  750. angr/procedures/definitions/win32_ndfapi.py +70 -0
  751. angr/procedures/definitions/win32_netapi32.py +450 -0
  752. angr/procedures/definitions/win32_netsh.py +54 -0
  753. angr/procedures/definitions/win32_netshell.py +42 -0
  754. angr/procedures/definitions/win32_newdev.py +60 -0
  755. angr/procedures/definitions/win32_ninput.py +98 -0
  756. angr/procedures/definitions/win32_normaliz.py +42 -0
  757. angr/procedures/definitions/win32_ntdll.py +185 -0
  758. angr/procedures/definitions/win32_ntdllk.py +40 -0
  759. angr/procedures/definitions/win32_ntdsapi.py +200 -0
  760. angr/procedures/definitions/win32_ntlanman.py +58 -0
  761. angr/procedures/definitions/win32_odbc32.py +406 -0
  762. angr/procedures/definitions/win32_odbcbcp.py +92 -0
  763. angr/procedures/definitions/win32_ole32.py +672 -0
  764. angr/procedures/definitions/win32_oleacc.py +72 -0
  765. angr/procedures/definitions/win32_oleaut32.py +848 -0
  766. angr/procedures/definitions/win32_oledlg.py +84 -0
  767. angr/procedures/definitions/win32_ondemandconnroutehelper.py +48 -0
  768. angr/procedures/definitions/win32_opengl32.py +748 -0
  769. angr/procedures/definitions/win32_opmxbox.py +44 -0
  770. angr/procedures/definitions/win32_p2p.py +254 -0
  771. angr/procedures/definitions/win32_p2pgraph.py +112 -0
  772. angr/procedures/definitions/win32_pdh.py +234 -0
  773. angr/procedures/definitions/win32_peerdist.py +94 -0
  774. angr/procedures/definitions/win32_powrprof.py +206 -0
  775. angr/procedures/definitions/win32_prntvpt.py +60 -0
  776. angr/procedures/definitions/win32_projectedfslib.py +76 -0
  777. angr/procedures/definitions/win32_propsys.py +474 -0
  778. angr/procedures/definitions/win32_psapi.py +92 -0
  779. angr/procedures/definitions/win32_quartz.py +42 -0
  780. angr/procedures/definitions/win32_query.py +46 -0
  781. angr/procedures/definitions/win32_qwave.py +60 -0
  782. angr/procedures/definitions/win32_rasapi32.py +206 -0
  783. angr/procedures/definitions/win32_rasdlg.py +50 -0
  784. angr/procedures/definitions/win32_resutils.py +278 -0
  785. angr/procedures/definitions/win32_rometadata.py +23 -0
  786. angr/procedures/definitions/win32_rpcns4.py +160 -0
  787. angr/procedures/definitions/win32_rpcproxy.py +46 -0
  788. angr/procedures/definitions/win32_rpcrt4.py +932 -0
  789. angr/procedures/definitions/win32_rstrtmgr.py +60 -0
  790. angr/procedures/definitions/win32_rtm.py +190 -0
  791. angr/procedures/definitions/win32_rtutils.py +120 -0
  792. angr/procedures/definitions/win32_rtworkq.py +104 -0
  793. angr/procedures/definitions/win32_sas.py +40 -0
  794. angr/procedures/definitions/win32_scarddlg.py +48 -0
  795. angr/procedures/definitions/win32_schannel.py +56 -0
  796. angr/procedures/definitions/win32_sechost.py +42 -0
  797. angr/procedures/definitions/win32_secur32.py +216 -0
  798. angr/procedures/definitions/win32_sensapi.py +44 -0
  799. angr/procedures/definitions/win32_sensorsutilsv2.py +118 -0
  800. angr/procedures/definitions/win32_setupapi.py +706 -0
  801. angr/procedures/definitions/win32_sfc.py +50 -0
  802. angr/procedures/definitions/win32_shdocvw.py +44 -0
  803. angr/procedures/definitions/win32_shell32.py +526 -0
  804. angr/procedures/definitions/win32_shlwapi.py +758 -0
  805. angr/procedures/definitions/win32_slc.py +102 -0
  806. angr/procedures/definitions/win32_slcext.py +46 -0
  807. angr/procedures/definitions/win32_slwga.py +40 -0
  808. angr/procedures/definitions/win32_snmpapi.py +90 -0
  809. angr/procedures/definitions/win32_spoolss.py +90 -0
  810. angr/procedures/definitions/win32_srclient.py +40 -0
  811. angr/procedures/definitions/win32_srpapi.py +60 -0
  812. angr/procedures/definitions/win32_sspicli.py +52 -0
  813. angr/procedures/definitions/win32_sti.py +40 -0
  814. angr/procedures/definitions/win32_t2embed.py +66 -0
  815. angr/procedures/definitions/win32_tapi32.py +536 -0
  816. angr/procedures/definitions/win32_tbs.py +66 -0
  817. angr/procedures/definitions/win32_tdh.py +92 -0
  818. angr/procedures/definitions/win32_tokenbinding.py +58 -0
  819. angr/procedures/definitions/win32_traffic.py +78 -0
  820. angr/procedures/definitions/win32_txfw32.py +56 -0
  821. angr/procedures/definitions/win32_ualapi.py +46 -0
  822. angr/procedures/definitions/win32_uiautomationcore.py +234 -0
  823. angr/procedures/definitions/win32_urlmon.py +192 -0
  824. angr/procedures/definitions/win32_user32.py +1565 -0
  825. angr/procedures/definitions/win32_userenv.py +126 -0
  826. angr/procedures/definitions/win32_usp10.py +118 -0
  827. angr/procedures/definitions/win32_uxtheme.py +192 -0
  828. angr/procedures/definitions/win32_verifier.py +40 -0
  829. angr/procedures/definitions/win32_version.py +66 -0
  830. angr/procedures/definitions/win32_vertdll.py +52 -0
  831. angr/procedures/definitions/win32_virtdisk.py +96 -0
  832. angr/procedures/definitions/win32_vmdevicehost.py +64 -0
  833. angr/procedures/definitions/win32_vmsavedstatedumpprovider.py +124 -0
  834. angr/procedures/definitions/win32_vssapi.py +40 -0
  835. angr/procedures/definitions/win32_wcmapi.py +48 -0
  836. angr/procedures/definitions/win32_wdsbp.py +52 -0
  837. angr/procedures/definitions/win32_wdsclientapi.py +112 -0
  838. angr/procedures/definitions/win32_wdsmc.py +50 -0
  839. angr/procedures/definitions/win32_wdspxe.py +100 -0
  840. angr/procedures/definitions/win32_wdstptc.py +64 -0
  841. angr/procedures/definitions/win32_webauthn.py +64 -0
  842. angr/procedures/definitions/win32_webservices.py +424 -0
  843. angr/procedures/definitions/win32_websocket.py +64 -0
  844. angr/procedures/definitions/win32_wecapi.py +68 -0
  845. angr/procedures/definitions/win32_wer.py +80 -0
  846. angr/procedures/definitions/win32_wevtapi.py +108 -0
  847. angr/procedures/definitions/win32_winbio.py +146 -0
  848. angr/procedures/definitions/win32_windows_ai_machinelearning.py +40 -0
  849. angr/procedures/definitions/win32_windows_data_pdf.py +23 -0
  850. angr/procedures/definitions/win32_windows_media_mediacontrol.py +54 -0
  851. angr/procedures/definitions/win32_windows_networking.py +40 -0
  852. angr/procedures/definitions/win32_windows_ui_xaml.py +42 -0
  853. angr/procedures/definitions/win32_windowscodecs.py +56 -0
  854. angr/procedures/definitions/win32_winfax.py +150 -0
  855. angr/procedures/definitions/win32_winhttp.py +150 -0
  856. angr/procedures/definitions/win32_winhvemulation.py +46 -0
  857. angr/procedures/definitions/win32_winhvplatform.py +170 -0
  858. angr/procedures/definitions/win32_wininet.py +630 -0
  859. angr/procedures/definitions/win32_winml.py +40 -0
  860. angr/procedures/definitions/win32_winmm.py +390 -0
  861. angr/procedures/definitions/win32_winscard.py +178 -0
  862. angr/procedures/definitions/win32_winspool.py +363 -0
  863. angr/procedures/definitions/win32_winspool_drv.py +382 -0
  864. angr/procedures/definitions/win32_wintrust.py +158 -0
  865. angr/procedures/definitions/win32_winusb.py +106 -0
  866. angr/procedures/definitions/win32_wlanapi.py +158 -0
  867. angr/procedures/definitions/win32_wlanui.py +40 -0
  868. angr/procedures/definitions/win32_wldap32.py +524 -0
  869. angr/procedures/definitions/win32_wldp.py +56 -0
  870. angr/procedures/definitions/win32_wmvcore.py +60 -0
  871. angr/procedures/definitions/win32_wnvapi.py +42 -0
  872. angr/procedures/definitions/win32_wofutil.py +60 -0
  873. angr/procedures/definitions/win32_ws2_32.py +358 -0
  874. angr/procedures/definitions/win32_wscapi.py +50 -0
  875. angr/procedures/definitions/win32_wsclient.py +44 -0
  876. angr/procedures/definitions/win32_wsdapi.py +102 -0
  877. angr/procedures/definitions/win32_wsmsvc.py +104 -0
  878. angr/procedures/definitions/win32_wsnmp32.py +136 -0
  879. angr/procedures/definitions/win32_wtsapi32.py +164 -0
  880. angr/procedures/definitions/win32_xaudio2_8.py +46 -0
  881. angr/procedures/definitions/win32_xinput1_4.py +52 -0
  882. angr/procedures/definitions/win32_xinputuap.py +35 -0
  883. angr/procedures/definitions/win32_xmllite.py +50 -0
  884. angr/procedures/definitions/win32_xolehlp.py +46 -0
  885. angr/procedures/definitions/win32_xpsprint.py +42 -0
  886. angr/procedures/glibc/__ctype_b_loc.py +22 -0
  887. angr/procedures/glibc/__ctype_tolower_loc.py +22 -0
  888. angr/procedures/glibc/__ctype_toupper_loc.py +22 -0
  889. angr/procedures/glibc/__errno_location.py +6 -0
  890. angr/procedures/glibc/__init__.py +3 -0
  891. angr/procedures/glibc/__libc_init.py +36 -0
  892. angr/procedures/glibc/__libc_start_main.py +294 -0
  893. angr/procedures/glibc/dynamic_loading.py +19 -0
  894. angr/procedures/glibc/scanf.py +10 -0
  895. angr/procedures/glibc/sscanf.py +5 -0
  896. angr/procedures/gnulib/__init__.py +3 -0
  897. angr/procedures/gnulib/xalloc_die.py +13 -0
  898. angr/procedures/gnulib/xstrtol_fatal.py +13 -0
  899. angr/procedures/java/__init__.py +38 -0
  900. angr/procedures/java/unconstrained.py +64 -0
  901. angr/procedures/java_io/__init__.py +0 -0
  902. angr/procedures/java_io/read.py +11 -0
  903. angr/procedures/java_io/write.py +16 -0
  904. angr/procedures/java_jni/__init__.py +475 -0
  905. angr/procedures/java_jni/array_operations.py +309 -0
  906. angr/procedures/java_jni/class_and_interface_operations.py +31 -0
  907. angr/procedures/java_jni/field_access.py +176 -0
  908. angr/procedures/java_jni/global_and_local_refs.py +56 -0
  909. angr/procedures/java_jni/method_calls.py +364 -0
  910. angr/procedures/java_jni/not_implemented.py +25 -0
  911. angr/procedures/java_jni/object_operations.py +95 -0
  912. angr/procedures/java_jni/string_operations.py +86 -0
  913. angr/procedures/java_jni/version_information.py +11 -0
  914. angr/procedures/java_lang/__init__.py +0 -0
  915. angr/procedures/java_lang/character.py +31 -0
  916. angr/procedures/java_lang/double.py +24 -0
  917. angr/procedures/java_lang/exit.py +12 -0
  918. angr/procedures/java_lang/getsimplename.py +15 -0
  919. angr/procedures/java_lang/integer.py +42 -0
  920. angr/procedures/java_lang/load_library.py +8 -0
  921. angr/procedures/java_lang/math.py +14 -0
  922. angr/procedures/java_lang/string.py +78 -0
  923. angr/procedures/java_lang/stringbuilder.py +43 -0
  924. angr/procedures/java_lang/system.py +17 -0
  925. angr/procedures/java_util/__init__.py +0 -0
  926. angr/procedures/java_util/collection.py +34 -0
  927. angr/procedures/java_util/iterator.py +45 -0
  928. angr/procedures/java_util/list.py +98 -0
  929. angr/procedures/java_util/map.py +132 -0
  930. angr/procedures/java_util/random.py +11 -0
  931. angr/procedures/java_util/scanner_nextline.py +22 -0
  932. angr/procedures/libc/__init__.py +3 -0
  933. angr/procedures/libc/abort.py +8 -0
  934. angr/procedures/libc/access.py +10 -0
  935. angr/procedures/libc/atoi.py +14 -0
  936. angr/procedures/libc/atol.py +12 -0
  937. angr/procedures/libc/calloc.py +7 -0
  938. angr/procedures/libc/closelog.py +9 -0
  939. angr/procedures/libc/err.py +13 -0
  940. angr/procedures/libc/error.py +55 -0
  941. angr/procedures/libc/exit.py +10 -0
  942. angr/procedures/libc/fclose.py +20 -0
  943. angr/procedures/libc/feof.py +19 -0
  944. angr/procedures/libc/fflush.py +15 -0
  945. angr/procedures/libc/fgetc.py +24 -0
  946. angr/procedures/libc/fgets.py +68 -0
  947. angr/procedures/libc/fopen.py +64 -0
  948. angr/procedures/libc/fprintf.py +24 -0
  949. angr/procedures/libc/fputc.py +22 -0
  950. angr/procedures/libc/fputs.py +23 -0
  951. angr/procedures/libc/fread.py +22 -0
  952. angr/procedures/libc/free.py +8 -0
  953. angr/procedures/libc/fscanf.py +20 -0
  954. angr/procedures/libc/fseek.py +32 -0
  955. angr/procedures/libc/ftell.py +21 -0
  956. angr/procedures/libc/fwrite.py +18 -0
  957. angr/procedures/libc/getchar.py +13 -0
  958. angr/procedures/libc/getdelim.py +96 -0
  959. angr/procedures/libc/getegid.py +7 -0
  960. angr/procedures/libc/geteuid.py +7 -0
  961. angr/procedures/libc/getgid.py +7 -0
  962. angr/procedures/libc/gets.py +66 -0
  963. angr/procedures/libc/getuid.py +7 -0
  964. angr/procedures/libc/malloc.py +11 -0
  965. angr/procedures/libc/memcmp.py +69 -0
  966. angr/procedures/libc/memcpy.py +37 -0
  967. angr/procedures/libc/memset.py +69 -0
  968. angr/procedures/libc/openlog.py +9 -0
  969. angr/procedures/libc/perror.py +12 -0
  970. angr/procedures/libc/printf.py +33 -0
  971. angr/procedures/libc/putchar.py +12 -0
  972. angr/procedures/libc/puts.py +16 -0
  973. angr/procedures/libc/rand.py +7 -0
  974. angr/procedures/libc/realloc.py +7 -0
  975. angr/procedures/libc/rewind.py +11 -0
  976. angr/procedures/libc/scanf.py +20 -0
  977. angr/procedures/libc/setbuf.py +8 -0
  978. angr/procedures/libc/setvbuf.py +6 -0
  979. angr/procedures/libc/snprintf.py +33 -0
  980. angr/procedures/libc/sprintf.py +22 -0
  981. angr/procedures/libc/srand.py +6 -0
  982. angr/procedures/libc/sscanf.py +13 -0
  983. angr/procedures/libc/stpcpy.py +18 -0
  984. angr/procedures/libc/strcat.py +13 -0
  985. angr/procedures/libc/strchr.py +44 -0
  986. angr/procedures/libc/strcmp.py +28 -0
  987. angr/procedures/libc/strcpy.py +13 -0
  988. angr/procedures/libc/strlen.py +99 -0
  989. angr/procedures/libc/strncat.py +18 -0
  990. angr/procedures/libc/strncmp.py +180 -0
  991. angr/procedures/libc/strncpy.py +18 -0
  992. angr/procedures/libc/strnlen.py +13 -0
  993. angr/procedures/libc/strstr.py +94 -0
  994. angr/procedures/libc/strtol.py +263 -0
  995. angr/procedures/libc/strtoul.py +9 -0
  996. angr/procedures/libc/system.py +12 -0
  997. angr/procedures/libc/time.py +9 -0
  998. angr/procedures/libc/tmpnam.py +19 -0
  999. angr/procedures/libc/tolower.py +7 -0
  1000. angr/procedures/libc/toupper.py +7 -0
  1001. angr/procedures/libc/ungetc.py +19 -0
  1002. angr/procedures/libc/vsnprintf.py +16 -0
  1003. angr/procedures/libc/wchar.py +15 -0
  1004. angr/procedures/libstdcpp/__init__.py +0 -0
  1005. angr/procedures/libstdcpp/_unwind_resume.py +10 -0
  1006. angr/procedures/libstdcpp/std____throw_bad_alloc.py +12 -0
  1007. angr/procedures/libstdcpp/std____throw_bad_cast.py +12 -0
  1008. angr/procedures/libstdcpp/std____throw_length_error.py +12 -0
  1009. angr/procedures/libstdcpp/std____throw_logic_error.py +12 -0
  1010. angr/procedures/libstdcpp/std__terminate.py +12 -0
  1011. angr/procedures/linux_kernel/__init__.py +3 -0
  1012. angr/procedures/linux_kernel/access.py +17 -0
  1013. angr/procedures/linux_kernel/arch_prctl.py +33 -0
  1014. angr/procedures/linux_kernel/arm_user_helpers.py +58 -0
  1015. angr/procedures/linux_kernel/brk.py +17 -0
  1016. angr/procedures/linux_kernel/cwd.py +27 -0
  1017. angr/procedures/linux_kernel/fstat.py +137 -0
  1018. angr/procedures/linux_kernel/fstat64.py +169 -0
  1019. angr/procedures/linux_kernel/futex.py +17 -0
  1020. angr/procedures/linux_kernel/getegid.py +16 -0
  1021. angr/procedures/linux_kernel/geteuid.py +16 -0
  1022. angr/procedures/linux_kernel/getgid.py +16 -0
  1023. angr/procedures/linux_kernel/getpid.py +13 -0
  1024. angr/procedures/linux_kernel/getrlimit.py +24 -0
  1025. angr/procedures/linux_kernel/gettid.py +8 -0
  1026. angr/procedures/linux_kernel/getuid.py +16 -0
  1027. angr/procedures/linux_kernel/iovec.py +43 -0
  1028. angr/procedures/linux_kernel/lseek.py +39 -0
  1029. angr/procedures/linux_kernel/mmap.py +15 -0
  1030. angr/procedures/linux_kernel/mprotect.py +41 -0
  1031. angr/procedures/linux_kernel/munmap.py +7 -0
  1032. angr/procedures/linux_kernel/openat.py +28 -0
  1033. angr/procedures/linux_kernel/set_tid_address.py +7 -0
  1034. angr/procedures/linux_kernel/sigaction.py +16 -0
  1035. angr/procedures/linux_kernel/sigprocmask.py +20 -0
  1036. angr/procedures/linux_kernel/stat.py +22 -0
  1037. angr/procedures/linux_kernel/sysinfo.py +58 -0
  1038. angr/procedures/linux_kernel/tgkill.py +7 -0
  1039. angr/procedures/linux_kernel/time.py +30 -0
  1040. angr/procedures/linux_kernel/uid.py +29 -0
  1041. angr/procedures/linux_kernel/uname.py +28 -0
  1042. angr/procedures/linux_kernel/unlink.py +22 -0
  1043. angr/procedures/linux_kernel/vsyscall.py +15 -0
  1044. angr/procedures/linux_loader/__init__.py +3 -0
  1045. angr/procedures/linux_loader/_dl_initial_error_catch_tsd.py +6 -0
  1046. angr/procedures/linux_loader/_dl_rtld_lock.py +14 -0
  1047. angr/procedures/linux_loader/sim_loader.py +53 -0
  1048. angr/procedures/linux_loader/tls.py +40 -0
  1049. angr/procedures/msvcr/__getmainargs.py +15 -0
  1050. angr/procedures/msvcr/__init__.py +4 -0
  1051. angr/procedures/msvcr/_initterm.py +37 -0
  1052. angr/procedures/msvcr/fmode.py +28 -0
  1053. angr/procedures/ntdll/__init__.py +0 -0
  1054. angr/procedures/ntdll/exceptions.py +57 -0
  1055. angr/procedures/posix/__init__.py +3 -0
  1056. angr/procedures/posix/accept.py +29 -0
  1057. angr/procedures/posix/bind.py +12 -0
  1058. angr/procedures/posix/bzero.py +6 -0
  1059. angr/procedures/posix/chroot.py +26 -0
  1060. angr/procedures/posix/close.py +9 -0
  1061. angr/procedures/posix/closedir.py +6 -0
  1062. angr/procedures/posix/dup.py +55 -0
  1063. angr/procedures/posix/fcntl.py +9 -0
  1064. angr/procedures/posix/fdopen.py +77 -0
  1065. angr/procedures/posix/fileno.py +17 -0
  1066. angr/procedures/posix/fork.py +10 -0
  1067. angr/procedures/posix/getenv.py +34 -0
  1068. angr/procedures/posix/gethostbyname.py +42 -0
  1069. angr/procedures/posix/getpass.py +18 -0
  1070. angr/procedures/posix/getsockopt.py +10 -0
  1071. angr/procedures/posix/htonl.py +11 -0
  1072. angr/procedures/posix/htons.py +11 -0
  1073. angr/procedures/posix/inet_ntoa.py +61 -0
  1074. angr/procedures/posix/listen.py +12 -0
  1075. angr/procedures/posix/mmap.py +140 -0
  1076. angr/procedures/posix/open.py +17 -0
  1077. angr/procedures/posix/opendir.py +9 -0
  1078. angr/procedures/posix/poll.py +54 -0
  1079. angr/procedures/posix/pread64.py +45 -0
  1080. angr/procedures/posix/pthread.py +87 -0
  1081. angr/procedures/posix/pwrite64.py +45 -0
  1082. angr/procedures/posix/read.py +12 -0
  1083. angr/procedures/posix/readdir.py +59 -0
  1084. angr/procedures/posix/recv.py +12 -0
  1085. angr/procedures/posix/recvfrom.py +12 -0
  1086. angr/procedures/posix/select.py +46 -0
  1087. angr/procedures/posix/send.py +22 -0
  1088. angr/procedures/posix/setsockopt.py +8 -0
  1089. angr/procedures/posix/sigaction.py +20 -0
  1090. angr/procedures/posix/sim_time.py +45 -0
  1091. angr/procedures/posix/sleep.py +7 -0
  1092. angr/procedures/posix/socket.py +18 -0
  1093. angr/procedures/posix/strcasecmp.py +23 -0
  1094. angr/procedures/posix/strdup.py +17 -0
  1095. angr/procedures/posix/strtok_r.py +65 -0
  1096. angr/procedures/posix/syslog.py +15 -0
  1097. angr/procedures/posix/tz.py +8 -0
  1098. angr/procedures/posix/unlink.py +10 -0
  1099. angr/procedures/posix/usleep.py +7 -0
  1100. angr/procedures/posix/write.py +12 -0
  1101. angr/procedures/procedure_dict.py +48 -0
  1102. angr/procedures/stubs/CallReturn.py +12 -0
  1103. angr/procedures/stubs/NoReturnUnconstrained.py +12 -0
  1104. angr/procedures/stubs/Nop.py +6 -0
  1105. angr/procedures/stubs/PathTerminator.py +8 -0
  1106. angr/procedures/stubs/Redirect.py +15 -0
  1107. angr/procedures/stubs/ReturnChar.py +10 -0
  1108. angr/procedures/stubs/ReturnUnconstrained.py +24 -0
  1109. angr/procedures/stubs/UnresolvableCallTarget.py +8 -0
  1110. angr/procedures/stubs/UnresolvableJumpTarget.py +8 -0
  1111. angr/procedures/stubs/UserHook.py +15 -0
  1112. angr/procedures/stubs/__init__.py +3 -0
  1113. angr/procedures/stubs/b64_decode.py +12 -0
  1114. angr/procedures/stubs/caller.py +13 -0
  1115. angr/procedures/stubs/crazy_scanf.py +17 -0
  1116. angr/procedures/stubs/format_parser.py +677 -0
  1117. angr/procedures/stubs/syscall_stub.py +26 -0
  1118. angr/procedures/testing/__init__.py +3 -0
  1119. angr/procedures/testing/manyargs.py +8 -0
  1120. angr/procedures/testing/retreg.py +8 -0
  1121. angr/procedures/tracer/__init__.py +4 -0
  1122. angr/procedures/tracer/random.py +8 -0
  1123. angr/procedures/tracer/receive.py +21 -0
  1124. angr/procedures/tracer/transmit.py +24 -0
  1125. angr/procedures/uclibc/__init__.py +3 -0
  1126. angr/procedures/uclibc/__uClibc_main.py +9 -0
  1127. angr/procedures/win32/EncodePointer.py +6 -0
  1128. angr/procedures/win32/ExitProcess.py +8 -0
  1129. angr/procedures/win32/GetCommandLine.py +11 -0
  1130. angr/procedures/win32/GetCurrentProcessId.py +6 -0
  1131. angr/procedures/win32/GetCurrentThreadId.py +6 -0
  1132. angr/procedures/win32/GetLastInputInfo.py +37 -0
  1133. angr/procedures/win32/GetModuleHandle.py +30 -0
  1134. angr/procedures/win32/GetProcessAffinityMask.py +34 -0
  1135. angr/procedures/win32/InterlockedExchange.py +14 -0
  1136. angr/procedures/win32/IsProcessorFeaturePresent.py +6 -0
  1137. angr/procedures/win32/VirtualAlloc.py +113 -0
  1138. angr/procedures/win32/VirtualProtect.py +59 -0
  1139. angr/procedures/win32/__init__.py +3 -0
  1140. angr/procedures/win32/critical_section.py +11 -0
  1141. angr/procedures/win32/dynamic_loading.py +103 -0
  1142. angr/procedures/win32/file_handles.py +47 -0
  1143. angr/procedures/win32/gethostbyname.py +10 -0
  1144. angr/procedures/win32/heap.py +42 -0
  1145. angr/procedures/win32/is_bad_ptr.py +25 -0
  1146. angr/procedures/win32/local_storage.py +85 -0
  1147. angr/procedures/win32/mutex.py +10 -0
  1148. angr/procedures/win32/sim_time.py +135 -0
  1149. angr/procedures/win32/system_paths.py +34 -0
  1150. angr/procedures/win32_kernel/ExAllocatePool.py +12 -0
  1151. angr/procedures/win32_kernel/ExFreePoolWithTag.py +7 -0
  1152. angr/procedures/win32_kernel/__init__.py +3 -0
  1153. angr/procedures/win_user32/__init__.py +0 -0
  1154. angr/procedures/win_user32/chars.py +12 -0
  1155. angr/procedures/win_user32/keyboard.py +13 -0
  1156. angr/procedures/win_user32/messagebox.py +49 -0
  1157. angr/project.py +834 -0
  1158. angr/protos/__init__.py +13 -0
  1159. angr/protos/cfg_pb2.py +31 -0
  1160. angr/protos/function_pb2.py +37 -0
  1161. angr/protos/primitives_pb2.py +124 -0
  1162. angr/protos/variables_pb2.py +126 -0
  1163. angr/protos/xrefs_pb2.py +34 -0
  1164. angr/py.typed +1 -0
  1165. angr/serializable.py +63 -0
  1166. angr/service.py +35 -0
  1167. angr/sim_manager.py +971 -0
  1168. angr/sim_options.py +444 -0
  1169. angr/sim_procedure.py +606 -0
  1170. angr/sim_state.py +1003 -0
  1171. angr/sim_state_options.py +409 -0
  1172. angr/sim_type.py +3372 -0
  1173. angr/sim_variable.py +562 -0
  1174. angr/simos/__init__.py +31 -0
  1175. angr/simos/cgc.py +152 -0
  1176. angr/simos/javavm.py +471 -0
  1177. angr/simos/linux.py +519 -0
  1178. angr/simos/simos.py +450 -0
  1179. angr/simos/snimmuc_nxp.py +152 -0
  1180. angr/simos/userland.py +163 -0
  1181. angr/simos/windows.py +562 -0
  1182. angr/slicer.py +353 -0
  1183. angr/state_hierarchy.py +262 -0
  1184. angr/state_plugins/__init__.py +29 -0
  1185. angr/state_plugins/callstack.py +404 -0
  1186. angr/state_plugins/cgc.py +153 -0
  1187. angr/state_plugins/concrete.py +297 -0
  1188. angr/state_plugins/debug_variables.py +194 -0
  1189. angr/state_plugins/filesystem.py +469 -0
  1190. angr/state_plugins/gdb.py +146 -0
  1191. angr/state_plugins/globals.py +62 -0
  1192. angr/state_plugins/heap/__init__.py +5 -0
  1193. angr/state_plugins/heap/heap_base.py +126 -0
  1194. angr/state_plugins/heap/heap_brk.py +134 -0
  1195. angr/state_plugins/heap/heap_freelist.py +210 -0
  1196. angr/state_plugins/heap/heap_libc.py +45 -0
  1197. angr/state_plugins/heap/heap_ptmalloc.py +646 -0
  1198. angr/state_plugins/heap/utils.py +21 -0
  1199. angr/state_plugins/history.py +548 -0
  1200. angr/state_plugins/inspect.py +376 -0
  1201. angr/state_plugins/javavm_classloader.py +133 -0
  1202. angr/state_plugins/jni_references.py +93 -0
  1203. angr/state_plugins/libc.py +1263 -0
  1204. angr/state_plugins/light_registers.py +170 -0
  1205. angr/state_plugins/log.py +85 -0
  1206. angr/state_plugins/loop_data.py +92 -0
  1207. angr/state_plugins/plugin.py +155 -0
  1208. angr/state_plugins/posix.py +709 -0
  1209. angr/state_plugins/preconstrainer.py +195 -0
  1210. angr/state_plugins/scratch.py +175 -0
  1211. angr/state_plugins/sim_action.py +334 -0
  1212. angr/state_plugins/sim_action_object.py +148 -0
  1213. angr/state_plugins/sim_event.py +58 -0
  1214. angr/state_plugins/solver.py +1129 -0
  1215. angr/state_plugins/symbolizer.py +292 -0
  1216. angr/state_plugins/trace_additions.py +752 -0
  1217. angr/state_plugins/uc_manager.py +85 -0
  1218. angr/state_plugins/unicorn_engine.py +1899 -0
  1219. angr/state_plugins/view.py +341 -0
  1220. angr/storage/__init__.py +9 -0
  1221. angr/storage/file.py +1219 -0
  1222. angr/storage/memory_mixins/__init__.py +393 -0
  1223. angr/storage/memory_mixins/__init__.pyi +49 -0
  1224. angr/storage/memory_mixins/actions_mixin.py +69 -0
  1225. angr/storage/memory_mixins/address_concretization_mixin.py +388 -0
  1226. angr/storage/memory_mixins/bvv_conversion_mixin.py +74 -0
  1227. angr/storage/memory_mixins/clouseau_mixin.py +131 -0
  1228. angr/storage/memory_mixins/conditional_store_mixin.py +24 -0
  1229. angr/storage/memory_mixins/convenient_mappings_mixin.py +257 -0
  1230. angr/storage/memory_mixins/default_filler_mixin.py +146 -0
  1231. angr/storage/memory_mixins/dirty_addrs_mixin.py +9 -0
  1232. angr/storage/memory_mixins/hex_dumper_mixin.py +85 -0
  1233. angr/storage/memory_mixins/javavm_memory/__init__.py +1 -0
  1234. angr/storage/memory_mixins/javavm_memory/javavm_memory_mixin.py +394 -0
  1235. angr/storage/memory_mixins/keyvalue_memory/__init__.py +1 -0
  1236. angr/storage/memory_mixins/keyvalue_memory/keyvalue_memory_mixin.py +36 -0
  1237. angr/storage/memory_mixins/label_merger_mixin.py +31 -0
  1238. angr/storage/memory_mixins/multi_value_merger_mixin.py +68 -0
  1239. angr/storage/memory_mixins/name_resolution_mixin.py +70 -0
  1240. angr/storage/memory_mixins/paged_memory/__init__.py +0 -0
  1241. angr/storage/memory_mixins/paged_memory/page_backer_mixins.py +266 -0
  1242. angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py +750 -0
  1243. angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py +63 -0
  1244. angr/storage/memory_mixins/paged_memory/pages/__init__.py +33 -0
  1245. angr/storage/memory_mixins/paged_memory/pages/cooperation.py +330 -0
  1246. angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py +87 -0
  1247. angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py +53 -0
  1248. angr/storage/memory_mixins/paged_memory/pages/list_page.py +346 -0
  1249. angr/storage/memory_mixins/paged_memory/pages/multi_values.py +290 -0
  1250. angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py +434 -0
  1251. angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py +33 -0
  1252. angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py +51 -0
  1253. angr/storage/memory_mixins/paged_memory/pages/ultra_page.py +468 -0
  1254. angr/storage/memory_mixins/paged_memory/privileged_mixin.py +36 -0
  1255. angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py +73 -0
  1256. angr/storage/memory_mixins/regioned_memory/__init__.py +6 -0
  1257. angr/storage/memory_mixins/regioned_memory/abstract_address_descriptor.py +35 -0
  1258. angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py +43 -0
  1259. angr/storage/memory_mixins/regioned_memory/region_category_mixin.py +7 -0
  1260. angr/storage/memory_mixins/regioned_memory/region_data.py +245 -0
  1261. angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py +125 -0
  1262. angr/storage/memory_mixins/regioned_memory/regioned_address_concretization_mixin.py +118 -0
  1263. angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py +462 -0
  1264. angr/storage/memory_mixins/regioned_memory/static_find_mixin.py +70 -0
  1265. angr/storage/memory_mixins/simple_interface_mixin.py +73 -0
  1266. angr/storage/memory_mixins/simplification_mixin.py +13 -0
  1267. angr/storage/memory_mixins/size_resolution_mixin.py +140 -0
  1268. angr/storage/memory_mixins/slotted_memory.py +140 -0
  1269. angr/storage/memory_mixins/smart_find_mixin.py +159 -0
  1270. angr/storage/memory_mixins/symbolic_merger_mixin.py +12 -0
  1271. angr/storage/memory_mixins/top_merger_mixin.py +24 -0
  1272. angr/storage/memory_mixins/underconstrained_mixin.py +67 -0
  1273. angr/storage/memory_mixins/unwrapper_mixin.py +26 -0
  1274. angr/storage/memory_object.py +194 -0
  1275. angr/storage/pcap.py +65 -0
  1276. angr/tablespecs.py +90 -0
  1277. angr/utils/__init__.py +33 -0
  1278. angr/utils/algo.py +33 -0
  1279. angr/utils/constants.py +7 -0
  1280. angr/utils/cowdict.py +64 -0
  1281. angr/utils/dynamic_dictlist.py +92 -0
  1282. angr/utils/enums_conv.py +80 -0
  1283. angr/utils/env.py +11 -0
  1284. angr/utils/formatting.py +124 -0
  1285. angr/utils/funcid.py +133 -0
  1286. angr/utils/graph.py +822 -0
  1287. angr/utils/lazy_import.py +12 -0
  1288. angr/utils/library.py +214 -0
  1289. angr/utils/loader.py +55 -0
  1290. angr/utils/mp.py +64 -0
  1291. angr/utils/segment_list.py +558 -0
  1292. angr/utils/timing.py +45 -0
  1293. angr/utils/typing.py +17 -0
  1294. angr/vaults.py +370 -0
  1295. angr-9.2.103.dist-info/LICENSE +24 -0
  1296. angr-9.2.103.dist-info/METADATA +119 -0
  1297. angr-9.2.103.dist-info/RECORD +1300 -0
  1298. angr-9.2.103.dist-info/WHEEL +5 -0
  1299. angr-9.2.103.dist-info/entry_points.txt +2 -0
  1300. angr-9.2.103.dist-info/top_level.txt +1 -0
@@ -0,0 +1,2556 @@
1
+ # Based on https://github.com/dfraze/binja_winmd/blob/main/main.py. Thank you, Dustin Fraze!
2
+
3
+ from typing import Set
4
+ import json
5
+ import codecs
6
+ import sys
7
+ import logging
8
+ from collections import OrderedDict, defaultdict
9
+ from argparse import ArgumentParser
10
+ from pathlib import Path
11
+
12
+ import angr
13
+ from angr.sim_type import SimTypeFunction, SimTypeLong
14
+ from angr.utils.library import parsedcprotos2py
15
+ from angr.procedures.definitions import SimTypeCollection
16
+ from angr.errors import AngrMissingTypeError
17
+
18
+
19
+ api_namespaces = {}
20
+ altnames = set()
21
+
22
+
23
+ typelib = SimTypeCollection()
24
+ typelib.names = ["win32"]
25
+ known_struct_names: set[str] = set()
26
+
27
+
28
+ def is_anonymous_struct(s_name: str) -> bool:
29
+ return "anonymous" in s_name.lower()
30
+
31
+
32
+ def get_angr_type_from_name(name):
33
+ if name == "Byte":
34
+ return angr.types.SimTypeChar(signed=False, label="Byte")
35
+ elif name == "SByte":
36
+ return angr.types.SimTypeChar(signed=True, label="SByte")
37
+ elif name == "Char":
38
+ return angr.types.SimTypeChar(signed=True, label="Char")
39
+ elif name == "UInt16":
40
+ return angr.types.SimTypeShort(signed=False, label="UInt16")
41
+ elif name == "Int16":
42
+ return angr.types.SimTypeShort(signed=True, label="Int16")
43
+ elif name == "Int64":
44
+ return angr.types.SimTypeLongLong(signed=True, label="Int64")
45
+ elif name == "UInt32":
46
+ return angr.types.SimTypeInt(signed=False, label="UInt32")
47
+ elif name == "UInt64":
48
+ return angr.types.SimTypeLongLong(signed=False, label="UInt64")
49
+ elif name == "Int32":
50
+ return angr.types.SimTypeInt(signed=True, label="Int32")
51
+ elif name == "Single":
52
+ return angr.types.SimTypeFloat(size=32)
53
+ elif name == "Double":
54
+ return angr.types.SimTypeFloat(size=64)
55
+ elif name == "UIntPtr":
56
+ return angr.types.SimTypePointer(angr.types.SimTypeInt(signed=False, label="UInt"), label="UIntPtr")
57
+ elif name == "IntPtr":
58
+ return angr.types.SimTypePointer(angr.types.SimTypeInt(signed=True, label="Int"), label="IntPtr")
59
+ elif name == "Void":
60
+ return angr.types.SimTypeBottom(label="Void")
61
+ elif name == "Boolean":
62
+ return angr.types.SimTypeBool(label="Boolean")
63
+ elif name == "Guid":
64
+ # FIXME
65
+ return angr.types.SimTypeBottom(label="Guid")
66
+ else:
67
+ print(f"Unhandled Native Type: {name}")
68
+ sys.exit(-1)
69
+
70
+
71
+ def get_typeref_from_struct_type(t: angr.types.SimType) -> angr.types.SimType:
72
+ if isinstance(t, angr.types.SimStruct):
73
+ if t.name and not is_anonymous_struct(t.name):
74
+ # replace it with a SimTypeRef to avoid duplicate definition
75
+ t = angr.types.SimTypeRef(t.name, angr.types.SimStruct)
76
+ return t
77
+
78
+
79
+ def handle_json_type(t, create_missing: bool = False):
80
+ if t["Kind"] == "Native":
81
+ return get_angr_type_from_name(t["Name"])
82
+ if t["Kind"] == "PointerTo":
83
+ pts_to = get_typeref_from_struct_type(handle_json_type(t["Child"], create_missing=create_missing))
84
+ return angr.types.SimTypePointer(pts_to)
85
+ if t["Kind"] == "Array":
86
+ elem = get_typeref_from_struct_type(handle_json_type(t["Child"], create_missing=create_missing))
87
+ if t["Shape"]:
88
+ return angr.types.SimTypeFixedSizeArray(elem, length=int(t["Shape"]["Size"]))
89
+ else:
90
+ return angr.types.SimTypePointer(elem)
91
+ if t["Kind"] == "ApiRef":
92
+ try:
93
+ named_type = typelib.get(t["Name"], bottom_on_missing=create_missing)
94
+ except AngrMissingTypeError:
95
+ if t["Name"] in known_struct_names:
96
+ return angr.types.SimTypeRef(t["Name"], angr.types.SimStruct)
97
+ raise
98
+ return get_typeref_from_struct_type(named_type)
99
+ if t["Kind"] == "Struct":
100
+ for nested_type in t["NestedTypes"]:
101
+ typelib.add(nested_type["Name"], handle_json_type(nested_type, create_missing=create_missing))
102
+ fields = OrderedDict()
103
+ for field in t["Fields"]:
104
+ child_type = get_typeref_from_struct_type(handle_json_type(field["Type"], create_missing=create_missing))
105
+ fields[field["Name"]] = child_type
106
+ return angr.types.SimStruct(fields, name=t["Name"])
107
+ if t["Kind"] == "LPArray":
108
+ pts_to = get_typeref_from_struct_type(handle_json_type(t["Child"], create_missing=create_missing))
109
+ return angr.types.SimTypePointer(pts_to, label="LPArray")
110
+ if t["Kind"] == "Union":
111
+ for nested_type in t["NestedTypes"]:
112
+ typelib.add(nested_type["Name"], handle_json_type(nested_type, create_missing=create_missing))
113
+ members = {}
114
+ for field in t["Fields"]:
115
+ child_type = get_typeref_from_struct_type(handle_json_type(field["Type"], create_missing=create_missing))
116
+ members[field["Name"]] = child_type
117
+ return angr.types.SimUnion(members)
118
+ if t["Kind"] == "MissingClrType":
119
+ return angr.types.SimTypeBottom(label="MissingClrType")
120
+ else:
121
+ print(f"Unhandled type: {t}")
122
+ sys.exit(0)
123
+
124
+
125
+ def create_angr_type_from_json(t):
126
+ if t["Kind"] == "NativeTypedef":
127
+ new_typedef = handle_json_type(t["Def"])
128
+ typelib.add(t["Name"], new_typedef)
129
+ elif t["Kind"] == "Enum":
130
+ # TODO: Handle Enums
131
+ ty = angr.types.SimTypeInt(signed=False, label=t["Name"])
132
+ typelib.add(t["Name"], ty)
133
+ elif t["Kind"] == "Struct":
134
+ known_struct_names.add(t["Name"])
135
+ real_new_type = handle_json_type(t)
136
+ typelib.add(t["Name"], real_new_type)
137
+ elif t["Kind"] == "FunctionPointer":
138
+ ret_type = handle_json_type(t["ReturnType"])
139
+ args = []
140
+ arg_names = []
141
+ for param in t["Params"]:
142
+ new_param = handle_json_type(param["Type"])
143
+ args.append(new_param)
144
+ arg_names.append(param["Name"])
145
+ typelib.add(
146
+ t["Name"], angr.types.SimTypePointer(angr.types.SimTypeFunction(args, ret_type, arg_names=arg_names))
147
+ )
148
+ elif t["Kind"] == "Com":
149
+ # TODO: Handle Com
150
+ typelib.add(t["Name"], angr.types.SimTypeBottom(label=t["Name"]))
151
+ elif t["Kind"] == "ComClassID":
152
+ return None
153
+ elif t["Kind"] == "Union":
154
+ real_new_type = handle_json_type(t)
155
+ typelib.add(t["Name"], real_new_type)
156
+ return None
157
+ else:
158
+ print(f"Found unknown type kind: {t['Kind']}")
159
+
160
+
161
+ def do_it(in_dir, out_file):
162
+ p = Path(in_dir)
163
+
164
+ files = p.glob("*.json")
165
+
166
+ for file in files:
167
+ logging.info("Found file %s", file)
168
+ api_namespaces[file.stem] = json.load(codecs.open(file, "r", "utf-8-sig"))
169
+
170
+ logging.info("Making a bunch of types...")
171
+ missing_types_last_round = set()
172
+ while True:
173
+ nosuchtype = 0
174
+ missing_types = set()
175
+ for namespace in api_namespaces:
176
+ metadata = api_namespaces[namespace]
177
+ types = metadata["Types"]
178
+ for t in types:
179
+ try:
180
+ create_angr_type_from_json(t)
181
+ except AngrMissingTypeError:
182
+ # skip this type for now
183
+ nosuchtype += 1
184
+ missing_types.add(t["Name"])
185
+ logging.info("... missing %d types", nosuchtype)
186
+ if nosuchtype == 0 or missing_types == missing_types_last_round:
187
+ break
188
+ missing_types_last_round = missing_types
189
+
190
+ if missing_types_last_round:
191
+ logging.info("Missing types: %s", missing_types_last_round)
192
+ else:
193
+ logging.info("All referenced types have been created")
194
+ logging.info("Alright, now let's do some functions")
195
+
196
+ i = 1
197
+ func_count = 0
198
+ parsed_cprotos = defaultdict(list)
199
+ for namespace in api_namespaces:
200
+ metadata = api_namespaces[namespace]
201
+ logging.debug(f"+++ Processing namespace {namespace} ({i} of {len(api_namespaces)})")
202
+ i += 1
203
+ funcs = metadata["Functions"]
204
+ if namespace.startswith("Windows.Win32"):
205
+ prefix = "win32"
206
+ elif namespace.startswith("Windows.Wdk"):
207
+ prefix = "wdk"
208
+ else:
209
+ raise NotImplementedError(f"Unsupported namespace {namespace}")
210
+ for f in funcs:
211
+ libname = f["DllImport"].lower()
212
+ suffix = ""
213
+ if libname.endswith(".dll") or libname.endswith(".exe") or libname.endswith(".sys"):
214
+ suffix = libname[-3:]
215
+ libname = libname[:-4]
216
+ # special case: put all wdk_ntdll.dll APIs under ntoskrnl.exe to avoid conflict with user-space ntdll.dll
217
+ if prefix == "wdk" and libname == "ntdll" and suffix == "dll":
218
+ libname = "ntoskrnl"
219
+ suffix = "exe"
220
+ ret_type = handle_json_type(f["ReturnType"], create_missing=True)
221
+ args = []
222
+ arg_names = []
223
+ for param in f["Params"]:
224
+ new_param = handle_json_type(param["Type"], create_missing=True)
225
+ assert new_param is not None, "This should not happen, please report this."
226
+ args.append(new_param)
227
+ arg_names.append(param["Name"])
228
+ new_func = angr.types.SimTypeFunction(args, ret_type, arg_names=arg_names)
229
+ new_func_name = f["Name"]
230
+ parsed_cprotos[(prefix, libname, suffix)].append((new_func_name, new_func, ""))
231
+ func_count += 1
232
+
233
+ # Some missing function declarations
234
+ missing_declarations = defaultdict(dict)
235
+
236
+ missing_declarations[("win32", "kernel32", "dll")] = {
237
+ "InterlockedCompareExchange": SimTypeFunction((SimTypeLong(),) * 3, SimTypeLong()),
238
+ "InterlockedCompareExchange64": SimTypeFunction((SimTypeLong(),) * 5, SimTypeLong()),
239
+ "InterlockedDecrement": SimTypeFunction((SimTypeLong(),) * 1, SimTypeLong()),
240
+ "InterlockedExchange": SimTypeFunction((SimTypeLong(),) * 2, SimTypeLong()),
241
+ "InterlockedExchangeAdd": SimTypeFunction((SimTypeLong(),) * 2, SimTypeLong()),
242
+ "InterlockedIncrement": SimTypeFunction((SimTypeLong(),) * 1, SimTypeLong()),
243
+ "UTRegister": SimTypeFunction(
244
+ [
245
+ SimTypeLong(signed=True),
246
+ SimTypeLong(signed=True),
247
+ SimTypeLong(signed=True),
248
+ SimTypeLong(signed=True),
249
+ SimTypeLong(signed=True),
250
+ SimTypeLong(signed=True),
251
+ SimTypeLong(signed=True),
252
+ ],
253
+ SimTypeLong(signed=True),
254
+ ),
255
+ "RegisterConsoleVDM": SimTypeFunction(
256
+ [
257
+ SimTypeLong(signed=True),
258
+ SimTypeLong(signed=True),
259
+ SimTypeLong(signed=True),
260
+ SimTypeLong(signed=True),
261
+ SimTypeLong(signed=True),
262
+ SimTypeLong(signed=True),
263
+ SimTypeLong(signed=True),
264
+ SimTypeLong(signed=True),
265
+ SimTypeLong(signed=True),
266
+ ],
267
+ SimTypeLong(signed=True),
268
+ ),
269
+ "RegOpenUserClassesRoot": SimTypeFunction(
270
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
271
+ SimTypeLong(signed=True),
272
+ ),
273
+ "SortCloseHandle": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
274
+ "WriteConsoleInputVDMW": SimTypeFunction(
275
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
276
+ SimTypeLong(signed=True),
277
+ ),
278
+ "RegEnumValueW": SimTypeFunction(
279
+ [
280
+ SimTypeLong(signed=True),
281
+ SimTypeLong(signed=True),
282
+ SimTypeLong(signed=True),
283
+ SimTypeLong(signed=True),
284
+ SimTypeLong(signed=True),
285
+ SimTypeLong(signed=True),
286
+ SimTypeLong(signed=True),
287
+ SimTypeLong(signed=True),
288
+ ],
289
+ SimTypeLong(signed=True),
290
+ ),
291
+ "BaseDllReadWriteIniFile": SimTypeFunction(
292
+ [
293
+ SimTypeLong(signed=True),
294
+ SimTypeLong(signed=True),
295
+ SimTypeLong(signed=True),
296
+ SimTypeLong(signed=True),
297
+ SimTypeLong(signed=True),
298
+ SimTypeLong(signed=True),
299
+ SimTypeLong(signed=True),
300
+ SimTypeLong(signed=True),
301
+ ],
302
+ SimTypeLong(signed=True),
303
+ ),
304
+ "NlsCheckPolicy": SimTypeFunction(
305
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
306
+ ),
307
+ "RegGetKeySecurity": SimTypeFunction(
308
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
309
+ SimTypeLong(signed=True),
310
+ ),
311
+ "lstrlen": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
312
+ "NlsGetCacheUpdateCount": SimTypeFunction([], SimTypeLong(signed=True)),
313
+ "OpenThreadToken": SimTypeFunction(
314
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
315
+ SimTypeLong(signed=True),
316
+ ),
317
+ "SetTermsrvAppInstallMode": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
318
+ "GetConsoleFontInfo": SimTypeFunction(
319
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
320
+ SimTypeLong(signed=True),
321
+ ),
322
+ "GetCalendarMonthsInYear": SimTypeFunction(
323
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
324
+ ),
325
+ "WerpNotifyLoadStringResourceEx": SimTypeFunction(
326
+ [
327
+ SimTypeLong(signed=True),
328
+ SimTypeLong(signed=True),
329
+ SimTypeLong(signed=True),
330
+ SimTypeLong(signed=True),
331
+ SimTypeLong(signed=True),
332
+ ],
333
+ SimTypeLong(signed=True),
334
+ ),
335
+ "RemoveLocalAlternateComputerNameW": SimTypeFunction(
336
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
337
+ ),
338
+ "SetVDMCurrentDirectories": SimTypeFunction(
339
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
340
+ ),
341
+ "SetConsoleInputExeNameA": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
342
+ "RegDisablePredefinedCacheEx": SimTypeFunction([], SimTypeLong(signed=True)),
343
+ "IdnToAscii": SimTypeFunction(
344
+ [
345
+ SimTypeLong(signed=True),
346
+ SimTypeLong(signed=True),
347
+ SimTypeLong(signed=True),
348
+ SimTypeLong(signed=True),
349
+ SimTypeLong(signed=True),
350
+ ],
351
+ SimTypeLong(signed=True),
352
+ ),
353
+ "LoadAppInitDlls": SimTypeFunction([], SimTypeLong(signed=True)),
354
+ "OpenConsoleW": SimTypeFunction(
355
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
356
+ SimTypeLong(signed=True),
357
+ ),
358
+ "ExitVDM": SimTypeFunction([SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)),
359
+ "RegNotifyChangeKeyValue": SimTypeFunction(
360
+ [
361
+ SimTypeLong(signed=True),
362
+ SimTypeLong(signed=True),
363
+ SimTypeLong(signed=True),
364
+ SimTypeLong(signed=True),
365
+ SimTypeLong(signed=True),
366
+ ],
367
+ SimTypeLong(signed=True),
368
+ ),
369
+ "AddLocalAlternateComputerNameW": SimTypeFunction(
370
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
371
+ ),
372
+ "RegOpenKeyExA": SimTypeFunction(
373
+ [
374
+ SimTypeLong(signed=True),
375
+ SimTypeLong(signed=True),
376
+ SimTypeLong(signed=True),
377
+ SimTypeLong(signed=True),
378
+ SimTypeLong(signed=True),
379
+ ],
380
+ SimTypeLong(signed=True),
381
+ ),
382
+ "RtlMoveMemory": SimTypeFunction(
383
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
384
+ ),
385
+ "RegFlushKey": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
386
+ "RegUnLoadKeyA": SimTypeFunction(
387
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
388
+ ),
389
+ "RegisterConsoleIME": SimTypeFunction(
390
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
391
+ ),
392
+ "RegLoadMUIStringA": SimTypeFunction(
393
+ [
394
+ SimTypeLong(signed=True),
395
+ SimTypeLong(signed=True),
396
+ SimTypeLong(signed=True),
397
+ SimTypeLong(signed=True),
398
+ SimTypeLong(signed=True),
399
+ SimTypeLong(signed=True),
400
+ SimTypeLong(signed=True),
401
+ ],
402
+ SimTypeLong(signed=True),
403
+ ),
404
+ "RegCreateKeyExW": SimTypeFunction(
405
+ [
406
+ SimTypeLong(signed=True),
407
+ SimTypeLong(signed=True),
408
+ SimTypeLong(signed=True),
409
+ SimTypeLong(signed=True),
410
+ SimTypeLong(signed=True),
411
+ SimTypeLong(signed=True),
412
+ SimTypeLong(signed=True),
413
+ SimTypeLong(signed=True),
414
+ SimTypeLong(signed=True),
415
+ ],
416
+ SimTypeLong(signed=True),
417
+ ),
418
+ "CheckForReadOnlyResource": SimTypeFunction(
419
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
420
+ ),
421
+ "RegRestoreKeyW": SimTypeFunction(
422
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
423
+ ),
424
+ "lstrcpy": SimTypeFunction([SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)),
425
+ "RegEnumKeyExW": SimTypeFunction(
426
+ [
427
+ SimTypeLong(signed=True),
428
+ SimTypeLong(signed=True),
429
+ SimTypeLong(signed=True),
430
+ SimTypeLong(signed=True),
431
+ SimTypeLong(signed=True),
432
+ SimTypeLong(signed=True),
433
+ SimTypeLong(signed=True),
434
+ SimTypeLong(signed=True),
435
+ ],
436
+ SimTypeLong(signed=True),
437
+ ),
438
+ "CreateProcessAsUserW": SimTypeFunction(
439
+ [
440
+ SimTypeLong(signed=True),
441
+ SimTypeLong(signed=True),
442
+ SimTypeLong(signed=True),
443
+ SimTypeLong(signed=True),
444
+ SimTypeLong(signed=True),
445
+ SimTypeLong(signed=True),
446
+ SimTypeLong(signed=True),
447
+ SimTypeLong(signed=True),
448
+ SimTypeLong(signed=True),
449
+ SimTypeLong(signed=True),
450
+ SimTypeLong(signed=True),
451
+ ],
452
+ SimTypeLong(signed=True),
453
+ ),
454
+ "RtlZeroMemory": SimTypeFunction(
455
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
456
+ ),
457
+ "GetConsoleNlsMode": SimTypeFunction(
458
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
459
+ ),
460
+ "RegGetValueA": SimTypeFunction(
461
+ [
462
+ SimTypeLong(signed=True),
463
+ SimTypeLong(signed=True),
464
+ SimTypeLong(signed=True),
465
+ SimTypeLong(signed=True),
466
+ SimTypeLong(signed=True),
467
+ SimTypeLong(signed=True),
468
+ SimTypeLong(signed=True),
469
+ ],
470
+ SimTypeLong(signed=True),
471
+ ),
472
+ "AdjustCalendarDate": SimTypeFunction(
473
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
474
+ ),
475
+ "BaseSetLastNTError": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
476
+ "ShowConsoleCursor": SimTypeFunction(
477
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
478
+ ),
479
+ "BasepCheckWinSaferRestrictions": SimTypeFunction(
480
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
481
+ ),
482
+ "ReadConsoleInputExA": SimTypeFunction(
483
+ [
484
+ SimTypeLong(signed=True),
485
+ SimTypeLong(signed=True),
486
+ SimTypeLong(signed=True),
487
+ SimTypeLong(signed=True),
488
+ SimTypeLong(signed=True),
489
+ ],
490
+ SimTypeLong(signed=True),
491
+ ),
492
+ "RegSetValueExW": SimTypeFunction(
493
+ [
494
+ SimTypeLong(signed=True),
495
+ SimTypeLong(signed=True),
496
+ SimTypeLong(signed=True),
497
+ SimTypeLong(signed=True),
498
+ SimTypeLong(signed=True),
499
+ SimTypeLong(signed=True),
500
+ ],
501
+ SimTypeLong(signed=True),
502
+ ),
503
+ "RegQueryValueExW": SimTypeFunction(
504
+ [
505
+ SimTypeLong(signed=True),
506
+ SimTypeLong(signed=True),
507
+ SimTypeLong(signed=True),
508
+ SimTypeLong(signed=True),
509
+ SimTypeLong(signed=True),
510
+ SimTypeLong(signed=True),
511
+ ],
512
+ SimTypeLong(signed=True),
513
+ ),
514
+ "RegDeleteValueA": SimTypeFunction(
515
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
516
+ ),
517
+ "RegOpenCurrentUser": SimTypeFunction(
518
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
519
+ ),
520
+ "CtrlRoutine": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
521
+ "RtlFillMemory": SimTypeFunction(
522
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
523
+ ),
524
+ "VerifyConsoleIoHandle": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
525
+ "EnumerateLocalComputerNamesW": SimTypeFunction(
526
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
527
+ SimTypeLong(signed=True),
528
+ ),
529
+ "CloseProfileUserMapping": SimTypeFunction([], SimTypeLong(signed=True)),
530
+ "GetEraNameCountedString": SimTypeFunction(
531
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
532
+ SimTypeLong(signed=True),
533
+ ),
534
+ "RegisterWaitForSingleObjectEx": SimTypeFunction(
535
+ [
536
+ SimTypeLong(signed=True),
537
+ SimTypeLong(signed=True),
538
+ SimTypeLong(signed=True),
539
+ SimTypeLong(signed=True),
540
+ SimTypeLong(signed=True),
541
+ ],
542
+ SimTypeLong(signed=True),
543
+ ),
544
+ "DosPathToSessionPathW": SimTypeFunction(
545
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
546
+ ),
547
+ "RegSaveKeyExA": SimTypeFunction(
548
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
549
+ SimTypeLong(signed=True),
550
+ ),
551
+ "CreateProcessInternalW": SimTypeFunction(
552
+ [
553
+ SimTypeLong(signed=True),
554
+ SimTypeLong(signed=True),
555
+ SimTypeLong(signed=True),
556
+ SimTypeLong(signed=True),
557
+ SimTypeLong(signed=True),
558
+ SimTypeLong(signed=True),
559
+ SimTypeLong(signed=True),
560
+ SimTypeLong(signed=True),
561
+ SimTypeLong(signed=True),
562
+ SimTypeLong(signed=True),
563
+ SimTypeLong(signed=True),
564
+ SimTypeLong(signed=True),
565
+ ],
566
+ SimTypeLong(signed=True),
567
+ ),
568
+ "OpenProfileUserMapping": SimTypeFunction([], SimTypeLong(signed=True)),
569
+ "GetConsoleHardwareState": SimTypeFunction(
570
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
571
+ ),
572
+ "SetConsoleNlsMode": SimTypeFunction(
573
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
574
+ ),
575
+ "AddLocalAlternateComputerNameA": SimTypeFunction(
576
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
577
+ ),
578
+ "BasepCheckBadapp": SimTypeFunction(
579
+ [
580
+ SimTypeLong(signed=True),
581
+ SimTypeLong(signed=True),
582
+ SimTypeLong(signed=True),
583
+ SimTypeLong(signed=True),
584
+ SimTypeLong(signed=True),
585
+ SimTypeLong(signed=True),
586
+ SimTypeLong(signed=True),
587
+ SimTypeLong(signed=True),
588
+ SimTypeLong(signed=True),
589
+ SimTypeLong(signed=True),
590
+ SimTypeLong(signed=True),
591
+ SimTypeLong(signed=True),
592
+ SimTypeLong(signed=True),
593
+ SimTypeLong(signed=True),
594
+ SimTypeLong(signed=True),
595
+ ],
596
+ SimTypeLong(signed=True),
597
+ ),
598
+ "GetConsoleKeyboardLayoutNameA": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
599
+ "lstrcmpi": SimTypeFunction([SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)),
600
+ "BaseFormatObjectAttributes": SimTypeFunction(
601
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
602
+ SimTypeLong(signed=True),
603
+ ),
604
+ "LZCloseFile": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
605
+ "GetNamedPipeAttribute": SimTypeFunction(
606
+ [
607
+ SimTypeLong(signed=True),
608
+ SimTypeLong(signed=True),
609
+ SimTypeLong(signed=True),
610
+ SimTypeLong(signed=True),
611
+ SimTypeLong(signed=True),
612
+ ],
613
+ SimTypeLong(signed=True),
614
+ ),
615
+ "BasepMapModuleHandle": SimTypeFunction(
616
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
617
+ ),
618
+ "SetNamedPipeAttribute": SimTypeFunction(
619
+ [
620
+ SimTypeLong(signed=True),
621
+ SimTypeLong(signed=True),
622
+ SimTypeLong(signed=True),
623
+ SimTypeLong(signed=True),
624
+ SimTypeLong(signed=True),
625
+ ],
626
+ SimTypeLong(signed=True),
627
+ ),
628
+ "RegCreateKeyExA": SimTypeFunction(
629
+ [
630
+ SimTypeLong(signed=True),
631
+ SimTypeLong(signed=True),
632
+ SimTypeLong(signed=True),
633
+ SimTypeLong(signed=True),
634
+ SimTypeLong(signed=True),
635
+ SimTypeLong(signed=True),
636
+ SimTypeLong(signed=True),
637
+ SimTypeLong(signed=True),
638
+ SimTypeLong(signed=True),
639
+ ],
640
+ SimTypeLong(signed=True),
641
+ ),
642
+ "SetConsoleOS2OemFormat": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
643
+ "TermsrvAppInstallMode": SimTypeFunction([], SimTypeLong(signed=True)),
644
+ "RemoveLocalAlternateComputerNameA": SimTypeFunction(
645
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
646
+ ),
647
+ "LZCreateFileW": SimTypeFunction(
648
+ [
649
+ SimTypeLong(signed=True),
650
+ SimTypeLong(signed=True),
651
+ SimTypeLong(signed=True),
652
+ SimTypeLong(signed=True),
653
+ SimTypeLong(signed=True),
654
+ ],
655
+ SimTypeLong(signed=True),
656
+ ),
657
+ "NlsUpdateLocale": SimTypeFunction(
658
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
659
+ ),
660
+ "RegisterWowBaseHandlers": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
661
+ "SetClientTimeZoneInformation": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
662
+ "BaseCheckRunApp": SimTypeFunction(
663
+ [
664
+ SimTypeLong(signed=True),
665
+ SimTypeLong(signed=True),
666
+ SimTypeLong(signed=True),
667
+ SimTypeLong(signed=True),
668
+ SimTypeLong(signed=True),
669
+ SimTypeLong(signed=True),
670
+ SimTypeLong(signed=True),
671
+ SimTypeLong(signed=True),
672
+ SimTypeLong(signed=True),
673
+ SimTypeLong(signed=True),
674
+ SimTypeLong(signed=True),
675
+ SimTypeLong(signed=True),
676
+ SimTypeLong(signed=True),
677
+ ],
678
+ SimTypeLong(signed=True),
679
+ ),
680
+ "BaseThreadInitThunk": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
681
+ "UpdateCalendarDayOfWeek": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
682
+ "SetConsoleMaximumWindowSize": SimTypeFunction(
683
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
684
+ ),
685
+ "ConvertNLSDayOfWeekToWin32DayOfWeek": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
686
+ "ConvertCalDateTimeToSystemTime": SimTypeFunction(
687
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
688
+ ),
689
+ "RegDeleteKeyExW": SimTypeFunction(
690
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
691
+ SimTypeLong(signed=True),
692
+ ),
693
+ "ReplaceFile": SimTypeFunction(
694
+ [
695
+ SimTypeLong(signed=True),
696
+ SimTypeLong(signed=True),
697
+ SimTypeLong(signed=True),
698
+ SimTypeLong(signed=True),
699
+ SimTypeLong(signed=True),
700
+ SimTypeLong(signed=True),
701
+ ],
702
+ SimTypeLong(signed=True),
703
+ ),
704
+ "GetConsoleCharType": SimTypeFunction(
705
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
706
+ ),
707
+ "GetConsoleInputWaitHandle": SimTypeFunction([], SimTypeLong(signed=True)),
708
+ "RestoreLastError": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
709
+ "CompareCalendarDates": SimTypeFunction(
710
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
711
+ ),
712
+ "RegLoadKeyA": SimTypeFunction(
713
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
714
+ ),
715
+ "SetLocalPrimaryComputerNameW": SimTypeFunction(
716
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
717
+ ),
718
+ "UnregisterConsoleIME": SimTypeFunction([], SimTypeLong(signed=True)),
719
+ "lstrcat": SimTypeFunction([SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)),
720
+ "BaseInitAppcompatCacheSupport": SimTypeFunction([], SimTypeLong(signed=True)),
721
+ "InterlockedPushListSList": SimTypeFunction(
722
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
723
+ ),
724
+ "GetEnvironmentStringsA": SimTypeFunction([], SimTypeLong(signed=True)),
725
+ "CreateSocketHandle": SimTypeFunction([], SimTypeLong(signed=True)),
726
+ "RegSetKeySecurity": SimTypeFunction(
727
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
728
+ ),
729
+ "SetThreadToken": SimTypeFunction(
730
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
731
+ ),
732
+ "RegQueryInfoKeyW": SimTypeFunction(
733
+ [
734
+ SimTypeLong(signed=True),
735
+ SimTypeLong(signed=True),
736
+ SimTypeLong(signed=True),
737
+ SimTypeLong(signed=True),
738
+ SimTypeLong(signed=True),
739
+ SimTypeLong(signed=True),
740
+ SimTypeLong(signed=True),
741
+ SimTypeLong(signed=True),
742
+ SimTypeLong(signed=True),
743
+ SimTypeLong(signed=True),
744
+ SimTypeLong(signed=True),
745
+ SimTypeLong(signed=True),
746
+ ],
747
+ SimTypeLong(signed=True),
748
+ ),
749
+ "GetNumberOfConsoleFonts": SimTypeFunction([], SimTypeLong(signed=True)),
750
+ "GetCalendarSupportedDateRange": SimTypeFunction(
751
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
752
+ ),
753
+ "RegOpenKeyExW": SimTypeFunction(
754
+ [
755
+ SimTypeLong(signed=True),
756
+ SimTypeLong(signed=True),
757
+ SimTypeLong(signed=True),
758
+ SimTypeLong(signed=True),
759
+ SimTypeLong(signed=True),
760
+ ],
761
+ SimTypeLong(signed=True),
762
+ ),
763
+ "RegKrnGetGlobalState": SimTypeFunction([], SimTypeLong(signed=True)),
764
+ "WerpNotifyUseStringResource": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
765
+ "SetConsoleFont": SimTypeFunction(
766
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
767
+ ),
768
+ "BaseGetNamedObjectDirectory": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
769
+ "IsCalendarLeapMonth": SimTypeFunction(
770
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
771
+ SimTypeLong(signed=True),
772
+ ),
773
+ "RegDeleteTreeW": SimTypeFunction(
774
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
775
+ ),
776
+ "IsValidCalDateTime": SimTypeFunction(
777
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
778
+ ),
779
+ "RegQueryValueExA": SimTypeFunction(
780
+ [
781
+ SimTypeLong(signed=True),
782
+ SimTypeLong(signed=True),
783
+ SimTypeLong(signed=True),
784
+ SimTypeLong(signed=True),
785
+ SimTypeLong(signed=True),
786
+ SimTypeLong(signed=True),
787
+ ],
788
+ SimTypeLong(signed=True),
789
+ ),
790
+ "SetConsoleCursor": SimTypeFunction(
791
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
792
+ ),
793
+ "RegDeleteTreeA": SimTypeFunction(
794
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
795
+ ),
796
+ "SortGetHandle": SimTypeFunction(
797
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
798
+ ),
799
+ "WerpInitiateRemoteRecovery": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
800
+ "VDMOperationStarted": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
801
+ "OpenProcessToken": SimTypeFunction(
802
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
803
+ ),
804
+ "VDMConsoleOperation": SimTypeFunction(
805
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
806
+ ),
807
+ "BaseVerifyUnicodeString": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
808
+ "RegUnLoadKeyW": SimTypeFunction(
809
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
810
+ ),
811
+ "GetProcessUserModeExceptionPolicy": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
812
+ "GetNextVDMCommand": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
813
+ "LoadStringBaseW": SimTypeFunction(
814
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
815
+ SimTypeLong(signed=True),
816
+ ),
817
+ "DuplicateConsoleHandle": SimTypeFunction(
818
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
819
+ SimTypeLong(signed=True),
820
+ ),
821
+ "BaseCheckAppcompatCache": SimTypeFunction(
822
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
823
+ SimTypeLong(signed=True),
824
+ ),
825
+ "WerpStringLookup": SimTypeFunction(
826
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
827
+ ),
828
+ "BaseDumpAppcompatCache": SimTypeFunction([], SimTypeLong(signed=True)),
829
+ "CreateProcessInternalA": SimTypeFunction(
830
+ [
831
+ SimTypeLong(signed=True),
832
+ SimTypeLong(signed=True),
833
+ SimTypeLong(signed=True),
834
+ SimTypeLong(signed=True),
835
+ SimTypeLong(signed=True),
836
+ SimTypeLong(signed=True),
837
+ SimTypeLong(signed=True),
838
+ SimTypeLong(signed=True),
839
+ SimTypeLong(signed=True),
840
+ SimTypeLong(signed=True),
841
+ SimTypeLong(signed=True),
842
+ SimTypeLong(signed=True),
843
+ ],
844
+ SimTypeLong(signed=True),
845
+ ),
846
+ "NlsEventDataDescCreate": SimTypeFunction(
847
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
848
+ SimTypeLong(signed=True),
849
+ ),
850
+ "RegRestoreKeyA": SimTypeFunction(
851
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
852
+ ),
853
+ "NlsWriteEtwEvent": SimTypeFunction(
854
+ [
855
+ SimTypeLong(signed=True),
856
+ SimTypeLong(signed=True),
857
+ SimTypeLong(signed=True),
858
+ SimTypeLong(signed=True),
859
+ SimTypeLong(signed=True),
860
+ ],
861
+ SimTypeLong(signed=True),
862
+ ),
863
+ "RegCloseKey": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
864
+ "NotifyMountMgr": SimTypeFunction(
865
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
866
+ ),
867
+ "IsCalendarLeapYear": SimTypeFunction(
868
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
869
+ ),
870
+ "DosPathToSessionPathA": SimTypeFunction(
871
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
872
+ ),
873
+ "BasepAnsiStringToDynamicUnicodeString": SimTypeFunction(
874
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
875
+ ),
876
+ "SetLocalPrimaryComputerNameA": SimTypeFunction(
877
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
878
+ ),
879
+ "lstrcpyn": SimTypeFunction(
880
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
881
+ ),
882
+ "SetConsoleLocalEUDC": SimTypeFunction(
883
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
884
+ SimTypeLong(signed=True),
885
+ ),
886
+ "PrivCopyFileExW": SimTypeFunction(
887
+ [
888
+ SimTypeLong(signed=True),
889
+ SimTypeLong(signed=True),
890
+ SimTypeLong(signed=True),
891
+ SimTypeLong(signed=True),
892
+ SimTypeLong(signed=True),
893
+ SimTypeLong(signed=True),
894
+ ],
895
+ SimTypeLong(signed=True),
896
+ ),
897
+ "SetConsoleCursorMode": SimTypeFunction(
898
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
899
+ ),
900
+ "RegisterConsoleOS2": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
901
+ "SetConsoleIcon": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
902
+ "RegDeleteValueW": SimTypeFunction(
903
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
904
+ ),
905
+ "SetConsoleInputExeNameW": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
906
+ "SetConsoleHardwareState": SimTypeFunction(
907
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
908
+ ),
909
+ "GetConsoleCursorMode": SimTypeFunction(
910
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
911
+ ),
912
+ "ReadConsoleInputExW": SimTypeFunction(
913
+ [
914
+ SimTypeLong(signed=True),
915
+ SimTypeLong(signed=True),
916
+ SimTypeLong(signed=True),
917
+ SimTypeLong(signed=True),
918
+ SimTypeLong(signed=True),
919
+ ],
920
+ SimTypeLong(signed=True),
921
+ ),
922
+ "WerpNotifyLoadStringResource": SimTypeFunction(
923
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
924
+ SimTypeLong(signed=True),
925
+ ),
926
+ "BaseCheckAppcompatCacheEx": SimTypeFunction(
927
+ [
928
+ SimTypeLong(signed=True),
929
+ SimTypeLong(signed=True),
930
+ SimTypeLong(signed=True),
931
+ SimTypeLong(signed=True),
932
+ SimTypeLong(signed=True),
933
+ SimTypeLong(signed=True),
934
+ ],
935
+ SimTypeLong(signed=True),
936
+ ),
937
+ "PrivMoveFileIdentityW": SimTypeFunction(
938
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
939
+ ),
940
+ "CmdBatNotification": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
941
+ "BaseFormatTimeOut": SimTypeFunction(
942
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
943
+ ),
944
+ "InvalidateConsoleDIBits": SimTypeFunction(
945
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
946
+ ),
947
+ "RegSaveKeyExW": SimTypeFunction(
948
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
949
+ SimTypeLong(signed=True),
950
+ ),
951
+ "IsCalendarLeapDay": SimTypeFunction(
952
+ [
953
+ SimTypeLong(signed=True),
954
+ SimTypeLong(signed=True),
955
+ SimTypeLong(signed=True),
956
+ SimTypeLong(signed=True),
957
+ SimTypeLong(signed=True),
958
+ ],
959
+ SimTypeLong(signed=True),
960
+ ),
961
+ "BaseCleanupAppcompatCacheSupport": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
962
+ "BasepAllocateActivationContextActivationBlock": SimTypeFunction(
963
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
964
+ SimTypeLong(signed=True),
965
+ ),
966
+ "DelayLoadFailureHook": SimTypeFunction(
967
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
968
+ ),
969
+ "WriteConsoleInputVDMA": SimTypeFunction(
970
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
971
+ SimTypeLong(signed=True),
972
+ ),
973
+ "RegLoadKeyW": SimTypeFunction(
974
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
975
+ ),
976
+ "lstrcmp": SimTypeFunction([SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)),
977
+ "ConsoleMenuControl": SimTypeFunction(
978
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
979
+ ),
980
+ "BaseQueryModuleData": SimTypeFunction(
981
+ [
982
+ SimTypeLong(signed=True),
983
+ SimTypeLong(signed=True),
984
+ SimTypeLong(signed=True),
985
+ SimTypeLong(signed=True),
986
+ SimTypeLong(signed=True),
987
+ SimTypeLong(signed=True),
988
+ SimTypeLong(signed=True),
989
+ ],
990
+ SimTypeLong(signed=True),
991
+ ),
992
+ "RegDeleteKeyExA": SimTypeFunction(
993
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
994
+ SimTypeLong(signed=True),
995
+ ),
996
+ "RegLoadMUIStringW": SimTypeFunction(
997
+ [
998
+ SimTypeLong(signed=True),
999
+ SimTypeLong(signed=True),
1000
+ SimTypeLong(signed=True),
1001
+ SimTypeLong(signed=True),
1002
+ SimTypeLong(signed=True),
1003
+ SimTypeLong(signed=True),
1004
+ SimTypeLong(signed=True),
1005
+ ],
1006
+ SimTypeLong(signed=True),
1007
+ ),
1008
+ "SetHandleContext": SimTypeFunction(
1009
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1010
+ ),
1011
+ "IdnToUnicode": SimTypeFunction(
1012
+ [
1013
+ SimTypeLong(signed=True),
1014
+ SimTypeLong(signed=True),
1015
+ SimTypeLong(signed=True),
1016
+ SimTypeLong(signed=True),
1017
+ SimTypeLong(signed=True),
1018
+ ],
1019
+ SimTypeLong(signed=True),
1020
+ ),
1021
+ "RegKrnInitialize": SimTypeFunction(
1022
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1023
+ ),
1024
+ "BaseFlushAppcompatCache": SimTypeFunction([], SimTypeLong(signed=True)),
1025
+ "GetCalendarWeekNumber": SimTypeFunction(
1026
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1027
+ SimTypeLong(signed=True),
1028
+ ),
1029
+ "NlsUpdateSystemLocale": SimTypeFunction(
1030
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1031
+ ),
1032
+ "GetComPlusPackageInstallStatus": SimTypeFunction([], SimTypeLong(signed=True)),
1033
+ "BaseIsAppcompatInfrastructureDisabled": SimTypeFunction([], SimTypeLong(signed=True)),
1034
+ "WerpCleanupMessageMapping": SimTypeFunction([], SimTypeLong(signed=True)),
1035
+ "RegisterWowExec": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1036
+ "BasepCheckAppCompat": SimTypeFunction(
1037
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1038
+ SimTypeLong(signed=True),
1039
+ ),
1040
+ "SetConsoleMenuClose": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1041
+ "GetCalendarDifferenceInDays": SimTypeFunction(
1042
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1043
+ ),
1044
+ "LoadStringBaseExW": SimTypeFunction(
1045
+ [
1046
+ SimTypeLong(signed=True),
1047
+ SimTypeLong(signed=True),
1048
+ SimTypeLong(signed=True),
1049
+ SimTypeLong(signed=True),
1050
+ SimTypeLong(signed=True),
1051
+ ],
1052
+ SimTypeLong(signed=True),
1053
+ ),
1054
+ "GetConsoleInputExeNameA": SimTypeFunction(
1055
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1056
+ ),
1057
+ "SetConsolePalette": SimTypeFunction(
1058
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1059
+ ),
1060
+ "GetCalendarDaysInMonth": SimTypeFunction(
1061
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1062
+ SimTypeLong(signed=True),
1063
+ ),
1064
+ "BaseGenerateAppCompatData": SimTypeFunction(
1065
+ [
1066
+ SimTypeLong(signed=True),
1067
+ SimTypeLong(signed=True),
1068
+ SimTypeLong(signed=True),
1069
+ SimTypeLong(signed=True),
1070
+ SimTypeLong(signed=True),
1071
+ SimTypeLong(signed=True),
1072
+ ],
1073
+ SimTypeLong(signed=True),
1074
+ ),
1075
+ "SetLastConsoleEventActive": SimTypeFunction([], SimTypeLong(signed=True)),
1076
+ "GetConsoleInputExeNameW": SimTypeFunction(
1077
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1078
+ ),
1079
+ "RegGetValueW": SimTypeFunction(
1080
+ [
1081
+ SimTypeLong(signed=True),
1082
+ SimTypeLong(signed=True),
1083
+ SimTypeLong(signed=True),
1084
+ SimTypeLong(signed=True),
1085
+ SimTypeLong(signed=True),
1086
+ SimTypeLong(signed=True),
1087
+ SimTypeLong(signed=True),
1088
+ ],
1089
+ SimTypeLong(signed=True),
1090
+ ),
1091
+ "GetHandleContext": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1092
+ "SetConsoleKeyShortcuts": SimTypeFunction(
1093
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1094
+ SimTypeLong(signed=True),
1095
+ ),
1096
+ "BaseUpdateAppcompatCache": SimTypeFunction(
1097
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1098
+ ),
1099
+ "BasepFreeActivationContextActivationBlock": SimTypeFunction(
1100
+ [SimTypeLong(signed=True)], SimTypeLong(signed=True)
1101
+ ),
1102
+ "GetBinaryType": SimTypeFunction(
1103
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1104
+ ),
1105
+ "Basep8BitStringToDynamicUnicodeString": SimTypeFunction(
1106
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1107
+ ),
1108
+ "RegQueryInfoKeyA": SimTypeFunction(
1109
+ [
1110
+ SimTypeLong(signed=True),
1111
+ SimTypeLong(signed=True),
1112
+ SimTypeLong(signed=True),
1113
+ SimTypeLong(signed=True),
1114
+ SimTypeLong(signed=True),
1115
+ SimTypeLong(signed=True),
1116
+ SimTypeLong(signed=True),
1117
+ SimTypeLong(signed=True),
1118
+ SimTypeLong(signed=True),
1119
+ SimTypeLong(signed=True),
1120
+ SimTypeLong(signed=True),
1121
+ SimTypeLong(signed=True),
1122
+ ],
1123
+ SimTypeLong(signed=True),
1124
+ ),
1125
+ "BasepFreeAppCompatData": SimTypeFunction(
1126
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1127
+ ),
1128
+ "RegEnumKeyExA": SimTypeFunction(
1129
+ [
1130
+ SimTypeLong(signed=True),
1131
+ SimTypeLong(signed=True),
1132
+ SimTypeLong(signed=True),
1133
+ SimTypeLong(signed=True),
1134
+ SimTypeLong(signed=True),
1135
+ SimTypeLong(signed=True),
1136
+ SimTypeLong(signed=True),
1137
+ SimTypeLong(signed=True),
1138
+ ],
1139
+ SimTypeLong(signed=True),
1140
+ ),
1141
+ "CheckElevationEnabled": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1142
+ "GetCalendarDateFormatEx": SimTypeFunction(
1143
+ [
1144
+ SimTypeLong(signed=True),
1145
+ SimTypeLong(signed=True),
1146
+ SimTypeLong(signed=True),
1147
+ SimTypeLong(signed=True),
1148
+ SimTypeLong(signed=True),
1149
+ SimTypeLong(signed=True),
1150
+ ],
1151
+ SimTypeLong(signed=True),
1152
+ ),
1153
+ "RegSetValueExA": SimTypeFunction(
1154
+ [
1155
+ SimTypeLong(signed=True),
1156
+ SimTypeLong(signed=True),
1157
+ SimTypeLong(signed=True),
1158
+ SimTypeLong(signed=True),
1159
+ SimTypeLong(signed=True),
1160
+ SimTypeLong(signed=True),
1161
+ ],
1162
+ SimTypeLong(signed=True),
1163
+ ),
1164
+ "RegEnumValueA": SimTypeFunction(
1165
+ [
1166
+ SimTypeLong(signed=True),
1167
+ SimTypeLong(signed=True),
1168
+ SimTypeLong(signed=True),
1169
+ SimTypeLong(signed=True),
1170
+ SimTypeLong(signed=True),
1171
+ SimTypeLong(signed=True),
1172
+ SimTypeLong(signed=True),
1173
+ SimTypeLong(signed=True),
1174
+ ],
1175
+ SimTypeLong(signed=True),
1176
+ ),
1177
+ "GetConsoleKeyboardLayoutNameW": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1178
+ "SetComPlusPackageInstallStatus": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1179
+ "GetVDMCurrentDirectories": SimTypeFunction(
1180
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1181
+ ),
1182
+ "CloseConsoleHandle": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1183
+ "EnumerateLocalComputerNamesA": SimTypeFunction(
1184
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1185
+ SimTypeLong(signed=True),
1186
+ ),
1187
+ "UTUnRegister": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1188
+ "GetCalendarDateFormat": SimTypeFunction(
1189
+ [
1190
+ SimTypeLong(signed=True),
1191
+ SimTypeLong(signed=True),
1192
+ SimTypeLong(signed=True),
1193
+ SimTypeLong(signed=True),
1194
+ SimTypeLong(signed=True),
1195
+ SimTypeLong(signed=True),
1196
+ ],
1197
+ SimTypeLong(signed=True),
1198
+ ),
1199
+ "SetProcessUserModeExceptionPolicy": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1200
+ "CheckElevation": SimTypeFunction(
1201
+ [
1202
+ SimTypeLong(signed=True),
1203
+ SimTypeLong(signed=True),
1204
+ SimTypeLong(signed=True),
1205
+ SimTypeLong(signed=True),
1206
+ SimTypeLong(signed=True),
1207
+ ],
1208
+ SimTypeLong(signed=True),
1209
+ ),
1210
+ "RegisterWaitForInputIdle": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1211
+ "ConvertSystemTimeToCalDateTime": SimTypeFunction(
1212
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1213
+ ),
1214
+ "IsTimeZoneRedirectionEnabled": SimTypeFunction([], SimTypeLong(signed=True)),
1215
+ }
1216
+
1217
+ missing_declarations[("win32", "advapi32", "dll")] = {
1218
+ "GetInformationCodeAuthzLevelW": SimTypeFunction(
1219
+ [
1220
+ SimTypeLong(signed=True),
1221
+ SimTypeLong(signed=True),
1222
+ SimTypeLong(signed=True),
1223
+ SimTypeLong(signed=True),
1224
+ SimTypeLong(signed=True),
1225
+ ],
1226
+ SimTypeLong(signed=True),
1227
+ ),
1228
+ "WmiFreeBuffer": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1229
+ "GetNamedSecurityInfoExW": SimTypeFunction(
1230
+ [
1231
+ SimTypeLong(signed=True),
1232
+ SimTypeLong(signed=True),
1233
+ SimTypeLong(signed=True),
1234
+ SimTypeLong(signed=True),
1235
+ SimTypeLong(signed=True),
1236
+ SimTypeLong(signed=True),
1237
+ SimTypeLong(signed=True),
1238
+ SimTypeLong(signed=True),
1239
+ SimTypeLong(signed=True),
1240
+ ],
1241
+ SimTypeLong(signed=True),
1242
+ ),
1243
+ "WmiQuerySingleInstanceMultipleA": SimTypeFunction(
1244
+ [
1245
+ SimTypeLong(signed=True),
1246
+ SimTypeLong(signed=True),
1247
+ SimTypeLong(signed=True),
1248
+ SimTypeLong(signed=True),
1249
+ SimTypeLong(signed=True),
1250
+ ],
1251
+ SimTypeLong(signed=True),
1252
+ ),
1253
+ "ConvertSecurityDescriptorToAccessA": SimTypeFunction(
1254
+ [
1255
+ SimTypeLong(signed=True),
1256
+ SimTypeLong(signed=True),
1257
+ SimTypeLong(signed=True),
1258
+ SimTypeLong(signed=True),
1259
+ SimTypeLong(signed=True),
1260
+ SimTypeLong(signed=True),
1261
+ SimTypeLong(signed=True),
1262
+ ],
1263
+ SimTypeLong(signed=True),
1264
+ ),
1265
+ "CredProfileLoaded": SimTypeFunction([], SimTypeLong(signed=True)),
1266
+ "WmiExecuteMethodW": SimTypeFunction(
1267
+ [
1268
+ SimTypeLong(signed=True),
1269
+ SimTypeLong(signed=True),
1270
+ SimTypeLong(signed=True),
1271
+ SimTypeLong(signed=True),
1272
+ SimTypeLong(signed=True),
1273
+ SimTypeLong(signed=True),
1274
+ SimTypeLong(signed=True),
1275
+ ],
1276
+ SimTypeLong(signed=True),
1277
+ ),
1278
+ "ProcessIdleTasksW": SimTypeFunction(
1279
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1280
+ SimTypeLong(signed=True),
1281
+ ),
1282
+ "MD4Final": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1283
+ "SystemFunction013": SimTypeFunction(
1284
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1285
+ ),
1286
+ "CredpConvertOneCredentialSize": SimTypeFunction(
1287
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1288
+ ),
1289
+ "EncryptedFileKeyInfo": SimTypeFunction(
1290
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1291
+ ),
1292
+ "ElfBackupEventLogFileW": SimTypeFunction(
1293
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1294
+ ),
1295
+ "MD4Update": SimTypeFunction(
1296
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1297
+ ),
1298
+ "CloseCodeAuthzLevel": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1299
+ "EnumServiceGroupW": SimTypeFunction(
1300
+ [
1301
+ SimTypeLong(signed=True),
1302
+ SimTypeLong(signed=True),
1303
+ SimTypeLong(signed=True),
1304
+ SimTypeLong(signed=True),
1305
+ SimTypeLong(signed=True),
1306
+ SimTypeLong(signed=True),
1307
+ SimTypeLong(signed=True),
1308
+ SimTypeLong(signed=True),
1309
+ SimTypeLong(signed=True),
1310
+ ],
1311
+ SimTypeLong(signed=True),
1312
+ ),
1313
+ "GetSecurityInfoExA": SimTypeFunction(
1314
+ [
1315
+ SimTypeLong(signed=True),
1316
+ SimTypeLong(signed=True),
1317
+ SimTypeLong(signed=True),
1318
+ SimTypeLong(signed=True),
1319
+ SimTypeLong(signed=True),
1320
+ SimTypeLong(signed=True),
1321
+ SimTypeLong(signed=True),
1322
+ SimTypeLong(signed=True),
1323
+ SimTypeLong(signed=True),
1324
+ ],
1325
+ SimTypeLong(signed=True),
1326
+ ),
1327
+ "ElfReportEventA": SimTypeFunction(
1328
+ [
1329
+ SimTypeLong(signed=True),
1330
+ SimTypeLong(signed=True),
1331
+ SimTypeLong(signed=True),
1332
+ SimTypeLong(signed=True),
1333
+ SimTypeLong(signed=True),
1334
+ SimTypeLong(signed=True),
1335
+ SimTypeLong(signed=True),
1336
+ SimTypeLong(signed=True),
1337
+ SimTypeLong(signed=True),
1338
+ SimTypeLong(signed=True),
1339
+ SimTypeLong(signed=True),
1340
+ SimTypeLong(signed=True),
1341
+ ],
1342
+ SimTypeLong(signed=True),
1343
+ ),
1344
+ "SystemFunction027": SimTypeFunction(
1345
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1346
+ ),
1347
+ "LsaEnumeratePrivilegesOfAccount": SimTypeFunction(
1348
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1349
+ ),
1350
+ "SystemFunction024": SimTypeFunction(
1351
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1352
+ ),
1353
+ "ConvertAccessToSecurityDescriptorW": SimTypeFunction(
1354
+ [
1355
+ SimTypeLong(signed=True),
1356
+ SimTypeLong(signed=True),
1357
+ SimTypeLong(signed=True),
1358
+ SimTypeLong(signed=True),
1359
+ SimTypeLong(signed=True),
1360
+ ],
1361
+ SimTypeLong(signed=True),
1362
+ ),
1363
+ "WmiDevInstToInstanceNameA": SimTypeFunction(
1364
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1365
+ SimTypeLong(signed=True),
1366
+ ),
1367
+ "WmiEnumerateGuids": SimTypeFunction(
1368
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1369
+ ),
1370
+ "SaferiRegisterExtensionDll": SimTypeFunction(
1371
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1372
+ ),
1373
+ "LsaCreateSecret": SimTypeFunction(
1374
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1375
+ SimTypeLong(signed=True),
1376
+ ),
1377
+ "ElfOpenEventLogW": SimTypeFunction(
1378
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1379
+ ),
1380
+ "ElfOpenEventLogA": SimTypeFunction(
1381
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1382
+ ),
1383
+ "LsaGetUserName": SimTypeFunction(
1384
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1385
+ ),
1386
+ "A_SHAInit": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1387
+ "LsaOpenPolicySce": SimTypeFunction(
1388
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1389
+ SimTypeLong(signed=True),
1390
+ ),
1391
+ "ElfChangeNotify": SimTypeFunction(
1392
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1393
+ ),
1394
+ "I_ScSetServiceBitsA": SimTypeFunction(
1395
+ [
1396
+ SimTypeLong(signed=True),
1397
+ SimTypeLong(signed=True),
1398
+ SimTypeLong(signed=True),
1399
+ SimTypeLong(signed=True),
1400
+ SimTypeLong(signed=True),
1401
+ ],
1402
+ SimTypeLong(signed=True),
1403
+ ),
1404
+ "WmiOpenBlock": SimTypeFunction(
1405
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1406
+ ),
1407
+ "GetAccessPermissionsForObjectA": SimTypeFunction(
1408
+ [
1409
+ SimTypeLong(signed=True),
1410
+ SimTypeLong(signed=True),
1411
+ SimTypeLong(signed=True),
1412
+ SimTypeLong(signed=True),
1413
+ SimTypeLong(signed=True),
1414
+ SimTypeLong(signed=True),
1415
+ SimTypeLong(signed=True),
1416
+ SimTypeLong(signed=True),
1417
+ SimTypeLong(signed=True),
1418
+ ],
1419
+ SimTypeLong(signed=True),
1420
+ ),
1421
+ "LsaICLookupNames": SimTypeFunction(
1422
+ [
1423
+ SimTypeLong(signed=True),
1424
+ SimTypeLong(signed=True),
1425
+ SimTypeLong(signed=True),
1426
+ SimTypeLong(signed=True),
1427
+ SimTypeLong(signed=True),
1428
+ SimTypeLong(signed=True),
1429
+ SimTypeLong(signed=True),
1430
+ SimTypeLong(signed=True),
1431
+ SimTypeLong(signed=True),
1432
+ SimTypeLong(signed=True),
1433
+ ],
1434
+ SimTypeLong(signed=True),
1435
+ ),
1436
+ "UnregisterIdleTask": SimTypeFunction(
1437
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1438
+ ),
1439
+ "SystemFunction025": SimTypeFunction(
1440
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1441
+ ),
1442
+ "ElfRegisterEventSourceA": SimTypeFunction(
1443
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1444
+ ),
1445
+ "SystemFunction010": SimTypeFunction(
1446
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1447
+ ),
1448
+ "WmiMofEnumerateResourcesA": SimTypeFunction(
1449
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1450
+ ),
1451
+ "ConvertSDToStringSDRootDomainW": SimTypeFunction(
1452
+ [
1453
+ SimTypeLong(signed=True),
1454
+ SimTypeLong(signed=True),
1455
+ SimTypeLong(signed=True),
1456
+ SimTypeLong(signed=True),
1457
+ SimTypeLong(signed=True),
1458
+ SimTypeLong(signed=True),
1459
+ ],
1460
+ SimTypeLong(signed=True),
1461
+ ),
1462
+ "A_SHAFinal": SimTypeFunction([SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1463
+ "LsaSetSecurityObject": SimTypeFunction(
1464
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1465
+ ),
1466
+ "LsaSetSystemAccessAccount": SimTypeFunction(
1467
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1468
+ ),
1469
+ "WmiFileHandleToInstanceNameA": SimTypeFunction(
1470
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1471
+ SimTypeLong(signed=True),
1472
+ ),
1473
+ "FreeEncryptedFileKeyInfo": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1474
+ "LsaGetRemoteUserName": SimTypeFunction(
1475
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1476
+ ),
1477
+ "EventWriteStartScenario": SimTypeFunction(
1478
+ [
1479
+ SimTypeLong(signed=True),
1480
+ SimTypeLong(signed=True),
1481
+ SimTypeLong(signed=True),
1482
+ SimTypeLong(signed=True),
1483
+ SimTypeLong(signed=True),
1484
+ ],
1485
+ SimTypeLong(signed=True),
1486
+ ),
1487
+ "SystemFunction014": SimTypeFunction(
1488
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1489
+ ),
1490
+ "AddUsersToEncryptedFileEx": SimTypeFunction(
1491
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1492
+ SimTypeLong(signed=True),
1493
+ ),
1494
+ "ElfRegisterEventSourceW": SimTypeFunction(
1495
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1496
+ ),
1497
+ "CredEncryptAndMarshalBinaryBlob": SimTypeFunction(
1498
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1499
+ ),
1500
+ "SaferiPopulateDefaultsInRegistry": SimTypeFunction(
1501
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1502
+ ),
1503
+ "SaferiSearchMatchingHashRules": SimTypeFunction(
1504
+ [
1505
+ SimTypeLong(signed=True),
1506
+ SimTypeLong(signed=True),
1507
+ SimTypeLong(signed=True),
1508
+ SimTypeLong(signed=True),
1509
+ SimTypeLong(signed=True),
1510
+ SimTypeLong(signed=True),
1511
+ ],
1512
+ SimTypeLong(signed=True),
1513
+ ),
1514
+ "LsaGetSystemAccessAccount": SimTypeFunction(
1515
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1516
+ ),
1517
+ "ElfReadEventLogW": SimTypeFunction(
1518
+ [
1519
+ SimTypeLong(signed=True),
1520
+ SimTypeLong(signed=True),
1521
+ SimTypeLong(signed=True),
1522
+ SimTypeLong(signed=True),
1523
+ SimTypeLong(signed=True),
1524
+ SimTypeLong(signed=True),
1525
+ SimTypeLong(signed=True),
1526
+ ],
1527
+ SimTypeLong(signed=True),
1528
+ ),
1529
+ "WmiExecuteMethodA": SimTypeFunction(
1530
+ [
1531
+ SimTypeLong(signed=True),
1532
+ SimTypeLong(signed=True),
1533
+ SimTypeLong(signed=True),
1534
+ SimTypeLong(signed=True),
1535
+ SimTypeLong(signed=True),
1536
+ SimTypeLong(signed=True),
1537
+ SimTypeLong(signed=True),
1538
+ ],
1539
+ SimTypeLong(signed=True),
1540
+ ),
1541
+ "WmiSetSingleInstanceA": SimTypeFunction(
1542
+ [
1543
+ SimTypeLong(signed=True),
1544
+ SimTypeLong(signed=True),
1545
+ SimTypeLong(signed=True),
1546
+ SimTypeLong(signed=True),
1547
+ SimTypeLong(signed=True),
1548
+ ],
1549
+ SimTypeLong(signed=True),
1550
+ ),
1551
+ "LsaLookupPrivilegeValue": SimTypeFunction(
1552
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1553
+ ),
1554
+ "WmiSetSingleItemW": SimTypeFunction(
1555
+ [
1556
+ SimTypeLong(signed=True),
1557
+ SimTypeLong(signed=True),
1558
+ SimTypeLong(signed=True),
1559
+ SimTypeLong(signed=True),
1560
+ SimTypeLong(signed=True),
1561
+ SimTypeLong(signed=True),
1562
+ ],
1563
+ SimTypeLong(signed=True),
1564
+ ),
1565
+ "WmiQueryAllDataA": SimTypeFunction(
1566
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1567
+ ),
1568
+ "CredBackupCredentials": SimTypeFunction(
1569
+ [
1570
+ SimTypeLong(signed=True),
1571
+ SimTypeLong(signed=True),
1572
+ SimTypeLong(signed=True),
1573
+ SimTypeLong(signed=True),
1574
+ SimTypeLong(signed=True),
1575
+ ],
1576
+ SimTypeLong(signed=True),
1577
+ ),
1578
+ "ConvertStringSDToSDRootDomainW": SimTypeFunction(
1579
+ [
1580
+ SimTypeLong(signed=True),
1581
+ SimTypeLong(signed=True),
1582
+ SimTypeLong(signed=True),
1583
+ SimTypeLong(signed=True),
1584
+ SimTypeLong(signed=True),
1585
+ ],
1586
+ SimTypeLong(signed=True),
1587
+ ),
1588
+ "LsaCreateTrustedDomain": SimTypeFunction(
1589
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1590
+ SimTypeLong(signed=True),
1591
+ ),
1592
+ "GetAccessPermissionsForObjectW": SimTypeFunction(
1593
+ [
1594
+ SimTypeLong(signed=True),
1595
+ SimTypeLong(signed=True),
1596
+ SimTypeLong(signed=True),
1597
+ SimTypeLong(signed=True),
1598
+ SimTypeLong(signed=True),
1599
+ SimTypeLong(signed=True),
1600
+ SimTypeLong(signed=True),
1601
+ SimTypeLong(signed=True),
1602
+ SimTypeLong(signed=True),
1603
+ ],
1604
+ SimTypeLong(signed=True),
1605
+ ),
1606
+ "ElfReportEventW": SimTypeFunction(
1607
+ [
1608
+ SimTypeLong(signed=True),
1609
+ SimTypeLong(signed=True),
1610
+ SimTypeLong(signed=True),
1611
+ SimTypeLong(signed=True),
1612
+ SimTypeLong(signed=True),
1613
+ SimTypeLong(signed=True),
1614
+ SimTypeLong(signed=True),
1615
+ SimTypeLong(signed=True),
1616
+ SimTypeLong(signed=True),
1617
+ SimTypeLong(signed=True),
1618
+ SimTypeLong(signed=True),
1619
+ SimTypeLong(signed=True),
1620
+ ],
1621
+ SimTypeLong(signed=True),
1622
+ ),
1623
+ "SetSecurityInfoExW": SimTypeFunction(
1624
+ [
1625
+ SimTypeLong(signed=True),
1626
+ SimTypeLong(signed=True),
1627
+ SimTypeLong(signed=True),
1628
+ SimTypeLong(signed=True),
1629
+ SimTypeLong(signed=True),
1630
+ SimTypeLong(signed=True),
1631
+ SimTypeLong(signed=True),
1632
+ SimTypeLong(signed=True),
1633
+ SimTypeLong(signed=True),
1634
+ ],
1635
+ SimTypeLong(signed=True),
1636
+ ),
1637
+ "SystemFunction015": SimTypeFunction(
1638
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1639
+ ),
1640
+ "ElfCloseEventLog": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1641
+ "UsePinForEncryptedFilesW": SimTypeFunction(
1642
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1643
+ ),
1644
+ "LsaManageSidNameMapping": SimTypeFunction(
1645
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1646
+ ),
1647
+ "CredProfileUnloaded": SimTypeFunction([], SimTypeLong(signed=True)),
1648
+ "SystemFunction007": SimTypeFunction(
1649
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1650
+ ),
1651
+ "WmiSetSingleItemA": SimTypeFunction(
1652
+ [
1653
+ SimTypeLong(signed=True),
1654
+ SimTypeLong(signed=True),
1655
+ SimTypeLong(signed=True),
1656
+ SimTypeLong(signed=True),
1657
+ SimTypeLong(signed=True),
1658
+ SimTypeLong(signed=True),
1659
+ ],
1660
+ SimTypeLong(signed=True),
1661
+ ),
1662
+ "GetNamedSecurityInfoExA": SimTypeFunction(
1663
+ [
1664
+ SimTypeLong(signed=True),
1665
+ SimTypeLong(signed=True),
1666
+ SimTypeLong(signed=True),
1667
+ SimTypeLong(signed=True),
1668
+ SimTypeLong(signed=True),
1669
+ SimTypeLong(signed=True),
1670
+ SimTypeLong(signed=True),
1671
+ SimTypeLong(signed=True),
1672
+ SimTypeLong(signed=True),
1673
+ ],
1674
+ SimTypeLong(signed=True),
1675
+ ),
1676
+ "WmiFileHandleToInstanceNameW": SimTypeFunction(
1677
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1678
+ SimTypeLong(signed=True),
1679
+ ),
1680
+ "SaferiChangeRegistryScope": SimTypeFunction(
1681
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1682
+ ),
1683
+ "MD5Init": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1684
+ "I_ScPnPGetServiceName": SimTypeFunction(
1685
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1686
+ ),
1687
+ "CredpConvertTargetInfo": SimTypeFunction(
1688
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1689
+ SimTypeLong(signed=True),
1690
+ ),
1691
+ "GetSecurityInfoExW": SimTypeFunction(
1692
+ [
1693
+ SimTypeLong(signed=True),
1694
+ SimTypeLong(signed=True),
1695
+ SimTypeLong(signed=True),
1696
+ SimTypeLong(signed=True),
1697
+ SimTypeLong(signed=True),
1698
+ SimTypeLong(signed=True),
1699
+ SimTypeLong(signed=True),
1700
+ SimTypeLong(signed=True),
1701
+ SimTypeLong(signed=True),
1702
+ ],
1703
+ SimTypeLong(signed=True),
1704
+ ),
1705
+ "IsValidRelativeSecurityDescriptor": SimTypeFunction(
1706
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1707
+ ),
1708
+ "CredpDecodeCredential": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1709
+ "I_ScSetServiceBitsW": SimTypeFunction(
1710
+ [
1711
+ SimTypeLong(signed=True),
1712
+ SimTypeLong(signed=True),
1713
+ SimTypeLong(signed=True),
1714
+ SimTypeLong(signed=True),
1715
+ SimTypeLong(signed=True),
1716
+ ],
1717
+ SimTypeLong(signed=True),
1718
+ ),
1719
+ "RegisterIdleTask": SimTypeFunction(
1720
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1721
+ SimTypeLong(signed=True),
1722
+ ),
1723
+ "SystemFunction017": SimTypeFunction(
1724
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1725
+ ),
1726
+ "SystemFunction033": SimTypeFunction(
1727
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1728
+ ),
1729
+ "CancelOverlappedAccess": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1730
+ "TrusteeAccessToObjectW": SimTypeFunction(
1731
+ [
1732
+ SimTypeLong(signed=True),
1733
+ SimTypeLong(signed=True),
1734
+ SimTypeLong(signed=True),
1735
+ SimTypeLong(signed=True),
1736
+ SimTypeLong(signed=True),
1737
+ SimTypeLong(signed=True),
1738
+ ],
1739
+ SimTypeLong(signed=True),
1740
+ ),
1741
+ "LsaOpenSecret": SimTypeFunction(
1742
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1743
+ SimTypeLong(signed=True),
1744
+ ),
1745
+ "EventWriteEndScenario": SimTypeFunction(
1746
+ [
1747
+ SimTypeLong(signed=True),
1748
+ SimTypeLong(signed=True),
1749
+ SimTypeLong(signed=True),
1750
+ SimTypeLong(signed=True),
1751
+ SimTypeLong(signed=True),
1752
+ ],
1753
+ SimTypeLong(signed=True),
1754
+ ),
1755
+ "ComputeAccessTokenFromCodeAuthzLevel": SimTypeFunction(
1756
+ [
1757
+ SimTypeLong(signed=True),
1758
+ SimTypeLong(signed=True),
1759
+ SimTypeLong(signed=True),
1760
+ SimTypeLong(signed=True),
1761
+ SimTypeLong(signed=True),
1762
+ ],
1763
+ SimTypeLong(signed=True),
1764
+ ),
1765
+ "LsaGetQuotasForAccount": SimTypeFunction(
1766
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1767
+ ),
1768
+ "I_ScIsSecurityProcess": SimTypeFunction([], SimTypeLong(signed=True)),
1769
+ "SetNamedSecurityInfoExA": SimTypeFunction(
1770
+ [
1771
+ SimTypeLong(signed=True),
1772
+ SimTypeLong(signed=True),
1773
+ SimTypeLong(signed=True),
1774
+ SimTypeLong(signed=True),
1775
+ SimTypeLong(signed=True),
1776
+ SimTypeLong(signed=True),
1777
+ SimTypeLong(signed=True),
1778
+ SimTypeLong(signed=True),
1779
+ SimTypeLong(signed=True),
1780
+ ],
1781
+ SimTypeLong(signed=True),
1782
+ ),
1783
+ "SystemFunction019": SimTypeFunction(
1784
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1785
+ ),
1786
+ "WmiQueryAllDataMultipleW": SimTypeFunction(
1787
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1788
+ SimTypeLong(signed=True),
1789
+ ),
1790
+ "ElfDeregisterEventSource": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1791
+ "ElfClearEventLogFileA": SimTypeFunction(
1792
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1793
+ ),
1794
+ "ConvertAccessToSecurityDescriptorA": SimTypeFunction(
1795
+ [
1796
+ SimTypeLong(signed=True),
1797
+ SimTypeLong(signed=True),
1798
+ SimTypeLong(signed=True),
1799
+ SimTypeLong(signed=True),
1800
+ SimTypeLong(signed=True),
1801
+ ],
1802
+ SimTypeLong(signed=True),
1803
+ ),
1804
+ "SystemFunction016": SimTypeFunction(
1805
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1806
+ ),
1807
+ "WmiMofEnumerateResourcesW": SimTypeFunction(
1808
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1809
+ ),
1810
+ "WmiNotificationRegistrationA": SimTypeFunction(
1811
+ [
1812
+ SimTypeLong(signed=True),
1813
+ SimTypeLong(signed=True),
1814
+ SimTypeLong(signed=True),
1815
+ SimTypeLong(signed=True),
1816
+ SimTypeLong(signed=True),
1817
+ ],
1818
+ SimTypeLong(signed=True),
1819
+ ),
1820
+ "LsaAddPrivilegesToAccount": SimTypeFunction(
1821
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1822
+ ),
1823
+ "SystemFunction003": SimTypeFunction(
1824
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1825
+ ),
1826
+ "SystemFunction020": SimTypeFunction(
1827
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1828
+ ),
1829
+ "SystemFunction006": SimTypeFunction(
1830
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1831
+ ),
1832
+ "ConvertStringSDToSDRootDomainA": SimTypeFunction(
1833
+ [
1834
+ SimTypeLong(signed=True),
1835
+ SimTypeLong(signed=True),
1836
+ SimTypeLong(signed=True),
1837
+ SimTypeLong(signed=True),
1838
+ SimTypeLong(signed=True),
1839
+ ],
1840
+ SimTypeLong(signed=True),
1841
+ ),
1842
+ "ConvertStringSDToSDDomainW": SimTypeFunction(
1843
+ [
1844
+ SimTypeLong(signed=True),
1845
+ SimTypeLong(signed=True),
1846
+ SimTypeLong(signed=True),
1847
+ SimTypeLong(signed=True),
1848
+ SimTypeLong(signed=True),
1849
+ SimTypeLong(signed=True),
1850
+ ],
1851
+ SimTypeLong(signed=True),
1852
+ ),
1853
+ "ConvertSecurityDescriptorToAccessNamedA": SimTypeFunction(
1854
+ [
1855
+ SimTypeLong(signed=True),
1856
+ SimTypeLong(signed=True),
1857
+ SimTypeLong(signed=True),
1858
+ SimTypeLong(signed=True),
1859
+ SimTypeLong(signed=True),
1860
+ SimTypeLong(signed=True),
1861
+ SimTypeLong(signed=True),
1862
+ ],
1863
+ SimTypeLong(signed=True),
1864
+ ),
1865
+ "LsaRemovePrivilegesFromAccount": SimTypeFunction(
1866
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1867
+ ),
1868
+ "WmiQuerySingleInstanceW": SimTypeFunction(
1869
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1870
+ SimTypeLong(signed=True),
1871
+ ),
1872
+ "ProcessIdleTasks": SimTypeFunction([], SimTypeLong(signed=True)),
1873
+ "ConvertStringSDToSDDomainA": SimTypeFunction(
1874
+ [
1875
+ SimTypeLong(signed=True),
1876
+ SimTypeLong(signed=True),
1877
+ SimTypeLong(signed=True),
1878
+ SimTypeLong(signed=True),
1879
+ SimTypeLong(signed=True),
1880
+ SimTypeLong(signed=True),
1881
+ ],
1882
+ SimTypeLong(signed=True),
1883
+ ),
1884
+ "SetEntriesInAuditListA": SimTypeFunction(
1885
+ [
1886
+ SimTypeLong(signed=True),
1887
+ SimTypeLong(signed=True),
1888
+ SimTypeLong(signed=True),
1889
+ SimTypeLong(signed=True),
1890
+ SimTypeLong(signed=True),
1891
+ SimTypeLong(signed=True),
1892
+ ],
1893
+ SimTypeLong(signed=True),
1894
+ ),
1895
+ "NotifyServiceStatusChange": SimTypeFunction(
1896
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1897
+ ),
1898
+ "LsaQuerySecurityObject": SimTypeFunction(
1899
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1900
+ ),
1901
+ "ElfBackupEventLogFileA": SimTypeFunction(
1902
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1903
+ ),
1904
+ "SystemFunction018": SimTypeFunction(
1905
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1906
+ ),
1907
+ "SaferiIsDllAllowed": SimTypeFunction(
1908
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1909
+ ),
1910
+ "WmiCloseBlock": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1911
+ "SystemFunction035": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1912
+ "WmiSetSingleInstanceW": SimTypeFunction(
1913
+ [
1914
+ SimTypeLong(signed=True),
1915
+ SimTypeLong(signed=True),
1916
+ SimTypeLong(signed=True),
1917
+ SimTypeLong(signed=True),
1918
+ SimTypeLong(signed=True),
1919
+ ],
1920
+ SimTypeLong(signed=True),
1921
+ ),
1922
+ "CredpEncodeCredential": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1923
+ "WmiQueryAllDataMultipleA": SimTypeFunction(
1924
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1925
+ SimTypeLong(signed=True),
1926
+ ),
1927
+ "SystemFunction030": SimTypeFunction(
1928
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1929
+ ),
1930
+ "LsaOpenTrustedDomain": SimTypeFunction(
1931
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
1932
+ SimTypeLong(signed=True),
1933
+ ),
1934
+ "SystemFunction005": SimTypeFunction(
1935
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1936
+ ),
1937
+ "SystemFunction012": SimTypeFunction(
1938
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1939
+ ),
1940
+ "SystemFunction031": SimTypeFunction(
1941
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1942
+ ),
1943
+ "SetEntriesInAuditListW": SimTypeFunction(
1944
+ [
1945
+ SimTypeLong(signed=True),
1946
+ SimTypeLong(signed=True),
1947
+ SimTypeLong(signed=True),
1948
+ SimTypeLong(signed=True),
1949
+ SimTypeLong(signed=True),
1950
+ SimTypeLong(signed=True),
1951
+ ],
1952
+ SimTypeLong(signed=True),
1953
+ ),
1954
+ "I_ScGetCurrentGroupStateW": SimTypeFunction(
1955
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1956
+ ),
1957
+ "SetNamedSecurityInfoExW": SimTypeFunction(
1958
+ [
1959
+ SimTypeLong(signed=True),
1960
+ SimTypeLong(signed=True),
1961
+ SimTypeLong(signed=True),
1962
+ SimTypeLong(signed=True),
1963
+ SimTypeLong(signed=True),
1964
+ SimTypeLong(signed=True),
1965
+ SimTypeLong(signed=True),
1966
+ SimTypeLong(signed=True),
1967
+ SimTypeLong(signed=True),
1968
+ ],
1969
+ SimTypeLong(signed=True),
1970
+ ),
1971
+ "ElfNumberOfRecords": SimTypeFunction(
1972
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1973
+ ),
1974
+ "LsaClearAuditLog": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1975
+ "CreateCodeAuthzLevel": SimTypeFunction(
1976
+ [
1977
+ SimTypeLong(signed=True),
1978
+ SimTypeLong(signed=True),
1979
+ SimTypeLong(signed=True),
1980
+ SimTypeLong(signed=True),
1981
+ SimTypeLong(signed=True),
1982
+ ],
1983
+ SimTypeLong(signed=True),
1984
+ ),
1985
+ "MD5Update": SimTypeFunction(
1986
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1987
+ ),
1988
+ "ElfFlushEventLog": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
1989
+ "MakeAbsoluteSD2": SimTypeFunction(
1990
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1991
+ ),
1992
+ "SaferiCompareTokenLevels": SimTypeFunction(
1993
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
1994
+ ),
1995
+ "SetEntriesInAccessListA": SimTypeFunction(
1996
+ [
1997
+ SimTypeLong(signed=True),
1998
+ SimTypeLong(signed=True),
1999
+ SimTypeLong(signed=True),
2000
+ SimTypeLong(signed=True),
2001
+ SimTypeLong(signed=True),
2002
+ SimTypeLong(signed=True),
2003
+ ],
2004
+ SimTypeLong(signed=True),
2005
+ ),
2006
+ "SystemFunction008": SimTypeFunction(
2007
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2008
+ ),
2009
+ "FlushEfsCache": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
2010
+ "ConvertSecurityDescriptorToAccessNamedW": SimTypeFunction(
2011
+ [
2012
+ SimTypeLong(signed=True),
2013
+ SimTypeLong(signed=True),
2014
+ SimTypeLong(signed=True),
2015
+ SimTypeLong(signed=True),
2016
+ SimTypeLong(signed=True),
2017
+ SimTypeLong(signed=True),
2018
+ SimTypeLong(signed=True),
2019
+ ],
2020
+ SimTypeLong(signed=True),
2021
+ ),
2022
+ "LsaCreateAccount": SimTypeFunction(
2023
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
2024
+ SimTypeLong(signed=True),
2025
+ ),
2026
+ "LsaEnumerateAccounts": SimTypeFunction(
2027
+ [
2028
+ SimTypeLong(signed=True),
2029
+ SimTypeLong(signed=True),
2030
+ SimTypeLong(signed=True),
2031
+ SimTypeLong(signed=True),
2032
+ SimTypeLong(signed=True),
2033
+ ],
2034
+ SimTypeLong(signed=True),
2035
+ ),
2036
+ "WmiQueryGuidInformation": SimTypeFunction(
2037
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2038
+ ),
2039
+ "I_QueryTagInformation": SimTypeFunction(
2040
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2041
+ ),
2042
+ "SetInformationCodeAuthzLevelW": SimTypeFunction(
2043
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
2044
+ SimTypeLong(signed=True),
2045
+ ),
2046
+ "LsaQueryInfoTrustedDomain": SimTypeFunction(
2047
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2048
+ ),
2049
+ "SystemFunction028": SimTypeFunction(
2050
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2051
+ ),
2052
+ "WmiQuerySingleInstanceMultipleW": SimTypeFunction(
2053
+ [
2054
+ SimTypeLong(signed=True),
2055
+ SimTypeLong(signed=True),
2056
+ SimTypeLong(signed=True),
2057
+ SimTypeLong(signed=True),
2058
+ SimTypeLong(signed=True),
2059
+ ],
2060
+ SimTypeLong(signed=True),
2061
+ ),
2062
+ "WmiReceiveNotificationsW": SimTypeFunction(
2063
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
2064
+ SimTypeLong(signed=True),
2065
+ ),
2066
+ "LsaSetInformationTrustedDomain": SimTypeFunction(
2067
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2068
+ ),
2069
+ "I_ScValidatePnPService": SimTypeFunction(
2070
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2071
+ ),
2072
+ "ElfReportEventAndSourceW": SimTypeFunction(
2073
+ [
2074
+ SimTypeLong(signed=True),
2075
+ SimTypeLong(signed=True),
2076
+ SimTypeLong(signed=True),
2077
+ SimTypeLong(signed=True),
2078
+ SimTypeLong(signed=True),
2079
+ SimTypeLong(signed=True),
2080
+ SimTypeLong(signed=True),
2081
+ SimTypeLong(signed=True),
2082
+ SimTypeLong(signed=True),
2083
+ SimTypeLong(signed=True),
2084
+ SimTypeLong(signed=True),
2085
+ SimTypeLong(signed=True),
2086
+ SimTypeLong(signed=True),
2087
+ SimTypeLong(signed=True),
2088
+ SimTypeLong(signed=True),
2089
+ ],
2090
+ SimTypeLong(signed=True),
2091
+ ),
2092
+ "ConvertSDToStringSDRootDomainA": SimTypeFunction(
2093
+ [
2094
+ SimTypeLong(signed=True),
2095
+ SimTypeLong(signed=True),
2096
+ SimTypeLong(signed=True),
2097
+ SimTypeLong(signed=True),
2098
+ SimTypeLong(signed=True),
2099
+ SimTypeLong(signed=True),
2100
+ ],
2101
+ SimTypeLong(signed=True),
2102
+ ),
2103
+ "TrusteeAccessToObjectA": SimTypeFunction(
2104
+ [
2105
+ SimTypeLong(signed=True),
2106
+ SimTypeLong(signed=True),
2107
+ SimTypeLong(signed=True),
2108
+ SimTypeLong(signed=True),
2109
+ SimTypeLong(signed=True),
2110
+ SimTypeLong(signed=True),
2111
+ ],
2112
+ SimTypeLong(signed=True),
2113
+ ),
2114
+ "MD4Init": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
2115
+ "GetOverlappedAccessResults": SimTypeFunction(
2116
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
2117
+ SimTypeLong(signed=True),
2118
+ ),
2119
+ "LogonUserExExW": SimTypeFunction(
2120
+ [
2121
+ SimTypeLong(signed=True),
2122
+ SimTypeLong(signed=True),
2123
+ SimTypeLong(signed=True),
2124
+ SimTypeLong(signed=True),
2125
+ SimTypeLong(signed=True),
2126
+ SimTypeLong(signed=True),
2127
+ SimTypeLong(signed=True),
2128
+ SimTypeLong(signed=True),
2129
+ SimTypeLong(signed=True),
2130
+ SimTypeLong(signed=True),
2131
+ SimTypeLong(signed=True),
2132
+ ],
2133
+ SimTypeLong(signed=True),
2134
+ ),
2135
+ "LsaLookupPrivilegeName": SimTypeFunction(
2136
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2137
+ ),
2138
+ "LsaOpenAccount": SimTypeFunction(
2139
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
2140
+ SimTypeLong(signed=True),
2141
+ ),
2142
+ "CredRestoreCredentials": SimTypeFunction(
2143
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
2144
+ SimTypeLong(signed=True),
2145
+ ),
2146
+ "I_ScSendTSMessage": SimTypeFunction(
2147
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
2148
+ SimTypeLong(signed=True),
2149
+ ),
2150
+ "LsaLookupPrivilegeDisplayName": SimTypeFunction(
2151
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
2152
+ SimTypeLong(signed=True),
2153
+ ),
2154
+ "I_ScSendPnPMessage": SimTypeFunction(
2155
+ [
2156
+ SimTypeLong(signed=True),
2157
+ SimTypeLong(signed=True),
2158
+ SimTypeLong(signed=True),
2159
+ SimTypeLong(signed=True),
2160
+ SimTypeLong(signed=True),
2161
+ SimTypeLong(signed=True),
2162
+ ],
2163
+ SimTypeLong(signed=True),
2164
+ ),
2165
+ "LsaICLookupSids": SimTypeFunction(
2166
+ [
2167
+ SimTypeLong(signed=True),
2168
+ SimTypeLong(signed=True),
2169
+ SimTypeLong(signed=True),
2170
+ SimTypeLong(signed=True),
2171
+ SimTypeLong(signed=True),
2172
+ SimTypeLong(signed=True),
2173
+ SimTypeLong(signed=True),
2174
+ SimTypeLong(signed=True),
2175
+ SimTypeLong(signed=True),
2176
+ ],
2177
+ SimTypeLong(signed=True),
2178
+ ),
2179
+ "SystemFunction034": SimTypeFunction(
2180
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2181
+ ),
2182
+ "SaferiRecordEventLogEntry": SimTypeFunction(
2183
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2184
+ ),
2185
+ "SystemFunction026": SimTypeFunction(
2186
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2187
+ ),
2188
+ "ElfOpenBackupEventLogA": SimTypeFunction(
2189
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2190
+ ),
2191
+ "SystemFunction029": SimTypeFunction(
2192
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2193
+ ),
2194
+ "LsaSetSecret": SimTypeFunction(
2195
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2196
+ ),
2197
+ "ElfReadEventLogA": SimTypeFunction(
2198
+ [
2199
+ SimTypeLong(signed=True),
2200
+ SimTypeLong(signed=True),
2201
+ SimTypeLong(signed=True),
2202
+ SimTypeLong(signed=True),
2203
+ SimTypeLong(signed=True),
2204
+ SimTypeLong(signed=True),
2205
+ SimTypeLong(signed=True),
2206
+ ],
2207
+ SimTypeLong(signed=True),
2208
+ ),
2209
+ "CredpConvertCredential": SimTypeFunction(
2210
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
2211
+ SimTypeLong(signed=True),
2212
+ ),
2213
+ "ConvertSecurityDescriptorToAccessW": SimTypeFunction(
2214
+ [
2215
+ SimTypeLong(signed=True),
2216
+ SimTypeLong(signed=True),
2217
+ SimTypeLong(signed=True),
2218
+ SimTypeLong(signed=True),
2219
+ SimTypeLong(signed=True),
2220
+ SimTypeLong(signed=True),
2221
+ SimTypeLong(signed=True),
2222
+ ],
2223
+ SimTypeLong(signed=True),
2224
+ ),
2225
+ "LsaICLookupSidsWithCreds": SimTypeFunction(
2226
+ [
2227
+ SimTypeLong(signed=True),
2228
+ SimTypeLong(signed=True),
2229
+ SimTypeLong(signed=True),
2230
+ SimTypeLong(signed=True),
2231
+ SimTypeLong(signed=True),
2232
+ SimTypeLong(signed=True),
2233
+ SimTypeLong(signed=True),
2234
+ SimTypeLong(signed=True),
2235
+ SimTypeLong(signed=True),
2236
+ SimTypeLong(signed=True),
2237
+ SimTypeLong(signed=True),
2238
+ SimTypeLong(signed=True),
2239
+ ],
2240
+ SimTypeLong(signed=True),
2241
+ ),
2242
+ "SetSecurityInfoExA": SimTypeFunction(
2243
+ [
2244
+ SimTypeLong(signed=True),
2245
+ SimTypeLong(signed=True),
2246
+ SimTypeLong(signed=True),
2247
+ SimTypeLong(signed=True),
2248
+ SimTypeLong(signed=True),
2249
+ SimTypeLong(signed=True),
2250
+ SimTypeLong(signed=True),
2251
+ SimTypeLong(signed=True),
2252
+ SimTypeLong(signed=True),
2253
+ ],
2254
+ SimTypeLong(signed=True),
2255
+ ),
2256
+ "SystemFunction001": SimTypeFunction(
2257
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2258
+ ),
2259
+ "UsePinForEncryptedFilesA": SimTypeFunction(
2260
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2261
+ ),
2262
+ "LsaQuerySecret": SimTypeFunction(
2263
+ [
2264
+ SimTypeLong(signed=True),
2265
+ SimTypeLong(signed=True),
2266
+ SimTypeLong(signed=True),
2267
+ SimTypeLong(signed=True),
2268
+ SimTypeLong(signed=True),
2269
+ ],
2270
+ SimTypeLong(signed=True),
2271
+ ),
2272
+ "LsaEnumeratePrivileges": SimTypeFunction(
2273
+ [
2274
+ SimTypeLong(signed=True),
2275
+ SimTypeLong(signed=True),
2276
+ SimTypeLong(signed=True),
2277
+ SimTypeLong(signed=True),
2278
+ SimTypeLong(signed=True),
2279
+ ],
2280
+ SimTypeLong(signed=True),
2281
+ ),
2282
+ "SystemFunction032": SimTypeFunction(
2283
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2284
+ ),
2285
+ "GetInformationCodeAuthzPolicyW": SimTypeFunction(
2286
+ [
2287
+ SimTypeLong(signed=True),
2288
+ SimTypeLong(signed=True),
2289
+ SimTypeLong(signed=True),
2290
+ SimTypeLong(signed=True),
2291
+ SimTypeLong(signed=True),
2292
+ SimTypeLong(signed=True),
2293
+ ],
2294
+ SimTypeLong(signed=True),
2295
+ ),
2296
+ "CredpEncodeSecret": SimTypeFunction(
2297
+ [
2298
+ SimTypeLong(signed=True),
2299
+ SimTypeLong(signed=True),
2300
+ SimTypeLong(signed=True),
2301
+ SimTypeLong(signed=True),
2302
+ SimTypeLong(signed=True),
2303
+ ],
2304
+ SimTypeLong(signed=True),
2305
+ ),
2306
+ "ElfOpenBackupEventLogW": SimTypeFunction(
2307
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2308
+ ),
2309
+ "IdentifyCodeAuthzLevelW": SimTypeFunction(
2310
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
2311
+ SimTypeLong(signed=True),
2312
+ ),
2313
+ "SystemFunction009": SimTypeFunction(
2314
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2315
+ ),
2316
+ "A_SHAUpdate": SimTypeFunction(
2317
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2318
+ ),
2319
+ "LsaDelete": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
2320
+ "ElfClearEventLogFileW": SimTypeFunction(
2321
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2322
+ ),
2323
+ "SetInformationCodeAuthzPolicyW": SimTypeFunction(
2324
+ [
2325
+ SimTypeLong(signed=True),
2326
+ SimTypeLong(signed=True),
2327
+ SimTypeLong(signed=True),
2328
+ SimTypeLong(signed=True),
2329
+ SimTypeLong(signed=True),
2330
+ ],
2331
+ SimTypeLong(signed=True),
2332
+ ),
2333
+ "I_ScQueryServiceConfig": SimTypeFunction(
2334
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2335
+ ),
2336
+ "WmiDevInstToInstanceNameW": SimTypeFunction(
2337
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
2338
+ SimTypeLong(signed=True),
2339
+ ),
2340
+ "SystemFunction022": SimTypeFunction(
2341
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2342
+ ),
2343
+ "WmiQueryAllDataW": SimTypeFunction(
2344
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2345
+ ),
2346
+ "WmiQuerySingleInstanceA": SimTypeFunction(
2347
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
2348
+ SimTypeLong(signed=True),
2349
+ ),
2350
+ "ElfOldestRecord": SimTypeFunction(
2351
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2352
+ ),
2353
+ "SystemFunction002": SimTypeFunction(
2354
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2355
+ ),
2356
+ "SetEntriesInAccessListW": SimTypeFunction(
2357
+ [
2358
+ SimTypeLong(signed=True),
2359
+ SimTypeLong(signed=True),
2360
+ SimTypeLong(signed=True),
2361
+ SimTypeLong(signed=True),
2362
+ SimTypeLong(signed=True),
2363
+ SimTypeLong(signed=True),
2364
+ ],
2365
+ SimTypeLong(signed=True),
2366
+ ),
2367
+ "LsaSetQuotasForAccount": SimTypeFunction(
2368
+ [SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2369
+ ),
2370
+ "CredReadByTokenHandle": SimTypeFunction(
2371
+ [
2372
+ SimTypeLong(signed=True),
2373
+ SimTypeLong(signed=True),
2374
+ SimTypeLong(signed=True),
2375
+ SimTypeLong(signed=True),
2376
+ SimTypeLong(signed=True),
2377
+ ],
2378
+ SimTypeLong(signed=True),
2379
+ ),
2380
+ "SystemFunction004": SimTypeFunction(
2381
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2382
+ ),
2383
+ "LsaICLookupNamesWithCreds": SimTypeFunction(
2384
+ [
2385
+ SimTypeLong(signed=True),
2386
+ SimTypeLong(signed=True),
2387
+ SimTypeLong(signed=True),
2388
+ SimTypeLong(signed=True),
2389
+ SimTypeLong(signed=True),
2390
+ SimTypeLong(signed=True),
2391
+ SimTypeLong(signed=True),
2392
+ SimTypeLong(signed=True),
2393
+ SimTypeLong(signed=True),
2394
+ SimTypeLong(signed=True),
2395
+ SimTypeLong(signed=True),
2396
+ SimTypeLong(signed=True),
2397
+ ],
2398
+ SimTypeLong(signed=True),
2399
+ ),
2400
+ "SystemFunction023": SimTypeFunction(
2401
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2402
+ ),
2403
+ "SystemFunction011": SimTypeFunction(
2404
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2405
+ ),
2406
+ "WmiNotificationRegistrationW": SimTypeFunction(
2407
+ [
2408
+ SimTypeLong(signed=True),
2409
+ SimTypeLong(signed=True),
2410
+ SimTypeLong(signed=True),
2411
+ SimTypeLong(signed=True),
2412
+ SimTypeLong(signed=True),
2413
+ ],
2414
+ SimTypeLong(signed=True),
2415
+ ),
2416
+ "SystemFunction021": SimTypeFunction(
2417
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
2418
+ ),
2419
+ "WmiReceiveNotificationsA": SimTypeFunction(
2420
+ [SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
2421
+ SimTypeLong(signed=True),
2422
+ ),
2423
+ "MD5Final": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
2424
+ }
2425
+
2426
+ for (prefix, lib, suffix), decls in missing_declarations.items():
2427
+ for func, proto in decls.items():
2428
+ parsed_cprotos[(prefix, lib, suffix)].append((func, proto, ""))
2429
+
2430
+ # Write to files
2431
+
2432
+ header = """# pylint:disable=line-too-long
2433
+ import logging
2434
+ from collections import OrderedDict
2435
+
2436
+ from ...sim_type import (SimTypeFunction,
2437
+ SimTypeShort,
2438
+ SimTypeInt,
2439
+ SimTypeLong,
2440
+ SimTypeLongLong,
2441
+ SimTypeDouble,
2442
+ SimTypeFloat,
2443
+ SimTypePointer,
2444
+ SimTypeChar,
2445
+ SimStruct,
2446
+ SimTypeArray,
2447
+ SimTypeBottom,
2448
+ SimUnion,
2449
+ SimTypeBool,
2450
+ SimTypeRef,
2451
+ )
2452
+ from ...calling_conventions import SimCCStdcall, SimCCMicrosoftAMD64
2453
+ from .. import SIM_PROCEDURES as P
2454
+ from . import SimLibrary
2455
+
2456
+
2457
+ _l = logging.getLogger(name=__name__)
2458
+
2459
+
2460
+ lib = SimLibrary()
2461
+ lib.type_collection_names = ["win32"]
2462
+ lib.set_default_cc("X86", SimCCStdcall)
2463
+ lib.set_default_cc("AMD64", SimCCMicrosoftAMD64)
2464
+ """
2465
+ footer = """ }
2466
+
2467
+ lib.set_prototypes(prototypes)
2468
+ """
2469
+
2470
+ # Dump function prototypes
2471
+
2472
+ for (prefix, libname, suffix), parsed_cprotos_per_lib in parsed_cprotos.items():
2473
+ filename = prefix + "_" + libname.replace(".", "_") + ".py"
2474
+ logging.debug("Writing to file %s...", filename)
2475
+ with open(filename, "w") as f:
2476
+ f.write(header)
2477
+ if (prefix, libname) == ("win32", "kernel32"):
2478
+ f.write(
2479
+ """lib.add_all_from_dict(P['win32'])
2480
+ lib.add_alias('EncodePointer', 'DecodePointer')
2481
+ lib.add_alias('GlobalAlloc', 'LocalAlloc')
2482
+
2483
+ lib.add('lstrcatA', P['libc']['strcat'])
2484
+ lib.add('lstrcmpA', P['libc']['strcmp'])
2485
+ lib.add('lstrcpyA', P['libc']['strcpy'])
2486
+ lib.add('lstrcpynA', P['libc']['strncpy'])
2487
+ lib.add('lstrlenA', P['libc']['strlen'])
2488
+ lib.add('lstrcmpW', P['libc']['wcscmp'])
2489
+ lib.add('lstrcmpiW', P['libc']['wcscasecmp'])
2490
+ """
2491
+ )
2492
+ elif (prefix, libname) == ("win32", "ntdll"):
2493
+ f.write(
2494
+ """lib.add('RtlEncodePointer', P['win32']['EncodePointer'])
2495
+ lib.add('RtlDecodePointer', P['win32']['EncodePointer'])
2496
+ lib.add('RtlAllocateHeap', P['win32']['HeapAlloc'])
2497
+ """
2498
+ )
2499
+ elif (prefix, libname) == ("win32", "user32"):
2500
+ f.write(
2501
+ """import archinfo
2502
+ from ...calling_conventions import SimCCCdecl
2503
+
2504
+ lib.add_all_from_dict(P['win_user32'])
2505
+ lib.add('wsprintfA', P['libc']['sprintf'], cc=SimCCCdecl(archinfo.ArchX86()))
2506
+ """
2507
+ )
2508
+ elif (prefix, libname) == ("wdk", "ntoskrnl"):
2509
+ f.write(
2510
+ """lib.add_all_from_dict(P["win32_kernel"])
2511
+ """
2512
+ )
2513
+
2514
+ if suffix:
2515
+ f.write(f'lib.set_library_names("{libname}.{suffix}")\n')
2516
+ else:
2517
+ f.write(f'lib.set_library_names("{libname}")\n')
2518
+ f.write("prototypes = \\\n {\n")
2519
+ f.write(parsedcprotos2py(parsed_cprotos_per_lib))
2520
+ f.write(footer)
2521
+
2522
+ # Dump the type collection
2523
+ with open("types_win32.py", "w") as f:
2524
+ f.write(
2525
+ """# pylint:disable=line-too-long
2526
+ from collections import OrderedDict
2527
+
2528
+ from angr.procedures.definitions import SimTypeCollection
2529
+ from angr.sim_type import SimTypeFunction, \
2530
+ SimTypeShort, SimTypeInt, SimTypeLong, SimTypeLongLong, SimTypeDouble, SimTypeFloat, \
2531
+ SimTypePointer, \
2532
+ SimTypeChar, \
2533
+ SimStruct, \
2534
+ SimTypeArray, \
2535
+ SimTypeBottom, \
2536
+ SimUnion, \
2537
+ SimTypeBool, \
2538
+ SimTypeRef
2539
+
2540
+ """
2541
+ )
2542
+ f.write(typelib.init_str())
2543
+
2544
+
2545
+ def main():
2546
+ _args = ArgumentParser(description="Build a typelib from win32json project")
2547
+ _args.add_argument("win32json_api_directory")
2548
+ _args.add_argument("-v", action="count", help="Increase logging verbosity. Can specify multiple times.")
2549
+ args = _args.parse_args()
2550
+ if args.v is not None:
2551
+ logging.root.setLevel(level=max(30 - (args.v * 10), 0))
2552
+ do_it(args.win32json_api_directory, None)
2553
+
2554
+
2555
+ if __name__ == "__main__":
2556
+ main()