├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── chrome_patches ├── README.md ├── custom_compiler_patch.patch ├── log_message.patch └── wllvm-build.patch ├── env.rc ├── experiment ├── number_of_crash.py └── time_break_down.py ├── fuzzer ├── WebGLFuzzer.py ├── executor │ ├── __init__.py │ ├── exec_log.py │ ├── executor.py │ └── executor_builder.py ├── executor_defs │ └── executors_def_example.ini ├── fuzzer │ ├── __init__.py │ ├── coverage_tracking.py │ ├── fuzzer.py │ ├── internal_state.py │ ├── runtime_message_parser.py │ └── signal_handler.py ├── logging.ini ├── pkgs.txt ├── program │ ├── __init__.py │ ├── analysis │ │ ├── __init__.py │ │ ├── base_analyzer.py │ │ └── shader_analyzers │ │ │ ├── attachShader_analyzer.py │ │ │ ├── attrib_uniform_analyzers.py │ │ │ ├── compileShader_analyzer.py │ │ │ ├── createProgram_analyzer.py │ │ │ ├── createShader_analyzer.py │ │ │ ├── linkProgram_analyzer.py │ │ │ ├── shaderSource_analyzer.py │ │ │ ├── shader_base_analyzer.py │ │ │ └── useProgram_analyzer.py │ ├── api_spec │ │ ├── __init__.py │ │ ├── api.py │ │ ├── api_analyzer_config.ini │ │ ├── apidep_v1.pickle │ │ ├── apidep_v2.pickle │ │ ├── macro.py │ │ ├── spec_v1.pickle │ │ ├── spec_v2.pickle │ │ ├── specs_config.ini │ │ ├── type_info │ │ │ ├── __init__.py │ │ │ ├── gen_types.py │ │ │ ├── type.py │ │ │ ├── types_1.txt │ │ │ ├── types_all.txt │ │ │ └── types_sorted.txt │ │ └── webgl_spec.py │ ├── config.py │ ├── gen_constraints.py │ ├── mutation │ │ ├── __init__.py │ │ ├── __log_analysis_v1.json │ │ ├── __log_analysis_v2.json │ │ ├── mutator_dispatcher.py │ │ └── mutators │ │ │ ├── __init__.py │ │ │ ├── adjust_program_mutator.py │ │ │ ├── auto │ │ │ ├── __init__.py │ │ │ ├── activeuniformsget_active_uniforms_mutator.py │ │ │ ├── alignmentpixel_storei_mutator.py │ │ │ ├── arraybuffervertex_attrib_i_pointer_mutator.py │ │ │ ├── arraybuffervertex_attrib_pointer_mutator.py │ │ │ ├── arraybufferviewread_pixels_mutator.py │ │ │ ├── arrayvertex_attribfv_mutator.py │ │ │ ├── attributedraw_arrays_instanced_mutator.py │ │ │ ├── attributedraw_arrays_mutator.py │ │ │ ├── attributedraw_elements_instanced_mutator.py │ │ │ ├── attributedraw_elements_mutator.py │ │ │ ├── attributedraw_range_elements_mutator.py │ │ │ ├── attributesget_active_attrib_mutator.py │ │ │ ├── boundpixelunpackbuffercompressed_tex_image_d_mutator.py │ │ │ ├── boundpixelunpackbuffercompressed_tex_sub_image_d_mutator.py │ │ │ ├── boundpixelunpackbuffertex_image_d_mutator.py │ │ │ ├── boundpixelunpackbuffertex_sub_image_d_mutator.py │ │ │ ├── buffercompressed_tex_image_d_mutator.py │ │ │ ├── buffercompressed_tex_sub_image_d_mutator.py │ │ │ ├── bufferdraw_arrays_instanced_mutator.py │ │ │ ├── bufferdraw_arrays_mutator.py │ │ │ ├── bufferdraw_elements_instanced_mutator.py │ │ │ ├── bufferdraw_elements_mutator.py │ │ │ ├── bufferdraw_range_elements_mutator.py │ │ │ ├── bufferoverflowbuffer_sub_data_mutator.py │ │ │ ├── bufferoverflowcopy_buffer_sub_data_mutator.py │ │ │ ├── bufferread_pixels_mutator.py │ │ │ ├── buffersdraw_buffers_mutator.py │ │ │ ├── buffersourcecopy_buffer_sub_data_mutator.py │ │ │ ├── buffertex_image_d_mutator.py │ │ │ ├── buffertex_sub_image_d_mutator.py │ │ │ ├── charactershader_source_mutator.py │ │ │ ├── colorattachmentiextdraw_buffers_mutator.py │ │ │ ├── commentsshader_source_mutator.py │ │ │ ├── contextdelete_vertex_array_mutator.py │ │ │ ├── databuffer_data_mutator.py │ │ │ ├── destinationarraybufferviewread_pixels_mutator.py │ │ │ ├── destinationread_pixels_mutator.py │ │ │ ├── dimensionsread_pixels_mutator.py │ │ │ ├── elementbufferdestinationcopy_buffer_sub_data_mutator.py │ │ │ ├── errorget_uniform_mutator.py │ │ │ ├── feedbackbuffersbegin_transform_feedback_mutator.py │ │ │ ├── flagsclient_wait_sync_mutator.py │ │ │ ├── flagsfence_sync_mutator.py │ │ │ ├── flagswait_sync_mutator.py │ │ │ ├── flipytex_image_d_mutator.py │ │ │ ├── flipytex_sub_image_d_mutator.py │ │ │ ├── framebufferboundframebuffer_renderbuffer_mutator.py │ │ │ ├── framebufferboundframebuffer_texture_d_mutator.py │ │ │ ├── framebufferboundframebuffer_texture_layer_mutator.py │ │ │ ├── framebufferboundget_framebuffer_attachment_parameter_mutator.py │ │ │ ├── indexdisable_vertex_attrib_array_mutator.py │ │ │ ├── indexenable_vertex_attrib_array_mutator.py │ │ │ ├── indexget_active_uniforms_mutator.py │ │ │ ├── indexget_indexed_parameter_mutator.py │ │ │ ├── indexget_transform_feedback_varying_mutator.py │ │ │ ├── indexget_vertex_attrib_mutator.py │ │ │ ├── indexvertex_attrib_divisor_mutator.py │ │ │ ├── indexvertex_attrib_i_pointer_mutator.py │ │ │ ├── indexvertex_attrib_pointer_mutator.py │ │ │ ├── lengthbuffer_data_mutator.py │ │ │ ├── lengthbuffer_sub_data_mutator.py │ │ │ ├── locationuniformf_mutator.py │ │ │ ├── locationuniformi_mutator.py │ │ │ ├── locationuniformui_mutator.py │ │ │ ├── maskclear_mutator.py │ │ │ ├── maxclientwaittimeoutwebglclient_wait_sync_mutator.py │ │ │ ├── maxcolorattachmentsread_buffer_mutator.py │ │ │ ├── numberdraw_buffers_mutator.py │ │ │ ├── objectdelete_vertex_array_mutator.py │ │ │ ├── opaqueframebufferboundframebuffer_renderbuffer_mutator.py │ │ │ ├── opaqueframebufferboundframebuffer_texture_d_mutator.py │ │ │ ├── opaqueframebufferboundframebuffer_texture_layer_mutator.py │ │ │ ├── opaqueframebufferdelete_framebuffer_mutator.py │ │ │ ├── opaqueframebufferget_framebuffer_attachment_parameter_mutator.py │ │ │ ├── parameterpixel_storei_mutator.py │ │ │ ├── pbotex_image_d_mutator.py │ │ │ ├── pbotex_sub_image_d_mutator.py │ │ │ ├── pixelpackbufferboundread_pixels_mutator.py │ │ │ ├── pixelpackbufferread_pixels_mutator.py │ │ │ ├── prefixbind_attrib_location_mutator.py │ │ │ ├── premultiplyalphaisnttex_image_d_mutator.py │ │ │ ├── premultiplyalphaisnttex_sub_image_d_mutator.py │ │ │ ├── programbegin_transform_feedback_mutator.py │ │ │ ├── programget_attrib_location_mutator.py │ │ │ ├── programget_transform_feedback_varying_mutator.py │ │ │ ├── programget_uniform_location_mutator.py │ │ │ ├── programget_uniform_mutator.py │ │ │ ├── programlink_program_mutator.py │ │ │ ├── programobjectbegin_transform_feedback_mutator.py │ │ │ ├── programuniformf_mutator.py │ │ │ ├── programuniformi_mutator.py │ │ │ ├── programuniformui_mutator.py │ │ │ ├── programuse_program_mutator.py │ │ │ ├── querybegin_query_mutator.py │ │ │ ├── queryget_query_parameter_mutator.py │ │ │ ├── queryobjectget_query_parameter_mutator.py │ │ │ ├── queryparametersget_framebuffer_attachment_parameter_mutator.py │ │ │ ├── rangebind_sampler_mutator.py │ │ │ ├── rangecompressed_tex_image_d_mutator.py │ │ │ ├── rangecompressed_tex_sub_image_d_mutator.py │ │ │ ├── rangedisable_vertex_attrib_array_mutator.py │ │ │ ├── rangeenable_vertex_attrib_array_mutator.py │ │ │ ├── rangeget_indexed_parameter_mutator.py │ │ │ ├── rangeget_vertex_attrib_mutator.py │ │ │ ├── rangeread_pixels_mutator.py │ │ │ ├── rangevertex_attrib_divisor_mutator.py │ │ │ ├── rangevertex_attrib_i_pointer_mutator.py │ │ │ ├── rangevertex_attrib_pointer_mutator.py │ │ │ ├── readbufferread_buffer_mutator.py │ │ │ ├── renderbufferboundget_renderbuffer_parameter_mutator.py │ │ │ ├── renderbufferframebuffer_renderbuffer_mutator.py │ │ │ ├── shaderattach_shader_mutator.py │ │ │ ├── shaderattachmentattach_shader_mutator.py │ │ │ ├── shaderdetach_shader_mutator.py │ │ │ ├── srclengthoverridecompressed_tex_image_d_mutator.py │ │ │ ├── srclengthoverridecompressed_tex_sub_image_d_mutator.py │ │ │ ├── srcoffsetcompressed_tex_image_d_mutator.py │ │ │ ├── srcoffsetcompressed_tex_sub_image_d_mutator.py │ │ │ ├── targetbegin_query_mutator.py │ │ │ ├── targetqueryend_query_mutator.py │ │ │ ├── targetsbind_texture_mutator.py │ │ │ ├── texturesbind_texture_mutator.py │ │ │ ├── texturestex_image_d_mutator.py │ │ │ ├── texturestex_sub_image_d_mutator.py │ │ │ ├── texturetypeframebuffer_texture_layer_mutator.py │ │ │ ├── textureunitbind_sampler_mutator.py │ │ │ ├── timeoutclient_wait_sync_mutator.py │ │ │ ├── timeoutwait_sync_mutator.py │ │ │ ├── transformfeedbackbegin_transform_feedback_mutator.py │ │ │ ├── transformfeedbackbind_buffer_base_mutator.py │ │ │ ├── transformfeedbackbind_transform_feedback_mutator.py │ │ │ ├── transformfeedbackobjectdelete_transform_feedback_mutator.py │ │ │ ├── transformfeedbackobjectslink_program_mutator.py │ │ │ ├── transformfeedbackuse_program_mutator.py │ │ │ ├── transformfeedbackvaryingsbegin_transform_feedback_mutator.py │ │ │ ├── typebegin_query_mutator.py │ │ │ ├── typebind_texture_mutator.py │ │ │ ├── typebyteread_pixels_mutator.py │ │ │ ├── typefloatread_pixels_mutator.py │ │ │ ├── typeget_uniform_mutator.py │ │ │ ├── typehalffloatoesread_pixels_mutator.py │ │ │ ├── typehalffloatread_pixels_mutator.py │ │ │ ├── typeintread_pixels_mutator.py │ │ │ ├── typeread_pixels_mutator.py │ │ │ ├── typeunsignedbyteread_pixels_mutator.py │ │ │ ├── typeunsignedintread_pixels_mutator.py │ │ │ ├── typeunsignedshortread_pixels_mutator.py │ │ │ ├── uniformblockindexget_active_uniform_block_name_mutator.py │ │ │ ├── uniformlocationget_uniform_mutator.py │ │ │ ├── uniformsget_active_uniform_mutator.py │ │ │ ├── uniformsget_uniform_mutator.py │ │ │ ├── unpackcolorspaceconversionwebglpixel_storei_mutator.py │ │ │ ├── valuepixel_storei_mutator.py │ │ │ ├── varyingstransform_feedback_varyings_mutator.py │ │ │ └── zfardepth_range_mutator.py │ │ │ ├── base_mutator.py │ │ │ ├── bind_buffer_mutator.py │ │ │ ├── bind_renderbuffer_mutator.py │ │ │ ├── bind_texture_mutator.py │ │ │ ├── enum_arg_mutator.py │ │ │ ├── link_program_mutator.py │ │ │ └── use_program_mutator.py │ ├── program.py │ └── shader │ │ ├── README.md │ │ ├── __init__.py │ │ ├── shader_src.py │ │ └── shaders.pickle ├── tools │ ├── README.md │ ├── __log_analysis_v1.json │ ├── __log_analysis_v2.json │ ├── api_names_v1.txt │ ├── api_names_v2.txt │ ├── apidep_v1.pickle │ ├── apidep_v2.pickle │ ├── check_enum_args_empty_constraints.py │ ├── execute_program.py │ ├── gen_log_analysis_skeleton_res.py │ ├── get_all_api_names.py │ ├── import_api_dep.py │ ├── import_apis.py │ ├── import_shaders.py │ ├── mutator-gen │ │ ├── blink_errors.dat │ │ ├── gpu_errors.dat │ │ └── mutator_generator.py │ ├── pickle_to_json.py │ ├── seed-collection │ │ └── convert_trace_to_seeds.py │ ├── shaders_cache.txt │ ├── spec_v1.pickle │ ├── spec_v2.pickle │ ├── v1.json │ ├── v2.json │ └── verify_analysis_res.py └── utils │ ├── test_utils.py │ └── utils.py ├── mk_virtualenv.sh ├── static-analysis └── chrome-error-message-analyzer │ ├── CMakeLists.txt │ ├── cmake │ └── svf.cmake │ ├── config.h.in │ ├── include │ ├── CFL │ │ ├── CFGNormalizer.h │ │ ├── CFLAlias.h │ │ ├── CFLGramGraphChecker.h │ │ ├── CFLGrammar.h │ │ ├── CFLGrammar.txt │ │ ├── CFLGraphBuilder.h │ │ ├── CFLSolver.h │ │ ├── CFLStat.h │ │ ├── CFLVF.h │ │ ├── GrammarBuilder.h │ │ ├── PEGGrammar.txt │ │ └── VFG.txt │ ├── DDA │ │ ├── ContextDDA.h │ │ ├── DDAClient.h │ │ ├── DDAPass.h │ │ ├── DDAStat.h │ │ ├── DDAVFSolver.h │ │ └── FlowDDA.h │ ├── FastCluster │ │ ├── LICENSE.TXT │ │ └── fastcluster.h │ ├── Graphs │ │ ├── CFLGraph.h │ │ ├── CHG.h │ │ ├── ConsG.h │ │ ├── ConsGEdge.h │ │ ├── ConsGNode.h │ │ ├── GenericGraph.h │ │ ├── GraphPrinter.h │ │ ├── ICFG.h │ │ ├── ICFGEdge.h │ │ ├── ICFGNode.h │ │ ├── ICFGStat.h │ │ ├── IRGraph.h │ │ ├── PTACallGraph.h │ │ ├── SVFG.h │ │ ├── SVFGEdge.h │ │ ├── SVFGNode.h │ │ ├── SVFGOPT.h │ │ ├── SVFGStat.h │ │ ├── ThreadCallGraph.h │ │ ├── VFG.h │ │ ├── VFGEdge.h │ │ └── VFGNode.h │ ├── MSSA │ │ ├── MSSAMuChi.h │ │ ├── MemPartition.h │ │ ├── MemRegion.h │ │ ├── MemSSA.h │ │ └── SVFGBuilder.h │ ├── MTA │ │ ├── FSMPTA.h │ │ ├── LockAnalysis.h │ │ ├── LockResultValidator.h │ │ ├── MHP.h │ │ ├── MTA.h │ │ ├── MTAAnnotator.h │ │ ├── MTAResultValidator.h │ │ ├── MTAStat.h │ │ ├── PCG.h │ │ └── TCT.h │ ├── MemoryModel │ │ ├── AbstractPointsToDS.h │ │ ├── ConditionalPT.h │ │ ├── LocationSet.h │ │ ├── MutablePointsToDS.h │ │ ├── PAGBuilderFromFile.h │ │ ├── PersistentPointsToCache.h │ │ ├── PersistentPointsToDS.h │ │ ├── PointerAnalysis.h │ │ ├── PointerAnalysisImpl.h │ │ ├── PointsTo.h │ │ ├── SVFIR.h │ │ ├── SVFLoop.h │ │ ├── SVFStatements.h │ │ ├── SVFVariables.h │ │ └── SymbolTableInfo.h │ ├── SABER │ │ ├── DoubleFreeChecker.h │ │ ├── FileChecker.h │ │ ├── LeakChecker.h │ │ ├── ProgSlice.h │ │ ├── SaberAnnotator.h │ │ ├── SaberCheckerAPI.h │ │ ├── SaberCondAllocator.h │ │ ├── SaberSVFGBuilder.h │ │ ├── SrcSnkDDA.h │ │ └── SrcSnkSolver.h │ ├── SVF-FE │ │ ├── BasicTypes.h │ │ ├── BreakConstantExpr.h │ │ ├── CHGBuilder.h │ │ ├── CPPUtil.h │ │ ├── CallGraphBuilder.h │ │ ├── DCHG.h │ │ ├── DataFlowUtil.h │ │ ├── GEPTypeBridgeIterator.h │ │ ├── Graph2Json.h │ │ ├── ICFGBuilder.h │ │ ├── IRAnnotator.h │ │ ├── LLVMLoopAnalysis.h │ │ ├── LLVMModule.h │ │ ├── LLVMUtil.h │ │ ├── SVFIRBuilder.h │ │ └── SymbolTableBuilder.h │ ├── Util │ │ ├── Annotator.h │ │ ├── BasicTypes.h │ │ ├── BitVector.h │ │ ├── Casting.h │ │ ├── CoreBitVector.h │ │ ├── CxtStmt.h │ │ ├── DPItem.h │ │ ├── ExeState.h │ │ ├── ExtAPI.h │ │ ├── ExtAPI.json │ │ ├── GraphReachSolver.h │ │ ├── NodeIDAllocator.h │ │ ├── Options.h │ │ ├── PTAStat.h │ │ ├── SCC.h │ │ ├── SVFBasicTypes.h │ │ ├── SVFModule.h │ │ ├── SVFStat.h │ │ ├── SVFUtil.h │ │ ├── SparseBitVector.h │ │ ├── SymState.h │ │ ├── ThreadAPI.h │ │ ├── WorkList.h │ │ ├── Z3Expr.h │ │ ├── cJSON.h │ │ └── config.h │ └── WPA │ │ ├── Andersen.h │ │ ├── AndersenPWC.h │ │ ├── CSC.h │ │ ├── FlowSensitive.h │ │ ├── Steensgaard.h │ │ ├── TypeAnalysis.h │ │ ├── VersionedFlowSensitive.h │ │ ├── WPAFSSolver.h │ │ ├── WPAPass.h │ │ ├── WPASolver.h │ │ └── WPAStat.h │ └── tools │ ├── CFL │ ├── CMakeLists.txt │ └── cfl.cpp │ ├── CMakeLists.txt │ ├── DDA │ ├── CMakeLists.txt │ └── dda.cpp │ ├── Example │ ├── CMakeLists.txt │ └── svf-ex.cpp │ ├── MTA │ ├── CMakeLists.txt │ └── mta.cpp │ ├── SABER │ ├── CMakeLists.txt │ └── saber.cpp │ ├── WPA │ ├── CMakeLists.txt │ └── wpa.cpp │ └── chrome-gl-analysis │ ├── CMakeLists.txt │ ├── api_func_parse.cpp │ ├── assets │ ├── api_specs │ │ ├── v1.json │ │ └── v2.json │ ├── api_to_fname │ │ ├── v1.json │ │ └── v2.json │ └── webgl_ir │ │ ├── llvm-10 │ │ ├── webgl_all_rendering_code.bc │ │ └── webgl_all_rendering_code.ll │ │ └── llvm-15 │ │ ├── chrome_build_args │ │ ├── chrome_commit_id │ │ ├── webgl_all_rendering_code.bc │ │ └── webgl_all_rendering_code.ll │ ├── err_msg_analysis.cpp │ ├── err_msg_dep_analysis.cpp │ ├── inst_visitor.hpp │ ├── llvm_utils.cpp │ ├── llvm_utils.hpp │ ├── svf_utils.cpp │ ├── svf_utils.hpp │ ├── util.cpp │ └── util.h ├── webdriver ├── appium-setup │ ├── android-setup.md │ ├── appium-notes.md │ ├── general-instruction.md │ ├── ios-setup.md │ ├── nodeConfig_sample.json │ ├── notes-about-nodeconfig-json.md │ └── start_appium.sh └── selenium-setup │ ├── README.md │ ├── env.rc │ ├── hubConfig.json │ ├── nodeConfig.json │ ├── selenium-hub │ ├── hubConfig2.json │ └── run-hub.sh │ ├── selenium-node │ ├── nodeConfig.json │ └── start_node.sh │ └── selenium-server-standalone-3.141.59.jar └── webgl-executor ├── debug-auto.html ├── debug.html ├── images └── tiny.png ├── index.html ├── js ├── jquery-3.5.0.min.js ├── jquery-ui-1.12.1 │ ├── AUTHORS.txt │ ├── LICENSE.txt │ ├── external │ │ └── jquery │ │ │ └── jquery.js │ ├── images │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── index.html │ ├── jquery-ui.css │ ├── jquery-ui.js │ ├── jquery-ui.min.css │ ├── jquery-ui.min.js │ ├── jquery-ui.structure.css │ ├── jquery-ui.structure.min.css │ ├── jquery-ui.theme.css │ ├── jquery-ui.theme.min.css │ └── package.json └── test_runner.js ├── test.html ├── v1.json ├── v2.json └── videos └── small.mp4 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/README.md -------------------------------------------------------------------------------- /chrome_patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/chrome_patches/README.md -------------------------------------------------------------------------------- /chrome_patches/custom_compiler_patch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/chrome_patches/custom_compiler_patch.patch -------------------------------------------------------------------------------- /chrome_patches/log_message.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/chrome_patches/log_message.patch -------------------------------------------------------------------------------- /chrome_patches/wllvm-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/chrome_patches/wllvm-build.patch -------------------------------------------------------------------------------- /env.rc: -------------------------------------------------------------------------------- 1 | source venv/bin/activate 2 | -------------------------------------------------------------------------------- /experiment/number_of_crash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/experiment/number_of_crash.py -------------------------------------------------------------------------------- /experiment/time_break_down.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/experiment/time_break_down.py -------------------------------------------------------------------------------- /fuzzer/WebGLFuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/WebGLFuzzer.py -------------------------------------------------------------------------------- /fuzzer/executor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/executor/__init__.py -------------------------------------------------------------------------------- /fuzzer/executor/exec_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/executor/exec_log.py -------------------------------------------------------------------------------- /fuzzer/executor/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/executor/executor.py -------------------------------------------------------------------------------- /fuzzer/executor/executor_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/executor/executor_builder.py -------------------------------------------------------------------------------- /fuzzer/executor_defs/executors_def_example.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/executor_defs/executors_def_example.ini -------------------------------------------------------------------------------- /fuzzer/fuzzer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/fuzzer/__init__.py -------------------------------------------------------------------------------- /fuzzer/fuzzer/coverage_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/fuzzer/coverage_tracking.py -------------------------------------------------------------------------------- /fuzzer/fuzzer/fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/fuzzer/fuzzer.py -------------------------------------------------------------------------------- /fuzzer/fuzzer/internal_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/fuzzer/internal_state.py -------------------------------------------------------------------------------- /fuzzer/fuzzer/runtime_message_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/fuzzer/runtime_message_parser.py -------------------------------------------------------------------------------- /fuzzer/fuzzer/signal_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/fuzzer/signal_handler.py -------------------------------------------------------------------------------- /fuzzer/logging.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/logging.ini -------------------------------------------------------------------------------- /fuzzer/pkgs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/pkgs.txt -------------------------------------------------------------------------------- /fuzzer/program/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/__init__.py -------------------------------------------------------------------------------- /fuzzer/program/analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/analysis/__init__.py -------------------------------------------------------------------------------- /fuzzer/program/analysis/base_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/analysis/base_analyzer.py -------------------------------------------------------------------------------- /fuzzer/program/analysis/shader_analyzers/attachShader_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/analysis/shader_analyzers/attachShader_analyzer.py -------------------------------------------------------------------------------- /fuzzer/program/analysis/shader_analyzers/attrib_uniform_analyzers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/analysis/shader_analyzers/attrib_uniform_analyzers.py -------------------------------------------------------------------------------- /fuzzer/program/analysis/shader_analyzers/compileShader_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/analysis/shader_analyzers/compileShader_analyzer.py -------------------------------------------------------------------------------- /fuzzer/program/analysis/shader_analyzers/createProgram_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/analysis/shader_analyzers/createProgram_analyzer.py -------------------------------------------------------------------------------- /fuzzer/program/analysis/shader_analyzers/createShader_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/analysis/shader_analyzers/createShader_analyzer.py -------------------------------------------------------------------------------- /fuzzer/program/analysis/shader_analyzers/linkProgram_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/analysis/shader_analyzers/linkProgram_analyzer.py -------------------------------------------------------------------------------- /fuzzer/program/analysis/shader_analyzers/shaderSource_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/analysis/shader_analyzers/shaderSource_analyzer.py -------------------------------------------------------------------------------- /fuzzer/program/analysis/shader_analyzers/shader_base_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/analysis/shader_analyzers/shader_base_analyzer.py -------------------------------------------------------------------------------- /fuzzer/program/analysis/shader_analyzers/useProgram_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/analysis/shader_analyzers/useProgram_analyzer.py -------------------------------------------------------------------------------- /fuzzer/program/api_spec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/api_spec/__init__.py -------------------------------------------------------------------------------- /fuzzer/program/api_spec/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/api_spec/api.py -------------------------------------------------------------------------------- /fuzzer/program/api_spec/api_analyzer_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/api_spec/api_analyzer_config.ini -------------------------------------------------------------------------------- /fuzzer/program/api_spec/apidep_v1.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/api_spec/apidep_v1.pickle -------------------------------------------------------------------------------- /fuzzer/program/api_spec/apidep_v2.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/api_spec/apidep_v2.pickle -------------------------------------------------------------------------------- /fuzzer/program/api_spec/macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/api_spec/macro.py -------------------------------------------------------------------------------- /fuzzer/program/api_spec/spec_v1.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/api_spec/spec_v1.pickle -------------------------------------------------------------------------------- /fuzzer/program/api_spec/spec_v2.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/api_spec/spec_v2.pickle -------------------------------------------------------------------------------- /fuzzer/program/api_spec/specs_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/api_spec/specs_config.ini -------------------------------------------------------------------------------- /fuzzer/program/api_spec/type_info/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/api_spec/type_info/__init__.py -------------------------------------------------------------------------------- /fuzzer/program/api_spec/type_info/gen_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/api_spec/type_info/gen_types.py -------------------------------------------------------------------------------- /fuzzer/program/api_spec/type_info/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/api_spec/type_info/type.py -------------------------------------------------------------------------------- /fuzzer/program/api_spec/type_info/types_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/api_spec/type_info/types_1.txt -------------------------------------------------------------------------------- /fuzzer/program/api_spec/type_info/types_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/api_spec/type_info/types_all.txt -------------------------------------------------------------------------------- /fuzzer/program/api_spec/type_info/types_sorted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/api_spec/type_info/types_sorted.txt -------------------------------------------------------------------------------- /fuzzer/program/api_spec/webgl_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/api_spec/webgl_spec.py -------------------------------------------------------------------------------- /fuzzer/program/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/config.py -------------------------------------------------------------------------------- /fuzzer/program/gen_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/gen_constraints.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/__init__.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/__log_analysis_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/__log_analysis_v1.json -------------------------------------------------------------------------------- /fuzzer/program/mutation/__log_analysis_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/__log_analysis_v2.json -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutator_dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutator_dispatcher.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/__init__.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/adjust_program_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/adjust_program_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/__init__.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/activeuniformsget_active_uniforms_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/activeuniformsget_active_uniforms_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/alignmentpixel_storei_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/alignmentpixel_storei_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/arraybuffervertex_attrib_i_pointer_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/arraybuffervertex_attrib_i_pointer_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/arraybuffervertex_attrib_pointer_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/arraybuffervertex_attrib_pointer_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/arraybufferviewread_pixels_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/arraybufferviewread_pixels_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/arrayvertex_attribfv_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/arrayvertex_attribfv_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/attributedraw_arrays_instanced_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/attributedraw_arrays_instanced_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/attributedraw_arrays_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/attributedraw_arrays_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/attributedraw_elements_instanced_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/attributedraw_elements_instanced_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/attributedraw_elements_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/attributedraw_elements_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/attributedraw_range_elements_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/attributedraw_range_elements_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/attributesget_active_attrib_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/attributesget_active_attrib_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/boundpixelunpackbuffercompressed_tex_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/boundpixelunpackbuffercompressed_tex_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/boundpixelunpackbuffercompressed_tex_sub_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/boundpixelunpackbuffercompressed_tex_sub_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/boundpixelunpackbuffertex_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/boundpixelunpackbuffertex_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/boundpixelunpackbuffertex_sub_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/boundpixelunpackbuffertex_sub_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/buffercompressed_tex_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/buffercompressed_tex_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/buffercompressed_tex_sub_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/buffercompressed_tex_sub_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/bufferdraw_arrays_instanced_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/bufferdraw_arrays_instanced_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/bufferdraw_arrays_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/bufferdraw_arrays_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/bufferdraw_elements_instanced_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/bufferdraw_elements_instanced_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/bufferdraw_elements_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/bufferdraw_elements_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/bufferdraw_range_elements_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/bufferdraw_range_elements_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/bufferoverflowbuffer_sub_data_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/bufferoverflowbuffer_sub_data_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/bufferoverflowcopy_buffer_sub_data_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/bufferoverflowcopy_buffer_sub_data_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/bufferread_pixels_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/bufferread_pixels_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/buffersdraw_buffers_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/buffersdraw_buffers_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/buffersourcecopy_buffer_sub_data_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/buffersourcecopy_buffer_sub_data_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/buffertex_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/buffertex_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/buffertex_sub_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/buffertex_sub_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/charactershader_source_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/charactershader_source_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/colorattachmentiextdraw_buffers_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/colorattachmentiextdraw_buffers_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/commentsshader_source_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/commentsshader_source_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/contextdelete_vertex_array_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/contextdelete_vertex_array_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/databuffer_data_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/databuffer_data_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/destinationarraybufferviewread_pixels_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/destinationarraybufferviewread_pixels_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/destinationread_pixels_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/destinationread_pixels_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/dimensionsread_pixels_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/dimensionsread_pixels_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/elementbufferdestinationcopy_buffer_sub_data_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/elementbufferdestinationcopy_buffer_sub_data_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/errorget_uniform_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/errorget_uniform_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/feedbackbuffersbegin_transform_feedback_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/feedbackbuffersbegin_transform_feedback_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/flagsclient_wait_sync_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/flagsclient_wait_sync_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/flagsfence_sync_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/flagsfence_sync_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/flagswait_sync_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/flagswait_sync_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/flipytex_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/flipytex_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/flipytex_sub_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/flipytex_sub_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/framebufferboundframebuffer_renderbuffer_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/framebufferboundframebuffer_renderbuffer_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/framebufferboundframebuffer_texture_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/framebufferboundframebuffer_texture_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/framebufferboundframebuffer_texture_layer_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/framebufferboundframebuffer_texture_layer_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/framebufferboundget_framebuffer_attachment_parameter_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/framebufferboundget_framebuffer_attachment_parameter_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/indexdisable_vertex_attrib_array_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/indexdisable_vertex_attrib_array_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/indexenable_vertex_attrib_array_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/indexenable_vertex_attrib_array_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/indexget_active_uniforms_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/indexget_active_uniforms_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/indexget_indexed_parameter_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/indexget_indexed_parameter_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/indexget_transform_feedback_varying_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/indexget_transform_feedback_varying_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/indexget_vertex_attrib_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/indexget_vertex_attrib_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/indexvertex_attrib_divisor_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/indexvertex_attrib_divisor_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/indexvertex_attrib_i_pointer_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/indexvertex_attrib_i_pointer_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/indexvertex_attrib_pointer_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/indexvertex_attrib_pointer_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/lengthbuffer_data_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/lengthbuffer_data_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/lengthbuffer_sub_data_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/lengthbuffer_sub_data_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/locationuniformf_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/locationuniformf_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/locationuniformi_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/locationuniformi_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/locationuniformui_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/locationuniformui_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/maskclear_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/maskclear_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/maxclientwaittimeoutwebglclient_wait_sync_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/maxclientwaittimeoutwebglclient_wait_sync_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/maxcolorattachmentsread_buffer_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/maxcolorattachmentsread_buffer_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/numberdraw_buffers_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/numberdraw_buffers_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/objectdelete_vertex_array_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/objectdelete_vertex_array_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/opaqueframebufferboundframebuffer_renderbuffer_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/opaqueframebufferboundframebuffer_renderbuffer_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/opaqueframebufferboundframebuffer_texture_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/opaqueframebufferboundframebuffer_texture_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/opaqueframebufferboundframebuffer_texture_layer_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/opaqueframebufferboundframebuffer_texture_layer_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/opaqueframebufferdelete_framebuffer_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/opaqueframebufferdelete_framebuffer_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/opaqueframebufferget_framebuffer_attachment_parameter_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/opaqueframebufferget_framebuffer_attachment_parameter_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/parameterpixel_storei_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/parameterpixel_storei_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/pbotex_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/pbotex_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/pbotex_sub_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/pbotex_sub_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/pixelpackbufferboundread_pixels_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/pixelpackbufferboundread_pixels_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/pixelpackbufferread_pixels_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/pixelpackbufferread_pixels_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/prefixbind_attrib_location_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/prefixbind_attrib_location_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/premultiplyalphaisnttex_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/premultiplyalphaisnttex_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/premultiplyalphaisnttex_sub_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/premultiplyalphaisnttex_sub_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/programbegin_transform_feedback_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/programbegin_transform_feedback_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/programget_attrib_location_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/programget_attrib_location_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/programget_transform_feedback_varying_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/programget_transform_feedback_varying_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/programget_uniform_location_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/programget_uniform_location_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/programget_uniform_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/programget_uniform_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/programlink_program_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/programlink_program_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/programobjectbegin_transform_feedback_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/programobjectbegin_transform_feedback_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/programuniformf_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/programuniformf_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/programuniformi_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/programuniformi_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/programuniformui_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/programuniformui_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/programuse_program_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/programuse_program_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/querybegin_query_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/querybegin_query_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/queryget_query_parameter_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/queryget_query_parameter_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/queryobjectget_query_parameter_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/queryobjectget_query_parameter_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/queryparametersget_framebuffer_attachment_parameter_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/queryparametersget_framebuffer_attachment_parameter_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/rangebind_sampler_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/rangebind_sampler_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/rangecompressed_tex_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/rangecompressed_tex_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/rangecompressed_tex_sub_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/rangecompressed_tex_sub_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/rangedisable_vertex_attrib_array_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/rangedisable_vertex_attrib_array_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/rangeenable_vertex_attrib_array_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/rangeenable_vertex_attrib_array_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/rangeget_indexed_parameter_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/rangeget_indexed_parameter_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/rangeget_vertex_attrib_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/rangeget_vertex_attrib_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/rangeread_pixels_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/rangeread_pixels_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/rangevertex_attrib_divisor_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/rangevertex_attrib_divisor_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/rangevertex_attrib_i_pointer_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/rangevertex_attrib_i_pointer_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/rangevertex_attrib_pointer_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/rangevertex_attrib_pointer_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/readbufferread_buffer_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/readbufferread_buffer_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/renderbufferboundget_renderbuffer_parameter_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/renderbufferboundget_renderbuffer_parameter_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/renderbufferframebuffer_renderbuffer_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/renderbufferframebuffer_renderbuffer_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/shaderattach_shader_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/shaderattach_shader_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/shaderattachmentattach_shader_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/shaderattachmentattach_shader_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/shaderdetach_shader_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/shaderdetach_shader_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/srclengthoverridecompressed_tex_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/srclengthoverridecompressed_tex_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/srclengthoverridecompressed_tex_sub_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/srclengthoverridecompressed_tex_sub_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/srcoffsetcompressed_tex_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/srcoffsetcompressed_tex_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/srcoffsetcompressed_tex_sub_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/srcoffsetcompressed_tex_sub_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/targetbegin_query_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/targetbegin_query_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/targetqueryend_query_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/targetqueryend_query_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/targetsbind_texture_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/targetsbind_texture_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/texturesbind_texture_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/texturesbind_texture_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/texturestex_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/texturestex_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/texturestex_sub_image_d_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/texturestex_sub_image_d_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/texturetypeframebuffer_texture_layer_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/texturetypeframebuffer_texture_layer_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/textureunitbind_sampler_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/textureunitbind_sampler_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/timeoutclient_wait_sync_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/timeoutclient_wait_sync_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/timeoutwait_sync_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/timeoutwait_sync_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/transformfeedbackbegin_transform_feedback_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/transformfeedbackbegin_transform_feedback_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/transformfeedbackbind_buffer_base_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/transformfeedbackbind_buffer_base_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/transformfeedbackbind_transform_feedback_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/transformfeedbackbind_transform_feedback_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/transformfeedbackobjectdelete_transform_feedback_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/transformfeedbackobjectdelete_transform_feedback_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/transformfeedbackobjectslink_program_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/transformfeedbackobjectslink_program_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/transformfeedbackuse_program_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/transformfeedbackuse_program_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/transformfeedbackvaryingsbegin_transform_feedback_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/transformfeedbackvaryingsbegin_transform_feedback_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/typebegin_query_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/typebegin_query_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/typebind_texture_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/typebind_texture_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/typebyteread_pixels_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/typebyteread_pixels_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/typefloatread_pixels_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/typefloatread_pixels_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/typeget_uniform_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/typeget_uniform_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/typehalffloatoesread_pixels_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/typehalffloatoesread_pixels_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/typehalffloatread_pixels_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/typehalffloatread_pixels_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/typeintread_pixels_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/typeintread_pixels_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/typeread_pixels_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/typeread_pixels_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/typeunsignedbyteread_pixels_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/typeunsignedbyteread_pixels_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/typeunsignedintread_pixels_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/typeunsignedintread_pixels_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/typeunsignedshortread_pixels_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/typeunsignedshortread_pixels_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/uniformblockindexget_active_uniform_block_name_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/uniformblockindexget_active_uniform_block_name_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/uniformlocationget_uniform_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/uniformlocationget_uniform_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/uniformsget_active_uniform_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/uniformsget_active_uniform_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/uniformsget_uniform_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/uniformsget_uniform_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/unpackcolorspaceconversionwebglpixel_storei_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/unpackcolorspaceconversionwebglpixel_storei_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/valuepixel_storei_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/valuepixel_storei_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/varyingstransform_feedback_varyings_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/varyingstransform_feedback_varyings_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/auto/zfardepth_range_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/auto/zfardepth_range_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/base_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/base_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/bind_buffer_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/bind_buffer_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/bind_renderbuffer_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/bind_renderbuffer_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/bind_texture_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/bind_texture_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/enum_arg_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/enum_arg_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/link_program_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/link_program_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/mutation/mutators/use_program_mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/mutation/mutators/use_program_mutator.py -------------------------------------------------------------------------------- /fuzzer/program/program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/program.py -------------------------------------------------------------------------------- /fuzzer/program/shader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/shader/README.md -------------------------------------------------------------------------------- /fuzzer/program/shader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/shader/__init__.py -------------------------------------------------------------------------------- /fuzzer/program/shader/shader_src.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/shader/shader_src.py -------------------------------------------------------------------------------- /fuzzer/program/shader/shaders.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/program/shader/shaders.pickle -------------------------------------------------------------------------------- /fuzzer/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/README.md -------------------------------------------------------------------------------- /fuzzer/tools/__log_analysis_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/__log_analysis_v1.json -------------------------------------------------------------------------------- /fuzzer/tools/__log_analysis_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/__log_analysis_v2.json -------------------------------------------------------------------------------- /fuzzer/tools/api_names_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/api_names_v1.txt -------------------------------------------------------------------------------- /fuzzer/tools/api_names_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/api_names_v2.txt -------------------------------------------------------------------------------- /fuzzer/tools/apidep_v1.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/apidep_v1.pickle -------------------------------------------------------------------------------- /fuzzer/tools/apidep_v2.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/apidep_v2.pickle -------------------------------------------------------------------------------- /fuzzer/tools/check_enum_args_empty_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/check_enum_args_empty_constraints.py -------------------------------------------------------------------------------- /fuzzer/tools/execute_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/execute_program.py -------------------------------------------------------------------------------- /fuzzer/tools/gen_log_analysis_skeleton_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/gen_log_analysis_skeleton_res.py -------------------------------------------------------------------------------- /fuzzer/tools/get_all_api_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/get_all_api_names.py -------------------------------------------------------------------------------- /fuzzer/tools/import_api_dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/import_api_dep.py -------------------------------------------------------------------------------- /fuzzer/tools/import_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/import_apis.py -------------------------------------------------------------------------------- /fuzzer/tools/import_shaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/import_shaders.py -------------------------------------------------------------------------------- /fuzzer/tools/mutator-gen/blink_errors.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/mutator-gen/blink_errors.dat -------------------------------------------------------------------------------- /fuzzer/tools/mutator-gen/gpu_errors.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/mutator-gen/gpu_errors.dat -------------------------------------------------------------------------------- /fuzzer/tools/mutator-gen/mutator_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/mutator-gen/mutator_generator.py -------------------------------------------------------------------------------- /fuzzer/tools/pickle_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/pickle_to_json.py -------------------------------------------------------------------------------- /fuzzer/tools/seed-collection/convert_trace_to_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/seed-collection/convert_trace_to_seeds.py -------------------------------------------------------------------------------- /fuzzer/tools/shaders_cache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/shaders_cache.txt -------------------------------------------------------------------------------- /fuzzer/tools/spec_v1.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/spec_v1.pickle -------------------------------------------------------------------------------- /fuzzer/tools/spec_v2.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/spec_v2.pickle -------------------------------------------------------------------------------- /fuzzer/tools/v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/v1.json -------------------------------------------------------------------------------- /fuzzer/tools/v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/v2.json -------------------------------------------------------------------------------- /fuzzer/tools/verify_analysis_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/tools/verify_analysis_res.py -------------------------------------------------------------------------------- /fuzzer/utils/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/utils/test_utils.py -------------------------------------------------------------------------------- /fuzzer/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/fuzzer/utils/utils.py -------------------------------------------------------------------------------- /mk_virtualenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/mk_virtualenv.sh -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/CMakeLists.txt -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/cmake/svf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/cmake/svf.cmake -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/config.h.in -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/CFL/CFGNormalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/CFL/CFGNormalizer.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/CFL/CFLAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/CFL/CFLAlias.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/CFL/CFLGramGraphChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/CFL/CFLGramGraphChecker.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/CFL/CFLGrammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/CFL/CFLGrammar.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/CFL/CFLGrammar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/CFL/CFLGrammar.txt -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/CFL/CFLGraphBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/CFL/CFLGraphBuilder.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/CFL/CFLSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/CFL/CFLSolver.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/CFL/CFLStat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/CFL/CFLStat.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/CFL/CFLVF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/CFL/CFLVF.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/CFL/GrammarBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/CFL/GrammarBuilder.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/CFL/PEGGrammar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/CFL/PEGGrammar.txt -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/CFL/VFG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/CFL/VFG.txt -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/DDA/ContextDDA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/DDA/ContextDDA.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/DDA/DDAClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/DDA/DDAClient.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/DDA/DDAPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/DDA/DDAPass.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/DDA/DDAStat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/DDA/DDAStat.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/DDA/DDAVFSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/DDA/DDAVFSolver.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/DDA/FlowDDA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/DDA/FlowDDA.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/FastCluster/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/FastCluster/LICENSE.TXT -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/FastCluster/fastcluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/FastCluster/fastcluster.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/CFLGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/CFLGraph.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/CHG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/CHG.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/ConsG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/ConsG.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/ConsGEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/ConsGEdge.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/ConsGNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/ConsGNode.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/GenericGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/GenericGraph.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/GraphPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/GraphPrinter.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/ICFG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/ICFG.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/ICFGEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/ICFGEdge.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/ICFGNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/ICFGNode.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/ICFGStat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/ICFGStat.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/IRGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/IRGraph.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/PTACallGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/PTACallGraph.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/SVFG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/SVFG.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/SVFGEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/SVFGEdge.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/SVFGNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/SVFGNode.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/SVFGOPT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/SVFGOPT.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/SVFGStat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/SVFGStat.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/ThreadCallGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/ThreadCallGraph.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/VFG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/VFG.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/VFGEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/VFGEdge.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Graphs/VFGNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Graphs/VFGNode.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MSSA/MSSAMuChi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MSSA/MSSAMuChi.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MSSA/MemPartition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MSSA/MemPartition.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MSSA/MemRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MSSA/MemRegion.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MSSA/MemSSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MSSA/MemSSA.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MSSA/SVFGBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MSSA/SVFGBuilder.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MTA/FSMPTA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MTA/FSMPTA.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MTA/LockAnalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MTA/LockAnalysis.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MTA/LockResultValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MTA/LockResultValidator.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MTA/MHP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MTA/MHP.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MTA/MTA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MTA/MTA.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MTA/MTAAnnotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MTA/MTAAnnotator.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MTA/MTAResultValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MTA/MTAResultValidator.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MTA/MTAStat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MTA/MTAStat.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MTA/PCG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MTA/PCG.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MTA/TCT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MTA/TCT.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MemoryModel/AbstractPointsToDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MemoryModel/AbstractPointsToDS.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MemoryModel/ConditionalPT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MemoryModel/ConditionalPT.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MemoryModel/LocationSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MemoryModel/LocationSet.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MemoryModel/MutablePointsToDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MemoryModel/MutablePointsToDS.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MemoryModel/PAGBuilderFromFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MemoryModel/PAGBuilderFromFile.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MemoryModel/PersistentPointsToCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MemoryModel/PersistentPointsToCache.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MemoryModel/PersistentPointsToDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MemoryModel/PersistentPointsToDS.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MemoryModel/PointerAnalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MemoryModel/PointerAnalysis.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MemoryModel/PointerAnalysisImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MemoryModel/PointerAnalysisImpl.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MemoryModel/PointsTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MemoryModel/PointsTo.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MemoryModel/SVFIR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MemoryModel/SVFIR.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MemoryModel/SVFLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MemoryModel/SVFLoop.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MemoryModel/SVFStatements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MemoryModel/SVFStatements.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MemoryModel/SVFVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MemoryModel/SVFVariables.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/MemoryModel/SymbolTableInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/MemoryModel/SymbolTableInfo.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SABER/DoubleFreeChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SABER/DoubleFreeChecker.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SABER/FileChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SABER/FileChecker.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SABER/LeakChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SABER/LeakChecker.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SABER/ProgSlice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SABER/ProgSlice.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SABER/SaberAnnotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SABER/SaberAnnotator.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SABER/SaberCheckerAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SABER/SaberCheckerAPI.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SABER/SaberCondAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SABER/SaberCondAllocator.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SABER/SaberSVFGBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SABER/SaberSVFGBuilder.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SABER/SrcSnkDDA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SABER/SrcSnkDDA.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SABER/SrcSnkSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SABER/SrcSnkSolver.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SVF-FE/BasicTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SVF-FE/BasicTypes.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SVF-FE/BreakConstantExpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SVF-FE/BreakConstantExpr.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SVF-FE/CHGBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SVF-FE/CHGBuilder.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SVF-FE/CPPUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SVF-FE/CPPUtil.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SVF-FE/CallGraphBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SVF-FE/CallGraphBuilder.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SVF-FE/DCHG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SVF-FE/DCHG.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SVF-FE/DataFlowUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SVF-FE/DataFlowUtil.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SVF-FE/GEPTypeBridgeIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SVF-FE/GEPTypeBridgeIterator.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SVF-FE/Graph2Json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SVF-FE/Graph2Json.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SVF-FE/ICFGBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SVF-FE/ICFGBuilder.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SVF-FE/IRAnnotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SVF-FE/IRAnnotator.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SVF-FE/LLVMLoopAnalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SVF-FE/LLVMLoopAnalysis.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SVF-FE/LLVMModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SVF-FE/LLVMModule.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SVF-FE/LLVMUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SVF-FE/LLVMUtil.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SVF-FE/SVFIRBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SVF-FE/SVFIRBuilder.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/SVF-FE/SymbolTableBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/SVF-FE/SymbolTableBuilder.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/Annotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/Annotator.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/BasicTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/BasicTypes.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/BitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/BitVector.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/Casting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/Casting.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/CoreBitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/CoreBitVector.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/CxtStmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/CxtStmt.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/DPItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/DPItem.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/ExeState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/ExeState.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/ExtAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/ExtAPI.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/ExtAPI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/ExtAPI.json -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/GraphReachSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/GraphReachSolver.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/NodeIDAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/NodeIDAllocator.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/Options.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/PTAStat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/PTAStat.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/SCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/SCC.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/SVFBasicTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/SVFBasicTypes.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/SVFModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/SVFModule.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/SVFStat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/SVFStat.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/SVFUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/SVFUtil.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/SparseBitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/SparseBitVector.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/SymState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/SymState.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/ThreadAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/ThreadAPI.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/WorkList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/WorkList.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/Z3Expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/Z3Expr.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/cJSON.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/Util/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/Util/config.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/WPA/Andersen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/WPA/Andersen.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/WPA/AndersenPWC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/WPA/AndersenPWC.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/WPA/CSC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/WPA/CSC.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/WPA/FlowSensitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/WPA/FlowSensitive.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/WPA/Steensgaard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/WPA/Steensgaard.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/WPA/TypeAnalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/WPA/TypeAnalysis.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/WPA/VersionedFlowSensitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/WPA/VersionedFlowSensitive.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/WPA/WPAFSSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/WPA/WPAFSSolver.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/WPA/WPAPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/WPA/WPAPass.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/WPA/WPASolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/WPA/WPASolver.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/include/WPA/WPAStat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/include/WPA/WPAStat.h -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/CFL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/CFL/CMakeLists.txt -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/CFL/cfl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/CFL/cfl.cpp -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/CMakeLists.txt -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/DDA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/DDA/CMakeLists.txt -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/DDA/dda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/DDA/dda.cpp -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/Example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/Example/CMakeLists.txt -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/Example/svf-ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/Example/svf-ex.cpp -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/MTA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/MTA/CMakeLists.txt -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/MTA/mta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/MTA/mta.cpp -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/SABER/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/SABER/CMakeLists.txt -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/SABER/saber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/SABER/saber.cpp -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/WPA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/WPA/CMakeLists.txt -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/WPA/wpa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/WPA/wpa.cpp -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/CMakeLists.txt -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/api_func_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/api_func_parse.cpp -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/api_specs/v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/api_specs/v1.json -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/api_specs/v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/api_specs/v2.json -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/api_to_fname/v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/api_to_fname/v1.json -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/api_to_fname/v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/api_to_fname/v2.json -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/webgl_ir/llvm-10/webgl_all_rendering_code.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/webgl_ir/llvm-10/webgl_all_rendering_code.bc -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/webgl_ir/llvm-10/webgl_all_rendering_code.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/webgl_ir/llvm-10/webgl_all_rendering_code.ll -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/webgl_ir/llvm-15/chrome_build_args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/webgl_ir/llvm-15/chrome_build_args -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/webgl_ir/llvm-15/chrome_commit_id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/webgl_ir/llvm-15/chrome_commit_id -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/webgl_ir/llvm-15/webgl_all_rendering_code.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/webgl_ir/llvm-15/webgl_all_rendering_code.bc -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/webgl_ir/llvm-15/webgl_all_rendering_code.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/assets/webgl_ir/llvm-15/webgl_all_rendering_code.ll -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/err_msg_analysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/err_msg_analysis.cpp -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/err_msg_dep_analysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/err_msg_dep_analysis.cpp -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/inst_visitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/inst_visitor.hpp -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/llvm_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/llvm_utils.cpp -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/llvm_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/llvm_utils.hpp -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/svf_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/svf_utils.cpp -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/svf_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/svf_utils.hpp -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/util.cpp -------------------------------------------------------------------------------- /static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/static-analysis/chrome-error-message-analyzer/tools/chrome-gl-analysis/util.h -------------------------------------------------------------------------------- /webdriver/appium-setup/android-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webdriver/appium-setup/android-setup.md -------------------------------------------------------------------------------- /webdriver/appium-setup/appium-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webdriver/appium-setup/appium-notes.md -------------------------------------------------------------------------------- /webdriver/appium-setup/general-instruction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webdriver/appium-setup/general-instruction.md -------------------------------------------------------------------------------- /webdriver/appium-setup/ios-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webdriver/appium-setup/ios-setup.md -------------------------------------------------------------------------------- /webdriver/appium-setup/nodeConfig_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webdriver/appium-setup/nodeConfig_sample.json -------------------------------------------------------------------------------- /webdriver/appium-setup/notes-about-nodeconfig-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webdriver/appium-setup/notes-about-nodeconfig-json.md -------------------------------------------------------------------------------- /webdriver/appium-setup/start_appium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webdriver/appium-setup/start_appium.sh -------------------------------------------------------------------------------- /webdriver/selenium-setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webdriver/selenium-setup/README.md -------------------------------------------------------------------------------- /webdriver/selenium-setup/env.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webdriver/selenium-setup/env.rc -------------------------------------------------------------------------------- /webdriver/selenium-setup/hubConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webdriver/selenium-setup/hubConfig.json -------------------------------------------------------------------------------- /webdriver/selenium-setup/nodeConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webdriver/selenium-setup/nodeConfig.json -------------------------------------------------------------------------------- /webdriver/selenium-setup/selenium-hub/hubConfig2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webdriver/selenium-setup/selenium-hub/hubConfig2.json -------------------------------------------------------------------------------- /webdriver/selenium-setup/selenium-hub/run-hub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webdriver/selenium-setup/selenium-hub/run-hub.sh -------------------------------------------------------------------------------- /webdriver/selenium-setup/selenium-node/nodeConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webdriver/selenium-setup/selenium-node/nodeConfig.json -------------------------------------------------------------------------------- /webdriver/selenium-setup/selenium-node/start_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webdriver/selenium-setup/selenium-node/start_node.sh -------------------------------------------------------------------------------- /webdriver/selenium-setup/selenium-server-standalone-3.141.59.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webdriver/selenium-setup/selenium-server-standalone-3.141.59.jar -------------------------------------------------------------------------------- /webgl-executor/debug-auto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/debug-auto.html -------------------------------------------------------------------------------- /webgl-executor/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/debug.html -------------------------------------------------------------------------------- /webgl-executor/images/tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/images/tiny.png -------------------------------------------------------------------------------- /webgl-executor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/index.html -------------------------------------------------------------------------------- /webgl-executor/js/jquery-3.5.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-3.5.0.min.js -------------------------------------------------------------------------------- /webgl-executor/js/jquery-ui-1.12.1/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-ui-1.12.1/AUTHORS.txt -------------------------------------------------------------------------------- /webgl-executor/js/jquery-ui-1.12.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-ui-1.12.1/LICENSE.txt -------------------------------------------------------------------------------- /webgl-executor/js/jquery-ui-1.12.1/external/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-ui-1.12.1/external/jquery/jquery.js -------------------------------------------------------------------------------- /webgl-executor/js/jquery-ui-1.12.1/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-ui-1.12.1/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /webgl-executor/js/jquery-ui-1.12.1/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-ui-1.12.1/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /webgl-executor/js/jquery-ui-1.12.1/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-ui-1.12.1/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /webgl-executor/js/jquery-ui-1.12.1/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-ui-1.12.1/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /webgl-executor/js/jquery-ui-1.12.1/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-ui-1.12.1/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /webgl-executor/js/jquery-ui-1.12.1/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-ui-1.12.1/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /webgl-executor/js/jquery-ui-1.12.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-ui-1.12.1/index.html -------------------------------------------------------------------------------- /webgl-executor/js/jquery-ui-1.12.1/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-ui-1.12.1/jquery-ui.css -------------------------------------------------------------------------------- /webgl-executor/js/jquery-ui-1.12.1/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-ui-1.12.1/jquery-ui.js -------------------------------------------------------------------------------- /webgl-executor/js/jquery-ui-1.12.1/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-ui-1.12.1/jquery-ui.min.css -------------------------------------------------------------------------------- /webgl-executor/js/jquery-ui-1.12.1/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-ui-1.12.1/jquery-ui.min.js -------------------------------------------------------------------------------- /webgl-executor/js/jquery-ui-1.12.1/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-ui-1.12.1/jquery-ui.structure.css -------------------------------------------------------------------------------- /webgl-executor/js/jquery-ui-1.12.1/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-ui-1.12.1/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /webgl-executor/js/jquery-ui-1.12.1/jquery-ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-ui-1.12.1/jquery-ui.theme.css -------------------------------------------------------------------------------- /webgl-executor/js/jquery-ui-1.12.1/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-ui-1.12.1/jquery-ui.theme.min.css -------------------------------------------------------------------------------- /webgl-executor/js/jquery-ui-1.12.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/jquery-ui-1.12.1/package.json -------------------------------------------------------------------------------- /webgl-executor/js/test_runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/js/test_runner.js -------------------------------------------------------------------------------- /webgl-executor/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/test.html -------------------------------------------------------------------------------- /webgl-executor/v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/v1.json -------------------------------------------------------------------------------- /webgl-executor/v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/v2.json -------------------------------------------------------------------------------- /webgl-executor/videos/small.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/GLeeFuzz/HEAD/webgl-executor/videos/small.mp4 --------------------------------------------------------------------------------