contrast-agent 3.8.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.clang-format +5 -0
- data/.dockerignore +10 -0
- data/.gitignore +58 -0
- data/.gitmodules +6 -0
- data/.rspec +6 -0
- data/.simplecov +4 -0
- data/Gemfile +7 -0
- data/LICENSE.txt +12 -0
- data/Rakefile +15 -0
- data/exe/contrast_service +29 -0
- data/ext/build_funchook.rb +48 -0
- data/ext/cs__assess_active_record_named/cs__active_record_named.c +47 -0
- data/ext/cs__assess_active_record_named/cs__active_record_named.h +10 -0
- data/ext/cs__assess_active_record_named/extconf.rb +2 -0
- data/ext/cs__assess_array/cs__assess_array.c +38 -0
- data/ext/cs__assess_array/cs__assess_array.h +9 -0
- data/ext/cs__assess_array/extconf.rb +2 -0
- data/ext/cs__assess_basic_object/cs__assess_basic_object.c +50 -0
- data/ext/cs__assess_basic_object/cs__assess_basic_object.h +17 -0
- data/ext/cs__assess_basic_object/extconf.rb +2 -0
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +86 -0
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.h +34 -0
- data/ext/cs__assess_fiber_track/extconf.rb +2 -0
- data/ext/cs__assess_hash/cs__assess_hash.c +64 -0
- data/ext/cs__assess_hash/cs__assess_hash.h +24 -0
- data/ext/cs__assess_hash/extconf.rb +2 -0
- data/ext/cs__assess_kernel/cs__assess_kernel.c +36 -0
- data/ext/cs__assess_kernel/cs__assess_kernel.h +10 -0
- data/ext/cs__assess_kernel/extconf.rb +2 -0
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +47 -0
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.h +18 -0
- data/ext/cs__assess_marshal_module/extconf.rb +2 -0
- data/ext/cs__assess_module/cs__assess_module.c +78 -0
- data/ext/cs__assess_module/cs__assess_module.h +25 -0
- data/ext/cs__assess_module/extconf.rb +2 -0
- data/ext/cs__assess_regexp/cs__assess_regexp.c +48 -0
- data/ext/cs__assess_regexp/cs__assess_regexp.h +22 -0
- data/ext/cs__assess_regexp/extconf.rb +2 -0
- data/ext/cs__assess_regexp_track/cs__assess_regexp_track.c +63 -0
- data/ext/cs__assess_regexp_track/cs__assess_regexp_track.h +29 -0
- data/ext/cs__assess_regexp_track/extconf.rb +2 -0
- data/ext/cs__assess_string/cs__assess_string.c +38 -0
- data/ext/cs__assess_string/cs__assess_string.h +19 -0
- data/ext/cs__assess_string/extconf.rb +2 -0
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +31 -0
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.h +13 -0
- data/ext/cs__assess_string_interpolation26/extconf.rb +2 -0
- data/ext/cs__common/cs__common.c +60 -0
- data/ext/cs__common/cs__common.h +28 -0
- data/ext/cs__common/extconf.rb +20 -0
- data/ext/cs__contrast_patch/cs__contrast_patch.c +445 -0
- data/ext/cs__contrast_patch/cs__contrast_patch.h +196 -0
- data/ext/cs__contrast_patch/extconf.rb +2 -0
- data/ext/cs__protect_kernel/cs__protect_kernel.c +37 -0
- data/ext/cs__protect_kernel/cs__protect_kernel.h +11 -0
- data/ext/cs__protect_kernel/extconf.rb +2 -0
- data/ext/cs__scope/cs__scope.c +96 -0
- data/ext/cs__scope/cs__scope.h +33 -0
- data/ext/cs__scope/extconf.rb +2 -0
- data/ext/extconf_common.rb +49 -0
- data/funchook/LICENSE +360 -0
- data/funchook/Makefile +29 -0
- data/funchook/Makefile.in +29 -0
- data/funchook/README.md +121 -0
- data/funchook/appveyor.yml +42 -0
- data/funchook/autogen.sh +3 -0
- data/funchook/autom4te.cache/output.0 +4976 -0
- data/funchook/autom4te.cache/requests +78 -0
- data/funchook/autom4te.cache/traces.0 +364 -0
- data/funchook/config.guess +1530 -0
- data/funchook/config.log +490 -0
- data/funchook/config.status +1016 -0
- data/funchook/config.sub +1773 -0
- data/funchook/configure +4976 -0
- data/funchook/configure.ac +59 -0
- data/funchook/distorm/COPYING +26 -0
- data/funchook/distorm/MANIFEST +25 -0
- data/funchook/distorm/MANIFEST.in +4 -0
- data/funchook/distorm/README.md +12 -0
- data/funchook/distorm/disOps/disOps.py +795 -0
- data/funchook/distorm/disOps/x86db.py +404 -0
- data/funchook/distorm/disOps/x86header.py +247 -0
- data/funchook/distorm/disOps/x86sets.py +1664 -0
- data/funchook/distorm/examples/cs/TestdiStorm/Program.cs +79 -0
- data/funchook/distorm/examples/cs/TestdiStorm/Properties/AssemblyInfo.cs +36 -0
- data/funchook/distorm/examples/cs/TestdiStorm/TestdiStorm.csproj +69 -0
- data/funchook/distorm/examples/cs/distorm-net.sln +26 -0
- data/funchook/distorm/examples/cs/distorm-net/CodeInfo.cs +23 -0
- data/funchook/distorm/examples/cs/distorm-net/DecodedInst.cs +15 -0
- data/funchook/distorm/examples/cs/distorm-net/DecodedResult.cs +14 -0
- data/funchook/distorm/examples/cs/distorm-net/DecomposedInst.cs +36 -0
- data/funchook/distorm/examples/cs/distorm-net/DecomposedResult.cs +14 -0
- data/funchook/distorm/examples/cs/distorm-net/Opcodes.cs +1268 -0
- data/funchook/distorm/examples/cs/distorm-net/Opcodes.tt +37 -0
- data/funchook/distorm/examples/cs/distorm-net/Operand.cs +25 -0
- data/funchook/distorm/examples/cs/distorm-net/Properties/AssemblyInfo.cs +36 -0
- data/funchook/distorm/examples/cs/distorm-net/diStorm3.cs +411 -0
- data/funchook/distorm/examples/cs/distorm-net/distorm-net.csproj +80 -0
- data/funchook/distorm/examples/cs/readme +3 -0
- data/funchook/distorm/examples/ddk/README +48 -0
- data/funchook/distorm/examples/ddk/distorm.ini +11 -0
- data/funchook/distorm/examples/ddk/dummy.c +15 -0
- data/funchook/distorm/examples/ddk/main.c +91 -0
- data/funchook/distorm/examples/ddk/makefile +1 -0
- data/funchook/distorm/examples/ddk/sources +10 -0
- data/funchook/distorm/examples/java/Makefile +23 -0
- data/funchook/distorm/examples/java/distorm/src/Main.java +43 -0
- data/funchook/distorm/examples/java/distorm/src/diStorm3/CodeInfo.java +27 -0
- data/funchook/distorm/examples/java/distorm/src/diStorm3/DecodedInst.java +32 -0
- data/funchook/distorm/examples/java/distorm/src/diStorm3/DecodedResult.java +11 -0
- data/funchook/distorm/examples/java/distorm/src/diStorm3/DecomposedInst.java +89 -0
- data/funchook/distorm/examples/java/distorm/src/diStorm3/DecomposedResult.java +11 -0
- data/funchook/distorm/examples/java/distorm/src/diStorm3/OpcodeEnum.java +131 -0
- data/funchook/distorm/examples/java/distorm/src/diStorm3/Opcodes.java +1123 -0
- data/funchook/distorm/examples/java/distorm/src/diStorm3/Operand.java +24 -0
- data/funchook/distorm/examples/java/distorm/src/diStorm3/distorm3.java +41 -0
- data/funchook/distorm/examples/java/jdistorm.c +405 -0
- data/funchook/distorm/examples/java/jdistorm.h +40 -0
- data/funchook/distorm/examples/java/jdistorm.sln +20 -0
- data/funchook/distorm/examples/java/jdistorm.vcproj +208 -0
- data/funchook/distorm/examples/linux/Makefile +15 -0
- data/funchook/distorm/examples/linux/main.c +181 -0
- data/funchook/distorm/examples/tests/Makefile +15 -0
- data/funchook/distorm/examples/tests/main.cpp +42 -0
- data/funchook/distorm/examples/tests/main.py +66 -0
- data/funchook/distorm/examples/tests/test_distorm3.py +1672 -0
- data/funchook/distorm/examples/tests/tests.sln +20 -0
- data/funchook/distorm/examples/tests/tests.vcxproj +82 -0
- data/funchook/distorm/examples/tests/tests.vcxproj.filters +22 -0
- data/funchook/distorm/examples/win32/disasm.sln +25 -0
- data/funchook/distorm/examples/win32/disasm.vcxproj +201 -0
- data/funchook/distorm/examples/win32/disasm.vcxproj.filters +14 -0
- data/funchook/distorm/examples/win32/main.cpp +163 -0
- data/funchook/distorm/include/distorm.h +482 -0
- data/funchook/distorm/include/mnemonics.h +301 -0
- data/funchook/distorm/make/linux/Makefile +28 -0
- data/funchook/distorm/make/mac/Makefile +24 -0
- data/funchook/distorm/make/win32/cdistorm.vcxproj +239 -0
- data/funchook/distorm/make/win32/cdistorm.vcxproj.filters +80 -0
- data/funchook/distorm/make/win32/distorm.sln +25 -0
- data/funchook/distorm/make/win32/resource.h +14 -0
- data/funchook/distorm/make/win32/resource.rc +99 -0
- data/funchook/distorm/python/distorm3/__init__.py +957 -0
- data/funchook/distorm/python/distorm3/sample.py +51 -0
- data/funchook/distorm/setup.cfg +10 -0
- data/funchook/distorm/setup.py +266 -0
- data/funchook/distorm/src/config.h +169 -0
- data/funchook/distorm/src/decoder.c +641 -0
- data/funchook/distorm/src/decoder.h +33 -0
- data/funchook/distorm/src/distorm.c +413 -0
- data/funchook/distorm/src/instructions.c +597 -0
- data/funchook/distorm/src/instructions.h +463 -0
- data/funchook/distorm/src/insts.c +7939 -0
- data/funchook/distorm/src/insts.h +64 -0
- data/funchook/distorm/src/mnemonics.c +284 -0
- data/funchook/distorm/src/operands.c +1290 -0
- data/funchook/distorm/src/operands.h +28 -0
- data/funchook/distorm/src/prefix.c +368 -0
- data/funchook/distorm/src/prefix.h +64 -0
- data/funchook/distorm/src/textdefs.c +172 -0
- data/funchook/distorm/src/textdefs.h +57 -0
- data/funchook/distorm/src/wstring.c +47 -0
- data/funchook/distorm/src/wstring.h +35 -0
- data/funchook/distorm/src/x86defs.h +82 -0
- data/funchook/include/funchook.h +123 -0
- data/funchook/install-sh +527 -0
- data/funchook/src/Makefile +70 -0
- data/funchook/src/Makefile.in +70 -0
- data/funchook/src/__strerror.h +109 -0
- data/funchook/src/config.h +101 -0
- data/funchook/src/config.h.in +100 -0
- data/funchook/src/decoder.o +0 -0
- data/funchook/src/distorm.o +0 -0
- data/funchook/src/funchook.c +440 -0
- data/funchook/src/funchook.o +0 -0
- data/funchook/src/funchook_internal.h +155 -0
- data/funchook/src/funchook_io.c +182 -0
- data/funchook/src/funchook_io.h +64 -0
- data/funchook/src/funchook_io.o +0 -0
- data/funchook/src/funchook_syscall.S +134 -0
- data/funchook/src/funchook_syscall.o +0 -0
- data/funchook/src/funchook_unix.c +480 -0
- data/funchook/src/funchook_unix.o +0 -0
- data/funchook/src/funchook_windows.c +397 -0
- data/funchook/src/funchook_x86.c +622 -0
- data/funchook/src/funchook_x86.o +0 -0
- data/funchook/src/instructions.o +0 -0
- data/funchook/src/insts.o +0 -0
- data/funchook/src/libfunchook.so +0 -0
- data/funchook/src/mnemonics.o +0 -0
- data/funchook/src/operands.o +0 -0
- data/funchook/src/os_func.c +115 -0
- data/funchook/src/os_func.h +75 -0
- data/funchook/src/os_func.o +0 -0
- data/funchook/src/os_func_unix.c +94 -0
- data/funchook/src/os_func_unix.o +0 -0
- data/funchook/src/os_func_windows.c +32 -0
- data/funchook/src/prefix.o +0 -0
- data/funchook/src/printf_base.c +1688 -0
- data/funchook/src/printf_base.h +46 -0
- data/funchook/src/printf_base.o +0 -0
- data/funchook/src/textdefs.o +0 -0
- data/funchook/src/wstring.o +0 -0
- data/funchook/test/Makefile +43 -0
- data/funchook/test/Makefile.in +43 -0
- data/funchook/test/funchook_test +0 -0
- data/funchook/test/libfunchook_test.c +25 -0
- data/funchook/test/libfunchook_test.so +0 -0
- data/funchook/test/libfunchook_test2.c +18 -0
- data/funchook/test/suffix.list +600 -0
- data/funchook/test/test_main.c +430 -0
- data/funchook/test/test_main.o +0 -0
- data/funchook/test/x86_64_test.S +10 -0
- data/funchook/test/x86_64_test.o +0 -0
- data/funchook/test/x86_test.S +339 -0
- data/funchook/win32/config.h +1 -0
- data/funchook/win32/funchook.sln +52 -0
- data/funchook/win32/funchook.vcxproj +188 -0
- data/funchook/win32/funchook.vcxproj.filters +84 -0
- data/funchook/win32/funchook_test.vcxproj +170 -0
- data/funchook/win32/funchook_test.vcxproj.filters +22 -0
- data/funchook/win32/funchook_test_dll.vcxproj +184 -0
- data/funchook/win32/funchook_test_dll.vcxproj.filters +30 -0
- data/funchook/win32/funchook_test_exe.def +3 -0
- data/lib/contrast-agent.rb +8 -0
- data/lib/contrast.rb +57 -0
- data/lib/contrast/agent.rb +80 -0
- data/lib/contrast/agent/assess.rb +45 -0
- data/lib/contrast/agent/assess/adjusted_span.rb +25 -0
- data/lib/contrast/agent/assess/class_reverter.rb +82 -0
- data/lib/contrast/agent/assess/contrast_event.rb +398 -0
- data/lib/contrast/agent/assess/frozen_properties.rb +41 -0
- data/lib/contrast/agent/assess/insulator.rb +53 -0
- data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +78 -0
- data/lib/contrast/agent/assess/policy/patcher.rb +85 -0
- data/lib/contrast/agent/assess/policy/policy.rb +116 -0
- data/lib/contrast/agent/assess/policy/policy_node.rb +289 -0
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +44 -0
- data/lib/contrast/agent/assess/policy/preshift.rb +94 -0
- data/lib/contrast/agent/assess/policy/propagation_method.rb +260 -0
- data/lib/contrast/agent/assess/policy/propagation_node.rb +127 -0
- data/lib/contrast/agent/assess/policy/propagator.rb +35 -0
- data/lib/contrast/agent/assess/policy/propagator/append.rb +54 -0
- data/lib/contrast/agent/assess/policy/propagator/base.rb +37 -0
- data/lib/contrast/agent/assess/policy/propagator/center.rb +73 -0
- data/lib/contrast/agent/assess/policy/propagator/custom.rb +36 -0
- data/lib/contrast/agent/assess/policy/propagator/database_write.rb +62 -0
- data/lib/contrast/agent/assess/policy/propagator/insert.rb +55 -0
- data/lib/contrast/agent/assess/policy/propagator/keep.rb +26 -0
- data/lib/contrast/agent/assess/policy/propagator/next.rb +42 -0
- data/lib/contrast/agent/assess/policy/propagator/prepend.rb +50 -0
- data/lib/contrast/agent/assess/policy/propagator/remove.rb +76 -0
- data/lib/contrast/agent/assess/policy/propagator/replace.rb +27 -0
- data/lib/contrast/agent/assess/policy/propagator/reverse.rb +38 -0
- data/lib/contrast/agent/assess/policy/propagator/select.rb +86 -0
- data/lib/contrast/agent/assess/policy/propagator/splat.rb +60 -0
- data/lib/contrast/agent/assess/policy/propagator/split.rb +49 -0
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +169 -0
- data/lib/contrast/agent/assess/policy/propagator/trim.rb +81 -0
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +79 -0
- data/lib/contrast/agent/assess/policy/source_method.rb +209 -0
- data/lib/contrast/agent/assess/policy/source_node.rb +62 -0
- data/lib/contrast/agent/assess/policy/trigger_method.rb +209 -0
- data/lib/contrast/agent/assess/policy/trigger_node.rb +198 -0
- data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +77 -0
- data/lib/contrast/agent/assess/policy/trigger_validation/trigger_validation.rb +31 -0
- data/lib/contrast/agent/assess/policy/trigger_validation/xss_validator.rb +40 -0
- data/lib/contrast/agent/assess/properties.rb +392 -0
- data/lib/contrast/agent/assess/rule.rb +18 -0
- data/lib/contrast/agent/assess/rule/base.rb +72 -0
- data/lib/contrast/agent/assess/rule/csrf.rb +66 -0
- data/lib/contrast/agent/assess/rule/csrf/csrf_action.rb +28 -0
- data/lib/contrast/agent/assess/rule/csrf/csrf_applicator.rb +69 -0
- data/lib/contrast/agent/assess/rule/csrf/csrf_watcher.rb +132 -0
- data/lib/contrast/agent/assess/rule/provider.rb +21 -0
- data/lib/contrast/agent/assess/rule/provider/hardcoded_key.rb +62 -0
- data/lib/contrast/agent/assess/rule/provider/hardcoded_password.rb +73 -0
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +121 -0
- data/lib/contrast/agent/assess/rule/redos.rb +68 -0
- data/lib/contrast/agent/assess/rule/response_scanning_rule.rb +47 -0
- data/lib/contrast/agent/assess/rule/response_watcher.rb +36 -0
- data/lib/contrast/agent/assess/rule/watcher.rb +36 -0
- data/lib/contrast/agent/assess/tag.rb +151 -0
- data/lib/contrast/agent/at_exit_hook.rb +33 -0
- data/lib/contrast/agent/class_reopener.rb +195 -0
- data/lib/contrast/agent/deadzone/policy/deadzone_node.rb +26 -0
- data/lib/contrast/agent/deadzone/policy/policy.rb +57 -0
- data/lib/contrast/agent/disable_reaction.rb +24 -0
- data/lib/contrast/agent/exclusion_matcher.rb +190 -0
- data/lib/contrast/agent/feature_state.rb +379 -0
- data/lib/contrast/agent/inventory/policy/policy.rb +32 -0
- data/lib/contrast/agent/inventory/policy/trigger_node.rb +22 -0
- data/lib/contrast/agent/logger_manager.rb +116 -0
- data/lib/contrast/agent/middleware.rb +352 -0
- data/lib/contrast/agent/module_data.rb +16 -0
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +37 -0
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +58 -0
- data/lib/contrast/agent/patching/policy/method_policy.rb +94 -0
- data/lib/contrast/agent/patching/policy/module_policy.rb +116 -0
- data/lib/contrast/agent/patching/policy/patch.rb +312 -0
- data/lib/contrast/agent/patching/policy/patch_status.rb +192 -0
- data/lib/contrast/agent/patching/policy/patcher.rb +310 -0
- data/lib/contrast/agent/patching/policy/policy.rb +138 -0
- data/lib/contrast/agent/patching/policy/policy_node.rb +80 -0
- data/lib/contrast/agent/patching/policy/policy_unpatcher.rb +28 -0
- data/lib/contrast/agent/patching/policy/trigger_node.rb +81 -0
- data/lib/contrast/agent/protect/policy/policy.rb +37 -0
- data/lib/contrast/agent/protect/policy/trigger_node.rb +23 -0
- data/lib/contrast/agent/protect/rule.rb +58 -0
- data/lib/contrast/agent/protect/rule/base.rb +300 -0
- data/lib/contrast/agent/protect/rule/base_service.rb +88 -0
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +156 -0
- data/lib/contrast/agent/protect/rule/csrf.rb +118 -0
- data/lib/contrast/agent/protect/rule/csrf/csrf_evaluator.rb +103 -0
- data/lib/contrast/agent/protect/rule/csrf/csrf_token_injector.rb +85 -0
- data/lib/contrast/agent/protect/rule/default_scanner.rb +300 -0
- data/lib/contrast/agent/protect/rule/deserialization.rb +193 -0
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +80 -0
- data/lib/contrast/agent/protect/rule/no_sqli.rb +101 -0
- data/lib/contrast/agent/protect/rule/no_sqli/mongo_no_sql_scanner.rb +40 -0
- data/lib/contrast/agent/protect/rule/path_traversal.rb +143 -0
- data/lib/contrast/agent/protect/rule/sqli.rb +101 -0
- data/lib/contrast/agent/protect/rule/sqli/default_sql_scanner.rb +16 -0
- data/lib/contrast/agent/protect/rule/sqli/mysql_sql_scanner.rb +38 -0
- data/lib/contrast/agent/protect/rule/sqli/postgres_sql_scanner.rb +22 -0
- data/lib/contrast/agent/protect/rule/sqli/sqlite_sql_scanner.rb +19 -0
- data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +20 -0
- data/lib/contrast/agent/protect/rule/xss.rb +24 -0
- data/lib/contrast/agent/protect/rule/xxe.rb +120 -0
- data/lib/contrast/agent/protect/rule/xxe/entity_wrapper.rb +82 -0
- data/lib/contrast/agent/railtie.rb +30 -0
- data/lib/contrast/agent/reaction_processor.rb +47 -0
- data/lib/contrast/agent/request.rb +493 -0
- data/lib/contrast/agent/request_context.rb +225 -0
- data/lib/contrast/agent/require_state.rb +61 -0
- data/lib/contrast/agent/response.rb +215 -0
- data/lib/contrast/agent/rewriter.rb +244 -0
- data/lib/contrast/agent/scope.rb +28 -0
- data/lib/contrast/agent/service_heartbeat.rb +37 -0
- data/lib/contrast/agent/settings_state.rb +148 -0
- data/lib/contrast/agent/socket_client.rb +125 -0
- data/lib/contrast/agent/thread.rb +26 -0
- data/lib/contrast/agent/tracepoint_hook.rb +51 -0
- data/lib/contrast/agent/version.rb +8 -0
- data/lib/contrast/api.rb +17 -0
- data/lib/contrast/api/.gitkeep +0 -0
- data/lib/contrast/api/connection_status.rb +49 -0
- data/lib/contrast/api/socket.rb +43 -0
- data/lib/contrast/api/speedracer.rb +206 -0
- data/lib/contrast/api/tcp_socket.rb +31 -0
- data/lib/contrast/api/unix_socket.rb +25 -0
- data/lib/contrast/common_agent_configuration.rb +86 -0
- data/lib/contrast/components/agent.rb +85 -0
- data/lib/contrast/components/app_context.rb +188 -0
- data/lib/contrast/components/assess.rb +67 -0
- data/lib/contrast/components/config.rb +135 -0
- data/lib/contrast/components/contrast_service.rb +113 -0
- data/lib/contrast/components/heap_dump.rb +34 -0
- data/lib/contrast/components/interface.rb +178 -0
- data/lib/contrast/components/inventory.rb +23 -0
- data/lib/contrast/components/logger.rb +92 -0
- data/lib/contrast/components/protect.rb +38 -0
- data/lib/contrast/components/sampling.rb +41 -0
- data/lib/contrast/components/scope.rb +106 -0
- data/lib/contrast/components/settings.rb +140 -0
- data/lib/contrast/config.rb +33 -0
- data/lib/contrast/config/agent_configuration.rb +24 -0
- data/lib/contrast/config/application_configuration.rb +27 -0
- data/lib/contrast/config/assess_configuration.rb +22 -0
- data/lib/contrast/config/assess_rules_configuration.rb +18 -0
- data/lib/contrast/config/base_configuration.rb +105 -0
- data/lib/contrast/config/default_value.rb +16 -0
- data/lib/contrast/config/exception_configuration.rb +21 -0
- data/lib/contrast/config/heap_dump_configuration.rb +23 -0
- data/lib/contrast/config/inventory_configuration.rb +20 -0
- data/lib/contrast/config/logger_configuration.rb +20 -0
- data/lib/contrast/config/protect_configuration.rb +20 -0
- data/lib/contrast/config/protect_rule_configuration.rb +37 -0
- data/lib/contrast/config/protect_rules_configuration.rb +30 -0
- data/lib/contrast/config/root_configuration.rb +26 -0
- data/lib/contrast/config/ruby_configuration.rb +39 -0
- data/lib/contrast/config/sampling_configuration.rb +22 -0
- data/lib/contrast/config/server_configuration.rb +23 -0
- data/lib/contrast/config/service_configuration.rb +22 -0
- data/lib/contrast/configuration.rb +214 -0
- data/lib/contrast/core_extensions/assess.rb +51 -0
- data/lib/contrast/core_extensions/assess/array.rb +58 -0
- data/lib/contrast/core_extensions/assess/assess_extension.rb +145 -0
- data/lib/contrast/core_extensions/assess/basic_object.rb +15 -0
- data/lib/contrast/core_extensions/assess/erb.rb +42 -0
- data/lib/contrast/core_extensions/assess/exec_trigger.rb +48 -0
- data/lib/contrast/core_extensions/assess/fiber.rb +125 -0
- data/lib/contrast/core_extensions/assess/hash.rb +22 -0
- data/lib/contrast/core_extensions/assess/kernel.rb +95 -0
- data/lib/contrast/core_extensions/assess/module.rb +14 -0
- data/lib/contrast/core_extensions/assess/regexp.rb +206 -0
- data/lib/contrast/core_extensions/assess/string.rb +75 -0
- data/lib/contrast/core_extensions/assess/tilt_template_trigger.rb +73 -0
- data/lib/contrast/core_extensions/delegator.rb +14 -0
- data/lib/contrast/core_extensions/eval_trigger.rb +52 -0
- data/lib/contrast/core_extensions/inventory.rb +22 -0
- data/lib/contrast/core_extensions/inventory/datastores.rb +37 -0
- data/lib/contrast/core_extensions/module.rb +42 -0
- data/lib/contrast/core_extensions/object.rb +27 -0
- data/lib/contrast/core_extensions/protect.rb +20 -0
- data/lib/contrast/core_extensions/protect/applies_command_injection_rule.rb +70 -0
- data/lib/contrast/core_extensions/protect/applies_deserialization_rule.rb +58 -0
- data/lib/contrast/core_extensions/protect/applies_no_sqli_rule.rb +81 -0
- data/lib/contrast/core_extensions/protect/applies_path_traversal_rule.rb +119 -0
- data/lib/contrast/core_extensions/protect/applies_sqli_rule.rb +63 -0
- data/lib/contrast/core_extensions/protect/applies_xxe_rule.rb +141 -0
- data/lib/contrast/core_extensions/protect/kernel.rb +30 -0
- data/lib/contrast/core_extensions/protect/psych.rb +7 -0
- data/lib/contrast/core_extensions/thread.rb +31 -0
- data/lib/contrast/internal_exception.rb +8 -0
- data/lib/contrast/rails_extensions/assess/action_controller_inheritance.rb +48 -0
- data/lib/contrast/rails_extensions/assess/active_record.rb +32 -0
- data/lib/contrast/rails_extensions/assess/active_record_named.rb +61 -0
- data/lib/contrast/rails_extensions/assess/configuration.rb +26 -0
- data/lib/contrast/rails_extensions/buffer.rb +30 -0
- data/lib/contrast/rails_extensions/rack.rb +45 -0
- data/lib/contrast/security_exception.rb +14 -0
- data/lib/contrast/sinatra_extensions/assess/cookie.rb +26 -0
- data/lib/contrast/sinatra_extensions/inventory/sinatra_base.rb +59 -0
- data/lib/contrast/tasks/service.rb +95 -0
- data/lib/contrast/utils/assess/sampling_util.rb +96 -0
- data/lib/contrast/utils/assess/tracking_util.rb +39 -0
- data/lib/contrast/utils/boolean_util.rb +33 -0
- data/lib/contrast/utils/cache.rb +69 -0
- data/lib/contrast/utils/class_util.rb +58 -0
- data/lib/contrast/utils/comment_range.rb +19 -0
- data/lib/contrast/utils/data_store_util.rb +23 -0
- data/lib/contrast/utils/duck_utils.rb +58 -0
- data/lib/contrast/utils/env_configuration_item.rb +52 -0
- data/lib/contrast/utils/environment_util.rb +152 -0
- data/lib/contrast/utils/freeze_util.rb +36 -0
- data/lib/contrast/utils/gemfile_reader.rb +191 -0
- data/lib/contrast/utils/hash_digest.rb +148 -0
- data/lib/contrast/utils/heap_dump_util.rb +113 -0
- data/lib/contrast/utils/invalid_configuration_util.rb +88 -0
- data/lib/contrast/utils/inventory_util.rb +126 -0
- data/lib/contrast/utils/io_util.rb +61 -0
- data/lib/contrast/utils/object_share.rb +117 -0
- data/lib/contrast/utils/operating_environment.rb +38 -0
- data/lib/contrast/utils/os.rb +49 -0
- data/lib/contrast/utils/path_util.rb +151 -0
- data/lib/contrast/utils/performs_logging.rb +152 -0
- data/lib/contrast/utils/preflight_util.rb +13 -0
- data/lib/contrast/utils/prevent_serialization.rb +52 -0
- data/lib/contrast/utils/rack_assess_session_cookie.rb +104 -0
- data/lib/contrast/utils/rails_assess_configuration.rb +95 -0
- data/lib/contrast/utils/random_util.rb +22 -0
- data/lib/contrast/utils/resource_loader.rb +23 -0
- data/lib/contrast/utils/ruby_ast_rewriter.rb +74 -0
- data/lib/contrast/utils/scope_util.rb +99 -0
- data/lib/contrast/utils/service_response_util.rb +116 -0
- data/lib/contrast/utils/service_sender_util.rb +98 -0
- data/lib/contrast/utils/sha256_builder.rb +69 -0
- data/lib/contrast/utils/sinatra_helper.rb +49 -0
- data/lib/contrast/utils/stack_trace_utils.rb +209 -0
- data/lib/contrast/utils/string_utils.rb +72 -0
- data/lib/contrast/utils/tag_util.rb +139 -0
- data/lib/contrast/utils/thread_tracker.rb +54 -0
- data/lib/contrast/utils/timer.rb +78 -0
- data/resources/assess/policy.json +1673 -0
- data/resources/csrf/inject.js +44 -0
- data/resources/deadzone/policy.json +55 -0
- data/resources/factory-bot-spec/spec_helper.rb +30 -0
- data/resources/inventory/policy.json +110 -0
- data/resources/protect/policy.json +417 -0
- data/resources/rubocops/kernel/catch_cop.rb +37 -0
- data/resources/rubocops/kernel/require_cop.rb +37 -0
- data/resources/rubocops/kernel/require_relative_cop.rb +33 -0
- data/resources/rubocops/module/autoload_cop.rb +37 -0
- data/resources/rubocops/module/const_defined_cop.rb +37 -0
- data/resources/rubocops/module/const_get_cop.rb +37 -0
- data/resources/rubocops/module/const_set_cop.rb +37 -0
- data/resources/rubocops/module/constants_cop.rb +37 -0
- data/resources/rubocops/module/name_cop.rb +37 -0
- data/resources/rubocops/object/class_cop.rb +37 -0
- data/resources/rubocops/object/freeze_cop.rb +37 -0
- data/resources/rubocops/object/frozen_cop.rb +37 -0
- data/resources/rubocops/object/is_a_cop.rb +37 -0
- data/resources/rubocops/object/method_cop.rb +37 -0
- data/resources/rubocops/object/respond_to_cop.rb +37 -0
- data/resources/rubocops/object/singleton_class_cop.rb +37 -0
- data/resources/rubocops/regexp/spelling_cop.rb +44 -0
- data/resources/rubocops/thread/new_cop.rb +39 -0
- data/resources/ruby-spec/ancestors_spec.rb +70 -0
- data/resources/ruby-spec/modulo_spec.rb +831 -0
- data/resources/ruby-spec/parameters_spec.rb +261 -0
- data/resources/ruby-spec/ruby_spec_spec_helper.rb +35 -0
- data/resources/test_marker.txt +1 -0
- data/ruby-agent.gemspec +129 -0
- data/service_executables/.gitkeep +0 -0
- data/service_executables/VERSION +1 -0
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
- metadata +945 -0
@@ -0,0 +1,28 @@
|
|
1
|
+
/*
|
2
|
+
operands.h
|
3
|
+
|
4
|
+
diStorm3 - Powerful disassembler for X86/AMD64
|
5
|
+
http://ragestorm.net/distorm/
|
6
|
+
distorm at gmail dot com
|
7
|
+
Copyright (C) 2003-2016 Gil Dabah
|
8
|
+
This library is licensed under the BSD license. See the file COPYING.
|
9
|
+
*/
|
10
|
+
|
11
|
+
|
12
|
+
#ifndef OPERANDS_H
|
13
|
+
#define OPERANDS_H
|
14
|
+
|
15
|
+
#include "config.h"
|
16
|
+
#include "decoder.h"
|
17
|
+
#include "prefix.h"
|
18
|
+
#include "instructions.h"
|
19
|
+
|
20
|
+
|
21
|
+
extern uint32_t _REGISTERTORCLASS[];
|
22
|
+
|
23
|
+
int operands_extract(_CodeInfo* ci, _DInst* di, _InstInfo* ii,
|
24
|
+
_iflags instFlags, _OpType type, _OperandNumberType opNum,
|
25
|
+
unsigned int modrm, _PrefixState* ps, _DecodeType effOpSz,
|
26
|
+
_DecodeType effAdrSz, int* lockableInstruction);
|
27
|
+
|
28
|
+
#endif /* OPERANDS_H */
|
@@ -0,0 +1,368 @@
|
|
1
|
+
/*
|
2
|
+
prefix.c
|
3
|
+
|
4
|
+
diStorm3 - Powerful disassembler for X86/AMD64
|
5
|
+
http://ragestorm.net/distorm/
|
6
|
+
distorm at gmail dot com
|
7
|
+
Copyright (C) 2003-2016 Gil Dabah
|
8
|
+
This library is licensed under the BSD license. See the file COPYING.
|
9
|
+
*/
|
10
|
+
|
11
|
+
|
12
|
+
#include "prefix.h"
|
13
|
+
|
14
|
+
#include "x86defs.h"
|
15
|
+
#include "instructions.h"
|
16
|
+
#include "../include/mnemonics.h"
|
17
|
+
|
18
|
+
|
19
|
+
/*
|
20
|
+
* The main purpose of this module is to keep track of all kind of prefixes a single instruction may have.
|
21
|
+
* The problem is that a single instruction may have up to six different prefix-types.
|
22
|
+
* That's why I have to detect such cases and drop those excess prefixes.
|
23
|
+
*/
|
24
|
+
|
25
|
+
int prefixes_is_valid(unsigned int ch, _DecodeType dt)
|
26
|
+
{
|
27
|
+
switch (ch) {
|
28
|
+
/* for i in xrange(0x40, 0x50): print "case 0x%2x:" % i */
|
29
|
+
case 0x40: /* REX: */
|
30
|
+
case 0x41:
|
31
|
+
case 0x42:
|
32
|
+
case 0x43:
|
33
|
+
case 0x44:
|
34
|
+
case 0x45:
|
35
|
+
case 0x46:
|
36
|
+
case 0x47:
|
37
|
+
case 0x48:
|
38
|
+
case 0x49:
|
39
|
+
case 0x4a:
|
40
|
+
case 0x4b:
|
41
|
+
case 0x4c:
|
42
|
+
case 0x4d:
|
43
|
+
case 0x4e:
|
44
|
+
case 0x4f: return (dt == Decode64Bits);
|
45
|
+
case PREFIX_LOCK: return TRUE;
|
46
|
+
case PREFIX_REPNZ: return TRUE;
|
47
|
+
case PREFIX_REP: return TRUE;
|
48
|
+
case PREFIX_CS: return TRUE;
|
49
|
+
case PREFIX_SS: return TRUE;
|
50
|
+
case PREFIX_DS: return TRUE;
|
51
|
+
case PREFIX_ES: return TRUE;
|
52
|
+
case PREFIX_FS: return TRUE;
|
53
|
+
case PREFIX_GS: return TRUE;
|
54
|
+
case PREFIX_OP_SIZE: return TRUE;
|
55
|
+
case PREFIX_ADDR_SIZE: return TRUE;
|
56
|
+
/* The VEXs might be false positives, the decode_perfixes will determine for sure. */
|
57
|
+
case PREFIX_VEX2b: /* VEX is supported for all modes, because 16 bits Pmode is included. */
|
58
|
+
case PREFIX_VEX3b: return TRUE;
|
59
|
+
}
|
60
|
+
return FALSE;
|
61
|
+
}
|
62
|
+
|
63
|
+
/* Ignore a specific prefix type. */
|
64
|
+
void prefixes_ignore(_PrefixState* ps, _PrefixIndexer pi)
|
65
|
+
{
|
66
|
+
/*
|
67
|
+
* If that type of prefix appeared already, set the bit of that *former* prefix.
|
68
|
+
* Anyway, set the new index of that prefix type to the current index, so next time we know its position.
|
69
|
+
*/
|
70
|
+
if (ps->pfxIndexer[pi] != PFXIDX_NONE) ps->unusedPrefixesMask |= (1 << ps->pfxIndexer[pi]);
|
71
|
+
}
|
72
|
+
|
73
|
+
/* Ignore all prefix. */
|
74
|
+
void prefixes_ignore_all(_PrefixState* ps)
|
75
|
+
{
|
76
|
+
int i;
|
77
|
+
for (i = 0; i < PFXIDX_MAX; i++)
|
78
|
+
prefixes_ignore(ps, i);
|
79
|
+
}
|
80
|
+
|
81
|
+
/* Calculates which prefixes weren't used and accordingly sets the bits in the unusedPrefixesMask. */
|
82
|
+
uint16_t prefixes_set_unused_mask(_PrefixState* ps)
|
83
|
+
{
|
84
|
+
/*
|
85
|
+
* The decodedPrefixes represents the prefixes that were *read* from the binary stream for the instruction.
|
86
|
+
* The usedPrefixes represents the prefixes that were actually used by the instruction in the *decode* phase.
|
87
|
+
* Xoring between the two will result in a 'diff' which returns the prefixes that were read
|
88
|
+
* from the stream *and* that were never used in the actual decoding.
|
89
|
+
*
|
90
|
+
* Only one prefix per type can be set in decodedPrefixes from the stream.
|
91
|
+
* Therefore it's enough to check each type once and set the flag accordingly.
|
92
|
+
* That's why we had to book-keep each prefix type and its position.
|
93
|
+
* So now we know which bits we need to set exactly in the mask.
|
94
|
+
*/
|
95
|
+
_iflags unusedPrefixesDiff = ps->decodedPrefixes ^ ps->usedPrefixes;
|
96
|
+
|
97
|
+
/* Examine unused prefixes by type: */
|
98
|
+
/*
|
99
|
+
* About REX: it might be set in the diff although it was never in the stream itself.
|
100
|
+
* This is because the vrex is shared between VEX and REX and some places flag it as REX usage, while
|
101
|
+
* we were really decoding an AVX instruction.
|
102
|
+
* It's not a big problem, because the prefixes_ignore func will ignore it anyway,
|
103
|
+
* since it wasn't seen earlier. But it's important to know this.
|
104
|
+
*/
|
105
|
+
if (unusedPrefixesDiff & INST_PRE_REX) prefixes_ignore(ps, PFXIDX_REX);
|
106
|
+
if (unusedPrefixesDiff & INST_PRE_SEGOVRD_MASK) prefixes_ignore(ps, PFXIDX_SEG);
|
107
|
+
if (unusedPrefixesDiff & INST_PRE_LOKREP_MASK) prefixes_ignore(ps, PFXIDX_LOREP);
|
108
|
+
if (unusedPrefixesDiff & INST_PRE_OP_SIZE) prefixes_ignore(ps, PFXIDX_OP_SIZE);
|
109
|
+
if (unusedPrefixesDiff & INST_PRE_ADDR_SIZE) prefixes_ignore(ps, PFXIDX_ADRS);
|
110
|
+
/* If a VEX instruction was found, its prefix is considered as used, therefore no point for checking for it. */
|
111
|
+
|
112
|
+
return ps->unusedPrefixesMask;
|
113
|
+
}
|
114
|
+
|
115
|
+
/*
|
116
|
+
* Mark a prefix as unused, and bookkeep where we last saw this same type,
|
117
|
+
* because in the future we might want to disable it too.
|
118
|
+
*/
|
119
|
+
_INLINE_ void prefixes_track_unused(_PrefixState* ps, int index, _PrefixIndexer pi)
|
120
|
+
{
|
121
|
+
prefixes_ignore(ps, pi);
|
122
|
+
/* Book-keep the current index for this type. */
|
123
|
+
ps->pfxIndexer[pi] = index;
|
124
|
+
}
|
125
|
+
|
126
|
+
/*
|
127
|
+
* Read as many prefixes as possible, up to 15 bytes, and halt when we encounter non-prefix byte.
|
128
|
+
* This algorithm tries to imitate a real processor, where the same prefix can appear a few times, etc.
|
129
|
+
* The tiny complexity is that we want to know when a prefix was superfluous and mark any copy of it as unused.
|
130
|
+
* Note that the last prefix of its type will be considered as used, and all the others (of same type) before it as unused.
|
131
|
+
*/
|
132
|
+
void prefixes_decode(const uint8_t* code, int codeLen, _PrefixState* ps, _DecodeType dt)
|
133
|
+
{
|
134
|
+
int index, done;
|
135
|
+
uint8_t vex;
|
136
|
+
|
137
|
+
/*
|
138
|
+
* First thing to do, scan for prefixes, there are six types of prefixes.
|
139
|
+
* There may be up to six prefixes before a single instruction, not the same type, no special order,
|
140
|
+
* except REX/VEX must precede immediately the first opcode byte.
|
141
|
+
* BTW - This is the reason why I didn't make the REP prefixes part of the instructions (STOS/SCAS/etc).
|
142
|
+
*
|
143
|
+
* Another thing, the instruction maximum size is 15 bytes, thus if we read more than 15 bytes, we will halt.
|
144
|
+
*
|
145
|
+
* We attach all prefixes to the next instruction, there might be two or more occurrences from the same prefix.
|
146
|
+
* Also, since VEX can be allowed only once we will test it separately.
|
147
|
+
*/
|
148
|
+
for (index = 0, done = FALSE;
|
149
|
+
(codeLen > 0) && (code - ps->start < INST_MAXIMUM_SIZE);
|
150
|
+
code++, codeLen--, index++) {
|
151
|
+
/*
|
152
|
+
NOTE: AMD treat lock/rep as two different groups... But I am based on Intel.
|
153
|
+
|
154
|
+
- Lock and Repeat:
|
155
|
+
- 0xF0 � LOCK
|
156
|
+
- 0xF2 � REPNE/REPNZ
|
157
|
+
- 0xF3 - REP/REPE/REPZ
|
158
|
+
- Segment Override:
|
159
|
+
- 0x2E - CS
|
160
|
+
- 0x36 - SS
|
161
|
+
- 0x3E - DS
|
162
|
+
- 0x26 - ES
|
163
|
+
- 0x64 - FS
|
164
|
+
- 0x65 - GS
|
165
|
+
- Operand-Size Override: 0x66, switching default size.
|
166
|
+
- Address-Size Override: 0x67, switching default size.
|
167
|
+
|
168
|
+
64 Bits:
|
169
|
+
- REX: 0x40 - 0x4f, extends register access.
|
170
|
+
- 2 Bytes VEX: 0xc4
|
171
|
+
- 3 Bytes VEX: 0xc5
|
172
|
+
32 Bits:
|
173
|
+
- 2 Bytes VEX: 0xc4 11xx-xxxx
|
174
|
+
- 3 Bytes VEX: 0xc5 11xx-xxxx
|
175
|
+
*/
|
176
|
+
|
177
|
+
/* Examine what type of prefix we got. */
|
178
|
+
switch (*code)
|
179
|
+
{
|
180
|
+
/* REX type, 64 bits decoding mode only: */
|
181
|
+
case 0x40:
|
182
|
+
case 0x41:
|
183
|
+
case 0x42:
|
184
|
+
case 0x43:
|
185
|
+
case 0x44:
|
186
|
+
case 0x45:
|
187
|
+
case 0x46:
|
188
|
+
case 0x47:
|
189
|
+
case 0x48:
|
190
|
+
case 0x49:
|
191
|
+
case 0x4a:
|
192
|
+
case 0x4b:
|
193
|
+
case 0x4c:
|
194
|
+
case 0x4d:
|
195
|
+
case 0x4e:
|
196
|
+
case 0x4f:
|
197
|
+
if (dt == Decode64Bits) {
|
198
|
+
ps->decodedPrefixes |= INST_PRE_REX;
|
199
|
+
ps->vrex = *code & 0xf; /* Keep only BXRW. */
|
200
|
+
ps->rexPos = code;
|
201
|
+
ps->prefixExtType = PET_REX;
|
202
|
+
prefixes_track_unused(ps, index, PFXIDX_REX);
|
203
|
+
} else done = TRUE; /* If we are not in 64 bits mode, it's an instruction, then halt. */
|
204
|
+
break;
|
205
|
+
|
206
|
+
/* LOCK and REPx type: */
|
207
|
+
case PREFIX_LOCK:
|
208
|
+
ps->decodedPrefixes |= INST_PRE_LOCK;
|
209
|
+
prefixes_track_unused(ps, index, PFXIDX_LOREP);
|
210
|
+
break;
|
211
|
+
case PREFIX_REPNZ:
|
212
|
+
ps->decodedPrefixes |= INST_PRE_REPNZ;
|
213
|
+
prefixes_track_unused(ps, index, PFXIDX_LOREP);
|
214
|
+
break;
|
215
|
+
case PREFIX_REP:
|
216
|
+
ps->decodedPrefixes |= INST_PRE_REP;
|
217
|
+
prefixes_track_unused(ps, index, PFXIDX_LOREP);
|
218
|
+
break;
|
219
|
+
|
220
|
+
/* Seg Overide type: */
|
221
|
+
case PREFIX_CS:
|
222
|
+
ps->decodedPrefixes |= INST_PRE_CS;
|
223
|
+
prefixes_track_unused(ps, index, PFXIDX_SEG);
|
224
|
+
break;
|
225
|
+
case PREFIX_SS:
|
226
|
+
ps->decodedPrefixes |= INST_PRE_SS;
|
227
|
+
prefixes_track_unused(ps, index, PFXIDX_SEG);
|
228
|
+
break;
|
229
|
+
case PREFIX_DS:
|
230
|
+
ps->decodedPrefixes |= INST_PRE_DS;
|
231
|
+
prefixes_track_unused(ps, index, PFXIDX_SEG);
|
232
|
+
break;
|
233
|
+
case PREFIX_ES:
|
234
|
+
ps->decodedPrefixes |= INST_PRE_ES;
|
235
|
+
prefixes_track_unused(ps, index, PFXIDX_SEG);
|
236
|
+
break;
|
237
|
+
case PREFIX_FS:
|
238
|
+
ps->decodedPrefixes |= INST_PRE_FS;
|
239
|
+
prefixes_track_unused(ps, index, PFXIDX_SEG);
|
240
|
+
break;
|
241
|
+
case PREFIX_GS:
|
242
|
+
ps->decodedPrefixes |= INST_PRE_GS;
|
243
|
+
prefixes_track_unused(ps, index, PFXIDX_SEG);
|
244
|
+
break;
|
245
|
+
|
246
|
+
/* Op Size type: */
|
247
|
+
case PREFIX_OP_SIZE:
|
248
|
+
ps->decodedPrefixes |= INST_PRE_OP_SIZE;
|
249
|
+
prefixes_track_unused(ps, index, PFXIDX_OP_SIZE);
|
250
|
+
break;
|
251
|
+
|
252
|
+
/* Addr Size type: */
|
253
|
+
case PREFIX_ADDR_SIZE:
|
254
|
+
ps->decodedPrefixes |= INST_PRE_ADDR_SIZE;
|
255
|
+
prefixes_track_unused(ps, index, PFXIDX_ADRS);
|
256
|
+
break;
|
257
|
+
|
258
|
+
/* Non-prefix byte now, so break 2. */
|
259
|
+
default: done = TRUE; break;
|
260
|
+
}
|
261
|
+
if (done) break;
|
262
|
+
}
|
263
|
+
|
264
|
+
/* 2 Bytes VEX: */
|
265
|
+
if ((codeLen >= 2) &&
|
266
|
+
(*code == PREFIX_VEX2b) &&
|
267
|
+
((code - ps->start) <= INST_MAXIMUM_SIZE - 2)) {
|
268
|
+
/*
|
269
|
+
* In 32 bits the second byte has to be in the special range of Mod=11.
|
270
|
+
* Otherwise it might be a normal LDS instruction.
|
271
|
+
*/
|
272
|
+
if ((dt == Decode64Bits) || (*(code + 1) >= INST_DIVIDED_MODRM)) {
|
273
|
+
ps->vexPos = code + 1;
|
274
|
+
ps->decodedPrefixes |= INST_PRE_VEX;
|
275
|
+
ps->prefixExtType = PET_VEX2BYTES;
|
276
|
+
|
277
|
+
/*
|
278
|
+
* VEX 1 byte bits:
|
279
|
+
* |7-6--3-2-10|
|
280
|
+
* |R|vvvv|L|pp|
|
281
|
+
* |-----------|
|
282
|
+
*/
|
283
|
+
|
284
|
+
/* -- Convert from VEX prefix to VREX flags -- */
|
285
|
+
vex = *ps->vexPos;
|
286
|
+
if (~vex & 0x80 && dt == Decode64Bits) ps->vrex |= PREFIX_EX_R; /* Convert VEX.R. */
|
287
|
+
if (vex & 4) ps->vrex |= PREFIX_EX_L; /* Convert VEX.L. */
|
288
|
+
|
289
|
+
code += 2;
|
290
|
+
}
|
291
|
+
}
|
292
|
+
|
293
|
+
/* 3 Bytes VEX: */
|
294
|
+
if ((codeLen >= 3) &&
|
295
|
+
(*code == PREFIX_VEX3b) &&
|
296
|
+
((code - ps->start) <= INST_MAXIMUM_SIZE - 3) &&
|
297
|
+
(~ps->decodedPrefixes & INST_PRE_VEX)) {
|
298
|
+
/*
|
299
|
+
* In 32 bits the second byte has to be in the special range of Mod=11.
|
300
|
+
* Otherwise it might be a normal LES instruction.
|
301
|
+
* And we don't care now about the 3rd byte.
|
302
|
+
*/
|
303
|
+
if ((dt == Decode64Bits) || (*(code + 1) >= INST_DIVIDED_MODRM)) {
|
304
|
+
ps->vexPos = code + 1;
|
305
|
+
ps->decodedPrefixes |= INST_PRE_VEX;
|
306
|
+
ps->prefixExtType = PET_VEX3BYTES;
|
307
|
+
|
308
|
+
/*
|
309
|
+
* VEX first and second bytes:
|
310
|
+
* |7-6-5-4----0| |7-6--3-2-10|
|
311
|
+
* |R|X|B|m-mmmm| |W|vvvv|L|pp|
|
312
|
+
* |------------| |-----------|
|
313
|
+
*/
|
314
|
+
|
315
|
+
/* -- Convert from VEX prefix to VREX flags -- */
|
316
|
+
vex = *ps->vexPos;
|
317
|
+
ps->vrex |= ((~vex >> 5) & 0x7); /* Shift and invert VEX.R/X/B to their place */
|
318
|
+
vex = *(ps->vexPos + 1);
|
319
|
+
if (vex & 4) ps->vrex |= PREFIX_EX_L; /* Convert VEX.L. */
|
320
|
+
if (vex & 0x80) ps->vrex |= PREFIX_EX_W; /* Convert VEX.W. */
|
321
|
+
|
322
|
+
/* Clear some flags if the mode isn't 64 bits. */
|
323
|
+
if (dt != Decode64Bits) ps->vrex &= ~(PREFIX_EX_B | PREFIX_EX_X | PREFIX_EX_R | PREFIX_EX_W);
|
324
|
+
|
325
|
+
code += 3;
|
326
|
+
}
|
327
|
+
}
|
328
|
+
|
329
|
+
/*
|
330
|
+
* Save last byte scanned address, so the decoder could keep on scanning from this point and on and on and on.
|
331
|
+
* In addition the decoder is able to know that the last byte could lead to MMX/SSE instructions (preceding REX if exists).
|
332
|
+
*/
|
333
|
+
ps->last = code; /* ps->last points to an opcode byte. */
|
334
|
+
}
|
335
|
+
|
336
|
+
/*
|
337
|
+
* For every memory-indirection operand we want to set its corresponding default segment.
|
338
|
+
* If the segment is being overrided, we need to see whether we use it or not.
|
339
|
+
* We will use it only if it's not the default one already.
|
340
|
+
*/
|
341
|
+
void prefixes_use_segment(_iflags defaultSeg, _PrefixState* ps, _DecodeType dt, _DInst* di)
|
342
|
+
{
|
343
|
+
_iflags flags = 0;
|
344
|
+
if (dt == Decode64Bits) flags = ps->decodedPrefixes & INST_PRE_SEGOVRD_MASK64;
|
345
|
+
else flags = ps->decodedPrefixes & INST_PRE_SEGOVRD_MASK;
|
346
|
+
|
347
|
+
if ((flags == 0) || (flags == defaultSeg)) {
|
348
|
+
flags = defaultSeg;
|
349
|
+
di->segment |= SEGMENT_DEFAULT;
|
350
|
+
} else if (flags != defaultSeg) {
|
351
|
+
/* Use it only if it's non-default segment. */
|
352
|
+
ps->usedPrefixes |= flags;
|
353
|
+
}
|
354
|
+
|
355
|
+
/* ASSERT: R_XX must be below 128. */
|
356
|
+
switch (flags)
|
357
|
+
{
|
358
|
+
case INST_PRE_ES: di->segment |= R_ES; break;
|
359
|
+
case INST_PRE_CS: di->segment |= R_CS; break;
|
360
|
+
case INST_PRE_SS: di->segment |= R_SS; break;
|
361
|
+
case INST_PRE_DS: di->segment |= R_DS; break;
|
362
|
+
case INST_PRE_FS: di->segment |= R_FS; break;
|
363
|
+
case INST_PRE_GS: di->segment |= R_GS; break;
|
364
|
+
}
|
365
|
+
|
366
|
+
/* If it's one of the CS,SS,DS,ES and the mode is 64 bits, set segment it to none, since it's ignored. */
|
367
|
+
if ((dt == Decode64Bits) && (flags & INST_PRE_SEGOVRD_MASK32)) di->segment = R_NONE;
|
368
|
+
}
|
@@ -0,0 +1,64 @@
|
|
1
|
+
/*
|
2
|
+
prefix.h
|
3
|
+
|
4
|
+
diStorm3 - Powerful disassembler for X86/AMD64
|
5
|
+
http://ragestorm.net/distorm/
|
6
|
+
distorm at gmail dot com
|
7
|
+
Copyright (C) 2003-2016 Gil Dabah
|
8
|
+
This library is licensed under the BSD license. See the file COPYING.
|
9
|
+
*/
|
10
|
+
|
11
|
+
|
12
|
+
#ifndef PREFIX_H
|
13
|
+
#define PREFIX_H
|
14
|
+
|
15
|
+
#include "config.h"
|
16
|
+
#include "decoder.h"
|
17
|
+
|
18
|
+
|
19
|
+
/* Specifies the type of the extension prefix, such as: REX, 2 bytes VEX, 3 bytes VEX. */
|
20
|
+
typedef enum {PET_NONE = 0, PET_REX, PET_VEX2BYTES, PET_VEX3BYTES} _PrefixExtType;
|
21
|
+
|
22
|
+
/* Specifies an index into a table of prefixes by their type. */
|
23
|
+
typedef enum {PFXIDX_NONE = -1, PFXIDX_REX, PFXIDX_LOREP, PFXIDX_SEG, PFXIDX_OP_SIZE, PFXIDX_ADRS, PFXIDX_MAX} _PrefixIndexer;
|
24
|
+
|
25
|
+
/*
|
26
|
+
* This holds the prefixes state for the current instruction we decode.
|
27
|
+
* decodedPrefixes includes all specific prefixes that the instruction got.
|
28
|
+
* start is a pointer to the first prefix to take into account.
|
29
|
+
* last is a pointer to the last byte we scanned.
|
30
|
+
* Other pointers are used to keep track of prefixes positions and help us know if they appeared already and where.
|
31
|
+
*/
|
32
|
+
typedef struct {
|
33
|
+
_iflags decodedPrefixes, usedPrefixes;
|
34
|
+
const uint8_t *start, *last, *vexPos, *rexPos;
|
35
|
+
_PrefixExtType prefixExtType;
|
36
|
+
uint16_t unusedPrefixesMask;
|
37
|
+
/* Indicates whether the operand size prefix (0x66) was used as a mandatory prefix. */
|
38
|
+
int isOpSizeMandatory;
|
39
|
+
/* If VEX prefix is used, store the VEX.vvvv field. */
|
40
|
+
unsigned int vexV;
|
41
|
+
/* The fields B/X/R/W/L of REX and VEX are stored together in this byte. */
|
42
|
+
unsigned int vrex;
|
43
|
+
|
44
|
+
/* !! Make sure pfxIndexer is LAST! Otherwise memset won't work well with it. !! */
|
45
|
+
|
46
|
+
/* Holds the offset to the prefix byte by its type. */
|
47
|
+
int pfxIndexer[PFXIDX_MAX];
|
48
|
+
} _PrefixState;
|
49
|
+
|
50
|
+
/*
|
51
|
+
* Intel supports 6 types of prefixes, whereas AMD supports 5 types (lock is seperated from rep/nz).
|
52
|
+
* REX is the fifth prefix type, this time I'm based on AMD64.
|
53
|
+
* VEX is the 6th, though it can't be repeated.
|
54
|
+
*/
|
55
|
+
#define MAX_PREFIXES (5)
|
56
|
+
|
57
|
+
int prefixes_is_valid(unsigned int ch, _DecodeType dt);
|
58
|
+
void prefixes_ignore(_PrefixState* ps, _PrefixIndexer pi);
|
59
|
+
void prefixes_ignore_all(_PrefixState* ps);
|
60
|
+
uint16_t prefixes_set_unused_mask(_PrefixState* ps);
|
61
|
+
void prefixes_decode(const uint8_t* code, int codeLen, _PrefixState* ps, _DecodeType dt);
|
62
|
+
void prefixes_use_segment(_iflags defaultSeg, _PrefixState* ps, _DecodeType dt, _DInst* di);
|
63
|
+
|
64
|
+
#endif /* PREFIX_H */
|