├── README.md ├── ida_plugin └── idataint.py ├── sample ├── libcms │ ├── angr_encry_dword_2.py │ ├── libcms.idb │ ├── libcms.so │ └── taint_dword_2.txt └── tmp │ ├── angr_tmp.py │ ├── tmp │ ├── tmp.c │ ├── tmp.idb │ ├── tmp_ir.txt │ └── tmp_ir_taint.txt └── taint-angr ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── angr ├── __init__.py ├── analyses │ ├── __init__.py │ ├── analysis.py │ ├── backward_slice.py │ ├── binary_optimizer.py │ ├── bindiff.py │ ├── boyscout.py │ ├── callee_cleanup_finder.py │ ├── calling_convention.py │ ├── cdg.py │ ├── cfg │ │ ├── __init__.py │ │ ├── cfb.py │ │ ├── cfg.py │ │ ├── cfg_arch_options.py │ │ ├── cfg_base.py │ │ ├── cfg_emulated.py │ │ ├── cfg_fast.py │ │ ├── cfg_job_base.py │ │ ├── cfg_node.py │ │ ├── cfg_utils.py │ │ ├── indirect_jump_resolvers │ │ │ ├── __init__.py │ │ │ ├── default_resolvers.py │ │ │ ├── jumptable.py │ │ │ ├── mips_elf_fast.py │ │ │ ├── resolver.py │ │ │ ├── x86_elf_pic_plt.py │ │ │ └── x86_pe_iat.py │ │ └── memory_data.py │ ├── code_location.py │ ├── code_tagging.py │ ├── congruency_check.py │ ├── datagraph_meta.py │ ├── ddg.py │ ├── decompiler │ │ ├── __init__.py │ │ ├── clinic.py │ │ ├── region_identifier.py │ │ ├── structured_codegen.py │ │ └── structurer.py │ ├── disassembly.py │ ├── disassembly_utils.py │ ├── example_flag_page │ ├── forward_analysis.py │ ├── girlscout.py │ ├── identifier │ │ ├── __init__.py │ │ ├── custom_callable.py │ │ ├── errors.py │ │ ├── func.py │ │ ├── functions │ │ │ ├── __init__.py │ │ │ ├── atoi.py │ │ │ ├── based_atoi.py │ │ │ ├── fdprintf.py │ │ │ ├── free.py │ │ │ ├── int2str.py │ │ │ ├── malloc.py │ │ │ ├── memcmp.py │ │ │ ├── memcpy.py │ │ │ ├── memset.py │ │ │ ├── printf.py │ │ │ ├── recv_until.py │ │ │ ├── skip_calloc.py │ │ │ ├── skip_realloc.py │ │ │ ├── skip_recv_n.py │ │ │ ├── snprintf.py │ │ │ ├── sprintf.py │ │ │ ├── strcasecmp.py │ │ │ ├── strcmp.py │ │ │ ├── strcpy.py │ │ │ ├── strlen.py │ │ │ ├── strncmp.py │ │ │ ├── strncpy.py │ │ │ └── strtol.py │ │ ├── identify.py │ │ └── runner.py │ ├── loopfinder.py │ ├── reaching_definitions │ │ ├── __init__.py │ │ ├── atoms.py │ │ ├── constants.py │ │ ├── dataset.py │ │ ├── definition.py │ │ ├── engine_ail.py │ │ ├── engine_vex.py │ │ ├── external_codeloc.py │ │ ├── reaching_definitions.py │ │ ├── undefined.py │ │ └── uses.py │ ├── reassembler.py │ ├── static_hooker.py │ ├── variable_recovery │ │ ├── __init__.py │ │ ├── annotations.py │ │ ├── variable_recovery.py │ │ └── variable_recovery_fast.py │ ├── veritesting.py │ ├── vfg.py │ └── vsa_ddg.py ├── annocfg.py ├── blade.py ├── block.py ├── callable.py ├── calling_conventions.py ├── codenode.py ├── concretization_strategies │ ├── __init__.py │ ├── any.py │ ├── controlled_data.py │ ├── eval.py │ ├── max.py │ ├── nonzero.py │ ├── nonzero_range.py │ ├── norepeats.py │ ├── norepeats_range.py │ ├── range.py │ ├── single.py │ └── solutions.py ├── engines │ ├── __init__.py │ ├── engine.py │ ├── failure.py │ ├── hook.py │ ├── hub.py │ ├── light │ │ ├── __init__.py │ │ ├── data.py │ │ └── engine.py │ ├── procedure.py │ ├── successors.py │ ├── syscall.py │ ├── unicorn.py │ └── vex │ │ ├── __init__.py │ │ ├── ccall.py │ │ ├── dirty.py │ │ ├── engine.py │ │ ├── expressions │ │ ├── __init__.py │ │ ├── base.py │ │ ├── ccall.py │ │ ├── const.py │ │ ├── get.py │ │ ├── geti.py │ │ ├── gsptr.py │ │ ├── ite.py │ │ ├── load.py │ │ ├── op.py │ │ ├── rdtmp.py │ │ ├── unsupported.py │ │ └── vecret.py │ │ ├── irop.py │ │ └── statements │ │ ├── __init__.py │ │ ├── abihint.py │ │ ├── base.py │ │ ├── cas.py │ │ ├── dirty.py │ │ ├── exit.py │ │ ├── imark.py │ │ ├── llsc.py │ │ ├── loadg.py │ │ ├── mbe.py │ │ ├── noop.py │ │ ├── put.py │ │ ├── puti.py │ │ ├── store.py │ │ ├── storeg.py │ │ └── wrtmp.py ├── errors.py ├── exploration_techniques │ ├── __init__.py │ ├── cacher.py │ ├── common.py │ ├── dfs.py │ ├── director.py │ ├── driller_core.py │ ├── explorer.py │ ├── lengthlimiter.py │ ├── loop_seer.py │ ├── manual_mergepoint.py │ ├── oppologist.py │ ├── slicecutor.py │ ├── spiller.py │ ├── stochastic.py │ ├── tech_builder.py │ ├── threading.py │ ├── tracer.py │ ├── unique.py │ └── veritesting.py ├── factory.py ├── keyed_region.py ├── knowledge_base.py ├── knowledge_plugins │ ├── __init__.py │ ├── comments.py │ ├── data.py │ ├── functions │ │ ├── __init__.py │ │ ├── function.py │ │ └── function_manager.py │ ├── indirect_jumps.py │ ├── labels.py │ ├── plugin.py │ └── variables │ │ ├── __init__.py │ │ ├── variable_access.py │ │ └── variable_manager.py ├── misc │ ├── __init__.py │ ├── autoimport.py │ ├── bug_report.py │ ├── hookset.py │ ├── loggers.py │ ├── plugins.py │ ├── range.py │ ├── testing.py │ └── ux.py ├── procedures │ ├── __init__.py │ ├── advapi32 │ │ └── __init__.py │ ├── cgc │ │ ├── __init__.py │ │ ├── _terminate.py │ │ ├── allocate.py │ │ ├── deallocate.py │ │ ├── fdwait.py │ │ ├── random.py │ │ ├── receive.py │ │ └── transmit.py │ ├── definitions │ │ ├── __init__.py │ │ ├── advapi32.py │ │ ├── cgc.py │ │ ├── glibc.py │ │ ├── kernel32.py │ │ ├── linux_kernel.py │ │ ├── linux_loader.py │ │ ├── msvcr.py │ │ ├── ntdll.py │ │ ├── parse_syscalls_from_gdb.py │ │ └── user32.py │ ├── glibc │ │ ├── __ctype_b_loc.py │ │ ├── __ctype_tolower_loc.py │ │ ├── __ctype_toupper_loc.py │ │ ├── __errno_location.py │ │ ├── __init__.py │ │ ├── __libc_init.py │ │ ├── __libc_start_main.py │ │ ├── dynamic_loading.py │ │ ├── scanf.py │ │ └── sscanf.py │ ├── libc │ │ ├── __init__.py │ │ ├── abort.py │ │ ├── access.py │ │ ├── atoi.py │ │ ├── calloc.py │ │ ├── exit.py │ │ ├── fclose.py │ │ ├── feof.py │ │ ├── fflush.py │ │ ├── fgetc.py │ │ ├── fgets.py │ │ ├── fopen.py │ │ ├── fprintf.py │ │ ├── fputc.py │ │ ├── fputs.py │ │ ├── fread.py │ │ ├── free.py │ │ ├── fseek.py │ │ ├── ftell.py │ │ ├── fwrite.py │ │ ├── getchar.py │ │ ├── malloc.py │ │ ├── memcmp.py │ │ ├── memcpy.py │ │ ├── memset.py │ │ ├── perror.py │ │ ├── printf.py │ │ ├── putc.py │ │ ├── putchar.py │ │ ├── puts.py │ │ ├── rand.py │ │ ├── realloc.py │ │ ├── rewind.py │ │ ├── scanf.py │ │ ├── setvbuf.py │ │ ├── snprintf.py │ │ ├── sprintf.py │ │ ├── srand.py │ │ ├── sscanf.py │ │ ├── strcat.py │ │ ├── strchr.py │ │ ├── strcmp.py │ │ ├── strcpy.py │ │ ├── strlen.py │ │ ├── strncmp.py │ │ ├── strncpy.py │ │ ├── strstr.py │ │ ├── strtol.py │ │ ├── system.py │ │ ├── tmpnam.py │ │ ├── tolower.py │ │ ├── toupper.py │ │ ├── ungetc.py │ │ ├── vsnprintf.py │ │ └── wchar.py │ ├── linux_kernel │ │ ├── __init__.py │ │ ├── arch_prctl.py │ │ ├── arm_user_helpers.py │ │ ├── brk.py │ │ ├── cwd.py │ │ ├── fstat.py │ │ ├── futex.py │ │ ├── getpid.py │ │ ├── getrlimit.py │ │ ├── gettid.py │ │ ├── iovec.py │ │ ├── lseek.py │ │ ├── mmap.py │ │ ├── mprotect.py │ │ ├── munmap.py │ │ ├── set_tid_address.py │ │ ├── sigaction.py │ │ ├── sigprocmask.py │ │ ├── stat.py │ │ ├── tgkill.py │ │ ├── time.py │ │ ├── uid.py │ │ ├── uname.py │ │ ├── unlink.py │ │ └── vsyscall.py │ ├── linux_loader │ │ ├── __init__.py │ │ ├── __tls_get_addr.py │ │ ├── _dl_initial_error_catch_tsd.py │ │ ├── _dl_rtld_lock.py │ │ └── sim_loader.py │ ├── msvcr │ │ ├── __getmainargs.py │ │ ├── __init__.py │ │ ├── _initterm.py │ │ └── fmode.py │ ├── ntdll │ │ ├── __init__.py │ │ └── exceptions.py │ ├── posix │ │ ├── __init__.py │ │ ├── accept.py │ │ ├── bind.py │ │ ├── close.py │ │ ├── closedir.py │ │ ├── fdopen.py │ │ ├── fileno.py │ │ ├── fork.py │ │ ├── gethostbyname.py │ │ ├── getpass.py │ │ ├── htonl.py │ │ ├── htons.py │ │ ├── inet_ntoa.py │ │ ├── listen.py │ │ ├── mmap.py │ │ ├── open.py │ │ ├── opendir.py │ │ ├── pthread.py │ │ ├── read.py │ │ ├── readdir.py │ │ ├── recv.py │ │ ├── recvfrom.py │ │ ├── select.py │ │ ├── send.py │ │ ├── sigaction.py │ │ ├── sim_time.py │ │ ├── sleep.py │ │ ├── socket.py │ │ ├── strcasecmp.py │ │ ├── strdup.py │ │ ├── strtok_r.py │ │ ├── syslog.py │ │ ├── unlink.py │ │ ├── usleep.py │ │ └── write.py │ ├── procedure_dict.py │ ├── stubs │ │ ├── CallReturn.py │ │ ├── NoReturnUnconstrained.py │ │ ├── Nop.py │ │ ├── PathTerminator.py │ │ ├── Redirect.py │ │ ├── ReturnChar.py │ │ ├── ReturnUnconstrained.py │ │ ├── UnresolvableTarget.py │ │ ├── UserHook.py │ │ ├── __init__.py │ │ ├── b64_decode.py │ │ ├── caller.py │ │ ├── crazy_scanf.py │ │ ├── format_parser.py │ │ └── syscall_stub.py │ ├── testing │ │ ├── __init__.py │ │ ├── manyargs.py │ │ └── retreg.py │ ├── tracer │ │ ├── __init__.py │ │ ├── random.py │ │ ├── receive.py │ │ └── transmit.py │ ├── uclibc │ │ ├── __init__.py │ │ └── __uClibc_main.py │ ├── win32 │ │ ├── EncodePointer.py │ │ ├── ExitProcess.py │ │ ├── GetCommandLine.py │ │ ├── GetCurrentProcessId.py │ │ ├── GetCurrentThreadId.py │ │ ├── GetModuleHandle.py │ │ ├── InterlockedExchange.py │ │ ├── IsProcessorFeaturePresent.py │ │ ├── VirtualAlloc.py │ │ ├── VirtualProtect.py │ │ ├── __init__.py │ │ ├── critical_section.py │ │ ├── dynamic_loading.py │ │ ├── heap.py │ │ ├── is_bad_ptr.py │ │ ├── local_storage.py │ │ ├── mutex.py │ │ ├── sim_time.py │ │ └── system_paths.py │ └── win_user32 │ │ ├── __init__.py │ │ ├── chars.py │ │ ├── keyboard.py │ │ └── messagebox.py ├── project.py ├── service.py ├── sim_manager.py ├── sim_options.py ├── sim_procedure.py ├── sim_state.py ├── sim_state_options.py ├── sim_static_taint.py ├── sim_type.py ├── sim_variable.py ├── simos │ ├── __init__.py │ ├── cgc.py │ ├── linux.py │ ├── simos.py │ ├── userland.py │ └── windows.py ├── slicer.py ├── state_hierarchy.py ├── state_plugins │ ├── __init__.py │ ├── abstract_memory.py │ ├── callstack.py │ ├── cgc.py │ ├── fast_memory.py │ ├── filesystem.py │ ├── gdb.py │ ├── globals.py │ ├── history.py │ ├── inspect.py │ ├── libc.py │ ├── log.py │ ├── loop_data.py │ ├── plugin.py │ ├── posix.py │ ├── preconstrainer.py │ ├── scratch.py │ ├── sim_action.py │ ├── sim_action_object.py │ ├── sim_event.py │ ├── solver.py │ ├── symbolic_memory.py │ ├── trace_additions.py │ ├── uc_manager.py │ ├── unicorn_engine.py │ └── view.py ├── storage │ ├── __init__.py │ ├── file.py │ ├── memory.py │ ├── memory_object.py │ ├── paged_memory.py │ └── pcap.py ├── tablespecs.py ├── type_backend.py └── utils │ ├── __init__.py │ ├── graph.py │ └── library.py ├── appveyor.yml ├── native ├── Makefile ├── Makefile-win ├── angr_native.def ├── log.c ├── log.h └── sim_unicorn.cpp ├── setup.py └── tests ├── README.md ├── broken_find_avoid_conflict.py ├── broken_girlscout.py ├── broken_loop.py ├── broken_never.py ├── broken_orwc.py ├── broken_pickle.py ├── broken_simcc.py ├── broken_sleak.py ├── broken_slicing.py ├── broken_switch.py ├── broken_variableseekr.py ├── common.py ├── manual_explosion.py ├── manual_performance.py ├── perf_unicorn.py ├── test_0div.py ├── test_accuracy.py ├── test_actions.py ├── test_adc.py ├── test_argc.py ├── test_argc_sym.py ├── test_argv.py ├── test_bindiff.py ├── test_block_cache.py ├── test_boyscout.py ├── test_cacher.py ├── test_callable.py ├── test_calling_convention_analysis.py ├── test_callstack.py ├── test_cc.py ├── test_cdg.py ├── test_cfg_clflush.py ├── test_cfg_vex_postprocessor.py ├── test_cfgemulated.py ├── test_cfgfast.py ├── test_checkbyte.py ├── test_clinic.py ├── test_codetagging.py ├── test_ctype_locale.py ├── test_ddg.py ├── test_director.py ├── test_driller_core.py ├── test_echo.py ├── test_fauxware.py ├── test_file_struct_funcs.py ├── test_files.py ├── test_function_manager.py ├── test_gdb_plugin.py ├── test_hook.py ├── test_hookset.py ├── test_iat_resolver.py ├── test_identifier.py ├── test_inspect.py ├── test_kb_plugins.py ├── test_keystone.py ├── test_lifter.py ├── test_loop_seer.py ├── test_lseek.py ├── test_mem_funcs.py ├── test_memory.py ├── test_memview.py ├── test_mmap.py ├── test_multi_open_file.py ├── test_oppologist.py ├── test_permissions.py ├── test_pickle.py ├── test_posix.py ├── test_project_resolve_simproc.py ├── test_prototypes.py ├── test_rcr.py ├── test_reachingdefinitions.py ├── test_regionidentifier.py ├── test_regression_memcmp_definite_size.py ├── test_rol.py ├── test_scanf.py ├── test_self_modifying_code.py ├── test_serialization.py ├── test_signed_div.py ├── test_sim_procedure.py ├── test_sim_time.py ├── test_simple_api.py ├── test_simulation_manager.py ├── test_spiller.py ├── test_sprintf.py ├── test_sscanf.py ├── test_stack_alignment.py ├── test_state.py ├── test_state_customization.py ├── test_static_hooker.py ├── test_stochastic.py ├── test_str_funcs.py ├── test_strcasecmp.py ├── test_string.py ├── test_strtol.py ├── test_structurer.py ├── test_symbolic.py ├── test_syscall_override.py ├── test_tech_builder.py ├── test_tracer.py ├── test_types.py ├── test_unicorn.py ├── test_unique.py ├── test_unsupported.py ├── test_variable_registration.py ├── test_variablerecovery.py ├── test_veritesting.py ├── test_vex.py ├── test_vfg.py ├── test_windows_args.py └── test_windows_stack_cookie.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/README.md -------------------------------------------------------------------------------- /ida_plugin/idataint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/ida_plugin/idataint.py -------------------------------------------------------------------------------- /sample/libcms/angr_encry_dword_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/sample/libcms/angr_encry_dword_2.py -------------------------------------------------------------------------------- /sample/libcms/libcms.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/sample/libcms/libcms.idb -------------------------------------------------------------------------------- /sample/libcms/libcms.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/sample/libcms/libcms.so -------------------------------------------------------------------------------- /sample/libcms/taint_dword_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/sample/libcms/taint_dword_2.txt -------------------------------------------------------------------------------- /sample/tmp/angr_tmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/sample/tmp/angr_tmp.py -------------------------------------------------------------------------------- /sample/tmp/tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/sample/tmp/tmp -------------------------------------------------------------------------------- /sample/tmp/tmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/sample/tmp/tmp.c -------------------------------------------------------------------------------- /sample/tmp/tmp.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/sample/tmp/tmp.idb -------------------------------------------------------------------------------- /sample/tmp/tmp_ir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/sample/tmp/tmp_ir.txt -------------------------------------------------------------------------------- /sample/tmp/tmp_ir_taint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/sample/tmp/tmp_ir_taint.txt -------------------------------------------------------------------------------- /taint-angr/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /taint-angr/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /taint-angr/.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /taint-angr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/.gitignore -------------------------------------------------------------------------------- /taint-angr/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/.gitlab-ci.yml -------------------------------------------------------------------------------- /taint-angr/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/.travis.yml -------------------------------------------------------------------------------- /taint-angr/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/Dockerfile -------------------------------------------------------------------------------- /taint-angr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/LICENSE -------------------------------------------------------------------------------- /taint-angr/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/MANIFEST.in -------------------------------------------------------------------------------- /taint-angr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/README.md -------------------------------------------------------------------------------- /taint-angr/angr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/analysis.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/backward_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/backward_slice.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/binary_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/binary_optimizer.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/bindiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/bindiff.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/boyscout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/boyscout.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/callee_cleanup_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/callee_cleanup_finder.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/calling_convention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/calling_convention.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/cdg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/cdg.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/cfg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/cfg/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/cfg/cfb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/cfg/cfb.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/cfg/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/cfg/cfg.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/cfg/cfg_arch_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/cfg/cfg_arch_options.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/cfg/cfg_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/cfg/cfg_base.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/cfg/cfg_emulated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/cfg/cfg_emulated.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/cfg/cfg_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/cfg/cfg_fast.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/cfg/cfg_job_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/cfg/cfg_job_base.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/cfg/cfg_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/cfg/cfg_node.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/cfg/cfg_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/cfg/cfg_utils.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/cfg/indirect_jump_resolvers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/cfg/indirect_jump_resolvers/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/cfg/indirect_jump_resolvers/jumptable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/cfg/indirect_jump_resolvers/jumptable.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/cfg/indirect_jump_resolvers/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/cfg/indirect_jump_resolvers/resolver.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/cfg/indirect_jump_resolvers/x86_elf_pic_plt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/cfg/indirect_jump_resolvers/x86_elf_pic_plt.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/cfg/indirect_jump_resolvers/x86_pe_iat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/cfg/indirect_jump_resolvers/x86_pe_iat.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/cfg/memory_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/cfg/memory_data.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/code_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/code_location.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/code_tagging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/code_tagging.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/congruency_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/congruency_check.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/datagraph_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/datagraph_meta.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/ddg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/ddg.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/decompiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/decompiler/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/decompiler/clinic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/decompiler/clinic.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/decompiler/region_identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/decompiler/region_identifier.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/decompiler/structured_codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/decompiler/structured_codegen.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/decompiler/structurer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/decompiler/structurer.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/disassembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/disassembly.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/disassembly_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/disassembly_utils.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/example_flag_page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/example_flag_page -------------------------------------------------------------------------------- /taint-angr/angr/analyses/forward_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/forward_analysis.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/girlscout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/girlscout.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/custom_callable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/custom_callable.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/errors.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/func.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/atoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/atoi.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/based_atoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/based_atoi.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/fdprintf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/fdprintf.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/free.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/free.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/int2str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/int2str.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/malloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/malloc.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/memcmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/memcmp.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/memcpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/memcpy.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/memset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/memset.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/printf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/printf.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/recv_until.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/recv_until.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/skip_calloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/skip_calloc.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/skip_realloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/skip_realloc.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/skip_recv_n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/skip_recv_n.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/snprintf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/snprintf.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/sprintf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/sprintf.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/strcasecmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/strcasecmp.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/strcmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/strcmp.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/strcpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/strcpy.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/strlen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/strlen.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/strncmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/strncmp.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/strncpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/strncpy.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/functions/strtol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/functions/strtol.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/identify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/identify.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/identifier/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/identifier/runner.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/loopfinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/loopfinder.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/reaching_definitions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/reaching_definitions/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/reaching_definitions/atoms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/reaching_definitions/atoms.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/reaching_definitions/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/reaching_definitions/constants.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/reaching_definitions/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/reaching_definitions/dataset.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/reaching_definitions/definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/reaching_definitions/definition.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/reaching_definitions/engine_ail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/reaching_definitions/engine_ail.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/reaching_definitions/engine_vex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/reaching_definitions/engine_vex.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/reaching_definitions/external_codeloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/reaching_definitions/external_codeloc.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/reaching_definitions/reaching_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/reaching_definitions/reaching_definitions.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/reaching_definitions/undefined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/reaching_definitions/undefined.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/reaching_definitions/uses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/reaching_definitions/uses.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/reassembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/reassembler.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/static_hooker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/static_hooker.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/variable_recovery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/variable_recovery/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/variable_recovery/annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/variable_recovery/annotations.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/variable_recovery/variable_recovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/variable_recovery/variable_recovery.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/variable_recovery/variable_recovery_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/variable_recovery/variable_recovery_fast.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/veritesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/veritesting.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/vfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/vfg.py -------------------------------------------------------------------------------- /taint-angr/angr/analyses/vsa_ddg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/analyses/vsa_ddg.py -------------------------------------------------------------------------------- /taint-angr/angr/annocfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/annocfg.py -------------------------------------------------------------------------------- /taint-angr/angr/blade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/blade.py -------------------------------------------------------------------------------- /taint-angr/angr/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/block.py -------------------------------------------------------------------------------- /taint-angr/angr/callable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/callable.py -------------------------------------------------------------------------------- /taint-angr/angr/calling_conventions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/calling_conventions.py -------------------------------------------------------------------------------- /taint-angr/angr/codenode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/codenode.py -------------------------------------------------------------------------------- /taint-angr/angr/concretization_strategies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/concretization_strategies/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/concretization_strategies/any.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/concretization_strategies/any.py -------------------------------------------------------------------------------- /taint-angr/angr/concretization_strategies/controlled_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/concretization_strategies/controlled_data.py -------------------------------------------------------------------------------- /taint-angr/angr/concretization_strategies/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/concretization_strategies/eval.py -------------------------------------------------------------------------------- /taint-angr/angr/concretization_strategies/max.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/concretization_strategies/max.py -------------------------------------------------------------------------------- /taint-angr/angr/concretization_strategies/nonzero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/concretization_strategies/nonzero.py -------------------------------------------------------------------------------- /taint-angr/angr/concretization_strategies/nonzero_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/concretization_strategies/nonzero_range.py -------------------------------------------------------------------------------- /taint-angr/angr/concretization_strategies/norepeats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/concretization_strategies/norepeats.py -------------------------------------------------------------------------------- /taint-angr/angr/concretization_strategies/norepeats_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/concretization_strategies/norepeats_range.py -------------------------------------------------------------------------------- /taint-angr/angr/concretization_strategies/range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/concretization_strategies/range.py -------------------------------------------------------------------------------- /taint-angr/angr/concretization_strategies/single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/concretization_strategies/single.py -------------------------------------------------------------------------------- /taint-angr/angr/concretization_strategies/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/concretization_strategies/solutions.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/engine.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/failure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/failure.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/hook.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/hub.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/light/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/light/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/light/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/light/data.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/light/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/light/engine.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/procedure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/procedure.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/successors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/successors.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/syscall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/syscall.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/unicorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/unicorn.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/ccall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/ccall.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/dirty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/dirty.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/engine.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/expressions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/expressions/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/expressions/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/expressions/base.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/expressions/ccall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/expressions/ccall.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/expressions/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/expressions/const.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/expressions/get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/expressions/get.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/expressions/geti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/expressions/geti.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/expressions/gsptr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/expressions/gsptr.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/expressions/ite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/expressions/ite.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/expressions/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/expressions/load.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/expressions/op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/expressions/op.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/expressions/rdtmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/expressions/rdtmp.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/expressions/unsupported.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/expressions/unsupported.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/expressions/vecret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/expressions/vecret.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/irop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/irop.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/statements/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/statements/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/statements/abihint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/statements/abihint.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/statements/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/statements/base.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/statements/cas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/statements/cas.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/statements/dirty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/statements/dirty.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/statements/exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/statements/exit.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/statements/imark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/statements/imark.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/statements/llsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/statements/llsc.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/statements/loadg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/statements/loadg.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/statements/mbe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/statements/mbe.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/statements/noop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/statements/noop.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/statements/put.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/statements/put.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/statements/puti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/statements/puti.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/statements/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/statements/store.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/statements/storeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/statements/storeg.py -------------------------------------------------------------------------------- /taint-angr/angr/engines/vex/statements/wrtmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/engines/vex/statements/wrtmp.py -------------------------------------------------------------------------------- /taint-angr/angr/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/errors.py -------------------------------------------------------------------------------- /taint-angr/angr/exploration_techniques/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/exploration_techniques/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/exploration_techniques/cacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/exploration_techniques/cacher.py -------------------------------------------------------------------------------- /taint-angr/angr/exploration_techniques/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/exploration_techniques/common.py -------------------------------------------------------------------------------- /taint-angr/angr/exploration_techniques/dfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/exploration_techniques/dfs.py -------------------------------------------------------------------------------- /taint-angr/angr/exploration_techniques/director.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/exploration_techniques/director.py -------------------------------------------------------------------------------- /taint-angr/angr/exploration_techniques/driller_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/exploration_techniques/driller_core.py -------------------------------------------------------------------------------- /taint-angr/angr/exploration_techniques/explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/exploration_techniques/explorer.py -------------------------------------------------------------------------------- /taint-angr/angr/exploration_techniques/lengthlimiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/exploration_techniques/lengthlimiter.py -------------------------------------------------------------------------------- /taint-angr/angr/exploration_techniques/loop_seer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/exploration_techniques/loop_seer.py -------------------------------------------------------------------------------- /taint-angr/angr/exploration_techniques/manual_mergepoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/exploration_techniques/manual_mergepoint.py -------------------------------------------------------------------------------- /taint-angr/angr/exploration_techniques/oppologist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/exploration_techniques/oppologist.py -------------------------------------------------------------------------------- /taint-angr/angr/exploration_techniques/slicecutor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/exploration_techniques/slicecutor.py -------------------------------------------------------------------------------- /taint-angr/angr/exploration_techniques/spiller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/exploration_techniques/spiller.py -------------------------------------------------------------------------------- /taint-angr/angr/exploration_techniques/stochastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/exploration_techniques/stochastic.py -------------------------------------------------------------------------------- /taint-angr/angr/exploration_techniques/tech_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/exploration_techniques/tech_builder.py -------------------------------------------------------------------------------- /taint-angr/angr/exploration_techniques/threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/exploration_techniques/threading.py -------------------------------------------------------------------------------- /taint-angr/angr/exploration_techniques/tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/exploration_techniques/tracer.py -------------------------------------------------------------------------------- /taint-angr/angr/exploration_techniques/unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/exploration_techniques/unique.py -------------------------------------------------------------------------------- /taint-angr/angr/exploration_techniques/veritesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/exploration_techniques/veritesting.py -------------------------------------------------------------------------------- /taint-angr/angr/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/factory.py -------------------------------------------------------------------------------- /taint-angr/angr/keyed_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/keyed_region.py -------------------------------------------------------------------------------- /taint-angr/angr/knowledge_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/knowledge_base.py -------------------------------------------------------------------------------- /taint-angr/angr/knowledge_plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/knowledge_plugins/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/knowledge_plugins/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/knowledge_plugins/comments.py -------------------------------------------------------------------------------- /taint-angr/angr/knowledge_plugins/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/knowledge_plugins/data.py -------------------------------------------------------------------------------- /taint-angr/angr/knowledge_plugins/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/knowledge_plugins/functions/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/knowledge_plugins/functions/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/knowledge_plugins/functions/function.py -------------------------------------------------------------------------------- /taint-angr/angr/knowledge_plugins/functions/function_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/knowledge_plugins/functions/function_manager.py -------------------------------------------------------------------------------- /taint-angr/angr/knowledge_plugins/indirect_jumps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/knowledge_plugins/indirect_jumps.py -------------------------------------------------------------------------------- /taint-angr/angr/knowledge_plugins/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/knowledge_plugins/labels.py -------------------------------------------------------------------------------- /taint-angr/angr/knowledge_plugins/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/knowledge_plugins/plugin.py -------------------------------------------------------------------------------- /taint-angr/angr/knowledge_plugins/variables/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/knowledge_plugins/variables/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/knowledge_plugins/variables/variable_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/knowledge_plugins/variables/variable_access.py -------------------------------------------------------------------------------- /taint-angr/angr/knowledge_plugins/variables/variable_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/knowledge_plugins/variables/variable_manager.py -------------------------------------------------------------------------------- /taint-angr/angr/misc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/misc/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/misc/autoimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/misc/autoimport.py -------------------------------------------------------------------------------- /taint-angr/angr/misc/bug_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/misc/bug_report.py -------------------------------------------------------------------------------- /taint-angr/angr/misc/hookset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/misc/hookset.py -------------------------------------------------------------------------------- /taint-angr/angr/misc/loggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/misc/loggers.py -------------------------------------------------------------------------------- /taint-angr/angr/misc/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/misc/plugins.py -------------------------------------------------------------------------------- /taint-angr/angr/misc/range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/misc/range.py -------------------------------------------------------------------------------- /taint-angr/angr/misc/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/misc/testing.py -------------------------------------------------------------------------------- /taint-angr/angr/misc/ux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/misc/ux.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/advapi32/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /taint-angr/angr/procedures/cgc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/cgc/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/cgc/_terminate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/cgc/_terminate.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/cgc/allocate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/cgc/allocate.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/cgc/deallocate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/cgc/deallocate.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/cgc/fdwait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/cgc/fdwait.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/cgc/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/cgc/random.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/cgc/receive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/cgc/receive.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/cgc/transmit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/cgc/transmit.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/definitions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/definitions/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/definitions/advapi32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/definitions/advapi32.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/definitions/cgc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/definitions/cgc.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/definitions/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/definitions/glibc.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/definitions/kernel32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/definitions/kernel32.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/definitions/linux_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/definitions/linux_kernel.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/definitions/linux_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/definitions/linux_loader.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/definitions/msvcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/definitions/msvcr.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/definitions/ntdll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/definitions/ntdll.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/definitions/parse_syscalls_from_gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/definitions/parse_syscalls_from_gdb.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/definitions/user32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/definitions/user32.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/glibc/__ctype_b_loc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/glibc/__ctype_b_loc.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/glibc/__ctype_tolower_loc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/glibc/__ctype_tolower_loc.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/glibc/__ctype_toupper_loc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/glibc/__ctype_toupper_loc.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/glibc/__errno_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/glibc/__errno_location.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/glibc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/glibc/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/glibc/__libc_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/glibc/__libc_init.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/glibc/__libc_start_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/glibc/__libc_start_main.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/glibc/dynamic_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/glibc/dynamic_loading.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/glibc/scanf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/glibc/scanf.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/glibc/sscanf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/glibc/sscanf.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/abort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/abort.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/access.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/atoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/atoi.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/calloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/calloc.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/exit.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/fclose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/fclose.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/feof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/feof.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/fflush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/fflush.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/fgetc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/fgetc.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/fgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/fgets.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/fopen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/fopen.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/fprintf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/fprintf.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/fputc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/fputc.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/fputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/fputs.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/fread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/fread.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/free.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/free.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/fseek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/fseek.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/ftell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/ftell.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/fwrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/fwrite.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/getchar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/getchar.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/malloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/malloc.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/memcmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/memcmp.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/memcpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/memcpy.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/memset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/memset.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/perror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/perror.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/printf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/printf.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/putc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/putc.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/putchar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/putchar.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/puts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/puts.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/rand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/rand.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/realloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/realloc.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/rewind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/rewind.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/scanf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/scanf.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/setvbuf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/setvbuf.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/snprintf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/snprintf.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/sprintf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/sprintf.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/srand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/srand.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/sscanf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/sscanf.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/strcat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/strcat.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/strchr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/strchr.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/strcmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/strcmp.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/strcpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/strcpy.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/strlen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/strlen.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/strncmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/strncmp.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/strncpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/strncpy.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/strstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/strstr.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/strtol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/strtol.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/system.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/tmpnam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/tmpnam.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/tolower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/tolower.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/toupper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/toupper.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/ungetc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/ungetc.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/vsnprintf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/vsnprintf.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/libc/wchar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/libc/wchar.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/arch_prctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/arch_prctl.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/arm_user_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/arm_user_helpers.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/brk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/brk.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/cwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/cwd.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/fstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/fstat.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/futex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/futex.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/getpid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/getpid.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/getrlimit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/getrlimit.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/gettid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/gettid.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/iovec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/iovec.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/lseek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/lseek.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/mmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/mmap.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/mprotect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/mprotect.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/munmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/munmap.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/set_tid_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/set_tid_address.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/sigaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/sigaction.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/sigprocmask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/sigprocmask.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/stat.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/tgkill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/tgkill.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/time.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/uid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/uid.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/uname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/uname.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/unlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/unlink.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_kernel/vsyscall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_kernel/vsyscall.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_loader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_loader/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_loader/__tls_get_addr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_loader/__tls_get_addr.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_loader/_dl_initial_error_catch_tsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_loader/_dl_initial_error_catch_tsd.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_loader/_dl_rtld_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_loader/_dl_rtld_lock.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/linux_loader/sim_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/linux_loader/sim_loader.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/msvcr/__getmainargs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/msvcr/__getmainargs.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/msvcr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/msvcr/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/msvcr/_initterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/msvcr/_initterm.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/msvcr/fmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/msvcr/fmode.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/ntdll/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /taint-angr/angr/procedures/ntdll/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/ntdll/exceptions.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | These procedures implement functions described in POSIX.1 3 | """ 4 | -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/accept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/accept.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/bind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/bind.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/close.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/close.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/closedir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/closedir.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/fdopen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/fdopen.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/fileno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/fileno.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/fork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/fork.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/gethostbyname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/gethostbyname.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/getpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/getpass.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/htonl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/htonl.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/htons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/htons.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/inet_ntoa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/inet_ntoa.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/listen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/listen.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/mmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/mmap.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/open.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/opendir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/opendir.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/pthread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/pthread.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/read.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/readdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/readdir.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/recv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/recv.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/recvfrom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/recvfrom.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/select.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/send.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/sigaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/sigaction.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/sim_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/sim_time.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/sleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/sleep.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/socket.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/strcasecmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/strcasecmp.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/strdup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/strdup.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/strtok_r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/strtok_r.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/syslog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/syslog.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/unlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/unlink.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/usleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/usleep.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/posix/write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/posix/write.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/procedure_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/procedure_dict.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/stubs/CallReturn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/stubs/CallReturn.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/stubs/NoReturnUnconstrained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/stubs/NoReturnUnconstrained.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/stubs/Nop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/stubs/Nop.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/stubs/PathTerminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/stubs/PathTerminator.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/stubs/Redirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/stubs/Redirect.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/stubs/ReturnChar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/stubs/ReturnChar.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/stubs/ReturnUnconstrained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/stubs/ReturnUnconstrained.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/stubs/UnresolvableTarget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/stubs/UnresolvableTarget.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/stubs/UserHook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/stubs/UserHook.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/stubs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/stubs/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/stubs/b64_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/stubs/b64_decode.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/stubs/caller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/stubs/caller.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/stubs/crazy_scanf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/stubs/crazy_scanf.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/stubs/format_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/stubs/format_parser.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/stubs/syscall_stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/stubs/syscall_stub.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/testing/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/testing/manyargs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/testing/manyargs.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/testing/retreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/testing/retreg.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/tracer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/tracer/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/tracer/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/tracer/random.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/tracer/receive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/tracer/receive.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/tracer/transmit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/tracer/transmit.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/uclibc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/uclibc/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/uclibc/__uClibc_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/uclibc/__uClibc_main.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win32/EncodePointer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win32/EncodePointer.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win32/ExitProcess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win32/ExitProcess.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win32/GetCommandLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win32/GetCommandLine.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win32/GetCurrentProcessId.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win32/GetCurrentProcessId.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win32/GetCurrentThreadId.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win32/GetCurrentThreadId.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win32/GetModuleHandle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win32/GetModuleHandle.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win32/InterlockedExchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win32/InterlockedExchange.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win32/IsProcessorFeaturePresent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win32/IsProcessorFeaturePresent.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win32/VirtualAlloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win32/VirtualAlloc.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win32/VirtualProtect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win32/VirtualProtect.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win32/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win32/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win32/critical_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win32/critical_section.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win32/dynamic_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win32/dynamic_loading.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win32/heap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win32/heap.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win32/is_bad_ptr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win32/is_bad_ptr.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win32/local_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win32/local_storage.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win32/mutex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win32/mutex.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win32/sim_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win32/sim_time.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win32/system_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win32/system_paths.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win_user32/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win_user32/chars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win_user32/chars.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win_user32/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win_user32/keyboard.py -------------------------------------------------------------------------------- /taint-angr/angr/procedures/win_user32/messagebox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/procedures/win_user32/messagebox.py -------------------------------------------------------------------------------- /taint-angr/angr/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/project.py -------------------------------------------------------------------------------- /taint-angr/angr/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/service.py -------------------------------------------------------------------------------- /taint-angr/angr/sim_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/sim_manager.py -------------------------------------------------------------------------------- /taint-angr/angr/sim_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/sim_options.py -------------------------------------------------------------------------------- /taint-angr/angr/sim_procedure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/sim_procedure.py -------------------------------------------------------------------------------- /taint-angr/angr/sim_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/sim_state.py -------------------------------------------------------------------------------- /taint-angr/angr/sim_state_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/sim_state_options.py -------------------------------------------------------------------------------- /taint-angr/angr/sim_static_taint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/sim_static_taint.py -------------------------------------------------------------------------------- /taint-angr/angr/sim_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/sim_type.py -------------------------------------------------------------------------------- /taint-angr/angr/sim_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/sim_variable.py -------------------------------------------------------------------------------- /taint-angr/angr/simos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/simos/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/simos/cgc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/simos/cgc.py -------------------------------------------------------------------------------- /taint-angr/angr/simos/linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/simos/linux.py -------------------------------------------------------------------------------- /taint-angr/angr/simos/simos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/simos/simos.py -------------------------------------------------------------------------------- /taint-angr/angr/simos/userland.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/simos/userland.py -------------------------------------------------------------------------------- /taint-angr/angr/simos/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/simos/windows.py -------------------------------------------------------------------------------- /taint-angr/angr/slicer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/slicer.py -------------------------------------------------------------------------------- /taint-angr/angr/state_hierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_hierarchy.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/abstract_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/abstract_memory.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/callstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/callstack.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/cgc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/cgc.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/fast_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/fast_memory.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/filesystem.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/gdb.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/globals.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/history.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/inspect.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/libc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/libc.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/log.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/loop_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/loop_data.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/plugin.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/posix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/posix.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/preconstrainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/preconstrainer.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/scratch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/scratch.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/sim_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/sim_action.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/sim_action_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/sim_action_object.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/sim_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/sim_event.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/solver.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/symbolic_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/symbolic_memory.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/trace_additions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/trace_additions.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/uc_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/uc_manager.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/unicorn_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/unicorn_engine.py -------------------------------------------------------------------------------- /taint-angr/angr/state_plugins/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/state_plugins/view.py -------------------------------------------------------------------------------- /taint-angr/angr/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/storage/__init__.py -------------------------------------------------------------------------------- /taint-angr/angr/storage/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/storage/file.py -------------------------------------------------------------------------------- /taint-angr/angr/storage/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/storage/memory.py -------------------------------------------------------------------------------- /taint-angr/angr/storage/memory_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/storage/memory_object.py -------------------------------------------------------------------------------- /taint-angr/angr/storage/paged_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/storage/paged_memory.py -------------------------------------------------------------------------------- /taint-angr/angr/storage/pcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/storage/pcap.py -------------------------------------------------------------------------------- /taint-angr/angr/tablespecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/tablespecs.py -------------------------------------------------------------------------------- /taint-angr/angr/type_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/type_backend.py -------------------------------------------------------------------------------- /taint-angr/angr/utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from . import graph 3 | -------------------------------------------------------------------------------- /taint-angr/angr/utils/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/utils/graph.py -------------------------------------------------------------------------------- /taint-angr/angr/utils/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/angr/utils/library.py -------------------------------------------------------------------------------- /taint-angr/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/appveyor.yml -------------------------------------------------------------------------------- /taint-angr/native/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/native/Makefile -------------------------------------------------------------------------------- /taint-angr/native/Makefile-win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/native/Makefile-win -------------------------------------------------------------------------------- /taint-angr/native/angr_native.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/native/angr_native.def -------------------------------------------------------------------------------- /taint-angr/native/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/native/log.c -------------------------------------------------------------------------------- /taint-angr/native/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/native/log.h -------------------------------------------------------------------------------- /taint-angr/native/sim_unicorn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/native/sim_unicorn.cpp -------------------------------------------------------------------------------- /taint-angr/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/setup.py -------------------------------------------------------------------------------- /taint-angr/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/README.md -------------------------------------------------------------------------------- /taint-angr/tests/broken_find_avoid_conflict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/broken_find_avoid_conflict.py -------------------------------------------------------------------------------- /taint-angr/tests/broken_girlscout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/broken_girlscout.py -------------------------------------------------------------------------------- /taint-angr/tests/broken_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/broken_loop.py -------------------------------------------------------------------------------- /taint-angr/tests/broken_never.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/broken_never.py -------------------------------------------------------------------------------- /taint-angr/tests/broken_orwc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/broken_orwc.py -------------------------------------------------------------------------------- /taint-angr/tests/broken_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/broken_pickle.py -------------------------------------------------------------------------------- /taint-angr/tests/broken_simcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/broken_simcc.py -------------------------------------------------------------------------------- /taint-angr/tests/broken_sleak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/broken_sleak.py -------------------------------------------------------------------------------- /taint-angr/tests/broken_slicing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/broken_slicing.py -------------------------------------------------------------------------------- /taint-angr/tests/broken_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/broken_switch.py -------------------------------------------------------------------------------- /taint-angr/tests/broken_variableseekr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/broken_variableseekr.py -------------------------------------------------------------------------------- /taint-angr/tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/common.py -------------------------------------------------------------------------------- /taint-angr/tests/manual_explosion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/manual_explosion.py -------------------------------------------------------------------------------- /taint-angr/tests/manual_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/manual_performance.py -------------------------------------------------------------------------------- /taint-angr/tests/perf_unicorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/perf_unicorn.py -------------------------------------------------------------------------------- /taint-angr/tests/test_0div.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_0div.py -------------------------------------------------------------------------------- /taint-angr/tests/test_accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_accuracy.py -------------------------------------------------------------------------------- /taint-angr/tests/test_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_actions.py -------------------------------------------------------------------------------- /taint-angr/tests/test_adc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_adc.py -------------------------------------------------------------------------------- /taint-angr/tests/test_argc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_argc.py -------------------------------------------------------------------------------- /taint-angr/tests/test_argc_sym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_argc_sym.py -------------------------------------------------------------------------------- /taint-angr/tests/test_argv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_argv.py -------------------------------------------------------------------------------- /taint-angr/tests/test_bindiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_bindiff.py -------------------------------------------------------------------------------- /taint-angr/tests/test_block_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_block_cache.py -------------------------------------------------------------------------------- /taint-angr/tests/test_boyscout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_boyscout.py -------------------------------------------------------------------------------- /taint-angr/tests/test_cacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_cacher.py -------------------------------------------------------------------------------- /taint-angr/tests/test_callable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_callable.py -------------------------------------------------------------------------------- /taint-angr/tests/test_calling_convention_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_calling_convention_analysis.py -------------------------------------------------------------------------------- /taint-angr/tests/test_callstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_callstack.py -------------------------------------------------------------------------------- /taint-angr/tests/test_cc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_cc.py -------------------------------------------------------------------------------- /taint-angr/tests/test_cdg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_cdg.py -------------------------------------------------------------------------------- /taint-angr/tests/test_cfg_clflush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_cfg_clflush.py -------------------------------------------------------------------------------- /taint-angr/tests/test_cfg_vex_postprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_cfg_vex_postprocessor.py -------------------------------------------------------------------------------- /taint-angr/tests/test_cfgemulated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_cfgemulated.py -------------------------------------------------------------------------------- /taint-angr/tests/test_cfgfast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_cfgfast.py -------------------------------------------------------------------------------- /taint-angr/tests/test_checkbyte.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_checkbyte.py -------------------------------------------------------------------------------- /taint-angr/tests/test_clinic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_clinic.py -------------------------------------------------------------------------------- /taint-angr/tests/test_codetagging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_codetagging.py -------------------------------------------------------------------------------- /taint-angr/tests/test_ctype_locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_ctype_locale.py -------------------------------------------------------------------------------- /taint-angr/tests/test_ddg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_ddg.py -------------------------------------------------------------------------------- /taint-angr/tests/test_director.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_director.py -------------------------------------------------------------------------------- /taint-angr/tests/test_driller_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_driller_core.py -------------------------------------------------------------------------------- /taint-angr/tests/test_echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_echo.py -------------------------------------------------------------------------------- /taint-angr/tests/test_fauxware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_fauxware.py -------------------------------------------------------------------------------- /taint-angr/tests/test_file_struct_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_file_struct_funcs.py -------------------------------------------------------------------------------- /taint-angr/tests/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_files.py -------------------------------------------------------------------------------- /taint-angr/tests/test_function_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_function_manager.py -------------------------------------------------------------------------------- /taint-angr/tests/test_gdb_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_gdb_plugin.py -------------------------------------------------------------------------------- /taint-angr/tests/test_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_hook.py -------------------------------------------------------------------------------- /taint-angr/tests/test_hookset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_hookset.py -------------------------------------------------------------------------------- /taint-angr/tests/test_iat_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_iat_resolver.py -------------------------------------------------------------------------------- /taint-angr/tests/test_identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_identifier.py -------------------------------------------------------------------------------- /taint-angr/tests/test_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_inspect.py -------------------------------------------------------------------------------- /taint-angr/tests/test_kb_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_kb_plugins.py -------------------------------------------------------------------------------- /taint-angr/tests/test_keystone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_keystone.py -------------------------------------------------------------------------------- /taint-angr/tests/test_lifter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_lifter.py -------------------------------------------------------------------------------- /taint-angr/tests/test_loop_seer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_loop_seer.py -------------------------------------------------------------------------------- /taint-angr/tests/test_lseek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_lseek.py -------------------------------------------------------------------------------- /taint-angr/tests/test_mem_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_mem_funcs.py -------------------------------------------------------------------------------- /taint-angr/tests/test_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_memory.py -------------------------------------------------------------------------------- /taint-angr/tests/test_memview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_memview.py -------------------------------------------------------------------------------- /taint-angr/tests/test_mmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_mmap.py -------------------------------------------------------------------------------- /taint-angr/tests/test_multi_open_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_multi_open_file.py -------------------------------------------------------------------------------- /taint-angr/tests/test_oppologist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_oppologist.py -------------------------------------------------------------------------------- /taint-angr/tests/test_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_permissions.py -------------------------------------------------------------------------------- /taint-angr/tests/test_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_pickle.py -------------------------------------------------------------------------------- /taint-angr/tests/test_posix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_posix.py -------------------------------------------------------------------------------- /taint-angr/tests/test_project_resolve_simproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_project_resolve_simproc.py -------------------------------------------------------------------------------- /taint-angr/tests/test_prototypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_prototypes.py -------------------------------------------------------------------------------- /taint-angr/tests/test_rcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_rcr.py -------------------------------------------------------------------------------- /taint-angr/tests/test_reachingdefinitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_reachingdefinitions.py -------------------------------------------------------------------------------- /taint-angr/tests/test_regionidentifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_regionidentifier.py -------------------------------------------------------------------------------- /taint-angr/tests/test_regression_memcmp_definite_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_regression_memcmp_definite_size.py -------------------------------------------------------------------------------- /taint-angr/tests/test_rol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_rol.py -------------------------------------------------------------------------------- /taint-angr/tests/test_scanf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_scanf.py -------------------------------------------------------------------------------- /taint-angr/tests/test_self_modifying_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_self_modifying_code.py -------------------------------------------------------------------------------- /taint-angr/tests/test_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_serialization.py -------------------------------------------------------------------------------- /taint-angr/tests/test_signed_div.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_signed_div.py -------------------------------------------------------------------------------- /taint-angr/tests/test_sim_procedure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_sim_procedure.py -------------------------------------------------------------------------------- /taint-angr/tests/test_sim_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_sim_time.py -------------------------------------------------------------------------------- /taint-angr/tests/test_simple_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_simple_api.py -------------------------------------------------------------------------------- /taint-angr/tests/test_simulation_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_simulation_manager.py -------------------------------------------------------------------------------- /taint-angr/tests/test_spiller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_spiller.py -------------------------------------------------------------------------------- /taint-angr/tests/test_sprintf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_sprintf.py -------------------------------------------------------------------------------- /taint-angr/tests/test_sscanf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_sscanf.py -------------------------------------------------------------------------------- /taint-angr/tests/test_stack_alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_stack_alignment.py -------------------------------------------------------------------------------- /taint-angr/tests/test_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_state.py -------------------------------------------------------------------------------- /taint-angr/tests/test_state_customization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_state_customization.py -------------------------------------------------------------------------------- /taint-angr/tests/test_static_hooker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_static_hooker.py -------------------------------------------------------------------------------- /taint-angr/tests/test_stochastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_stochastic.py -------------------------------------------------------------------------------- /taint-angr/tests/test_str_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_str_funcs.py -------------------------------------------------------------------------------- /taint-angr/tests/test_strcasecmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_strcasecmp.py -------------------------------------------------------------------------------- /taint-angr/tests/test_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_string.py -------------------------------------------------------------------------------- /taint-angr/tests/test_strtol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_strtol.py -------------------------------------------------------------------------------- /taint-angr/tests/test_structurer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_structurer.py -------------------------------------------------------------------------------- /taint-angr/tests/test_symbolic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_symbolic.py -------------------------------------------------------------------------------- /taint-angr/tests/test_syscall_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_syscall_override.py -------------------------------------------------------------------------------- /taint-angr/tests/test_tech_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_tech_builder.py -------------------------------------------------------------------------------- /taint-angr/tests/test_tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_tracer.py -------------------------------------------------------------------------------- /taint-angr/tests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_types.py -------------------------------------------------------------------------------- /taint-angr/tests/test_unicorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_unicorn.py -------------------------------------------------------------------------------- /taint-angr/tests/test_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_unique.py -------------------------------------------------------------------------------- /taint-angr/tests/test_unsupported.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_unsupported.py -------------------------------------------------------------------------------- /taint-angr/tests/test_variable_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_variable_registration.py -------------------------------------------------------------------------------- /taint-angr/tests/test_variablerecovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_variablerecovery.py -------------------------------------------------------------------------------- /taint-angr/tests/test_veritesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_veritesting.py -------------------------------------------------------------------------------- /taint-angr/tests/test_vex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_vex.py -------------------------------------------------------------------------------- /taint-angr/tests/test_vfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_vfg.py -------------------------------------------------------------------------------- /taint-angr/tests/test_windows_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_windows_args.py -------------------------------------------------------------------------------- /taint-angr/tests/test_windows_stack_cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqi1/taint_angr/HEAD/taint-angr/tests/test_windows_stack_cookie.py --------------------------------------------------------------------------------