├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .dockerignore ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── DOCKER.md ├── Dockerfile ├── LICENSE ├── README.md ├── composer.json ├── docs ├── API.md ├── CONTRIBUTING.md ├── CUSTOM_ANALYSIS.md ├── DEV.md ├── EXAMPLES.md ├── FALSE_POSITIVES.md ├── FAQ.md ├── INCLUDES.md ├── OUTPUT.md ├── SPECIFY_ANALYSIS.md ├── customcallgraph1.png └── dev │ └── STATES.md ├── grumphp.yml ├── package ├── composer.json └── src │ ├── progpilot │ ├── Analysis │ │ ├── AssertionAnalysis.php │ │ ├── CustomAnalysis.php │ │ ├── FuncAnalysis.php │ │ ├── IncludeAnalysis.php │ │ ├── ResolveDefs.php │ │ ├── SecurityAnalysis.php │ │ ├── TaintAnalysis.php │ │ └── VisitorAnalysis.php │ ├── Analyzer.php │ ├── CallVisitor.php │ ├── Code │ │ ├── MyCode.php │ │ ├── MyInstruction.php │ │ └── Opcodes.php │ ├── Command │ │ └── ProgpilotCommand.php │ ├── Console │ │ └── Application.php │ ├── Context.php │ ├── ContextInternalApi.php │ ├── Dataflow │ │ ├── ArrayMulti.php │ │ ├── Classes.php │ │ ├── Definitions.php │ │ ├── Functions.php │ │ ├── Objects.php │ │ └── VisitorDataflow.php │ ├── Helpers │ │ ├── Analysis.php │ │ ├── Callbacks.php │ │ └── State.php │ ├── Inputs │ │ ├── MyCustomFunction.php │ │ ├── MyCustomRule.php │ │ ├── MyCustomVariable.php │ │ ├── MyInclude.php │ │ ├── MyInputs.php │ │ ├── MyInputsInternalApi.php │ │ ├── MySanitizer.php │ │ ├── MySink.php │ │ ├── MySource.php │ │ ├── MySpecify.php │ │ ├── MyValidator.php │ │ └── MyVuln.php │ ├── Lang.php │ ├── Objects │ │ ├── MyAssertion.php │ │ ├── MyBlock.php │ │ ├── MyClass.php │ │ ├── MyDefOriginal.php │ │ ├── MyDefState.php │ │ ├── MyDefinition.php │ │ ├── MyFile.php │ │ ├── MyFunction.php │ │ ├── MyOp.php │ │ └── MyProperty.php │ ├── Outputs │ │ ├── MyOutputs.php │ │ ├── MyOutputsInternalApi.php │ │ ├── MyResult.php │ │ └── SarifOutput.php │ ├── Representations │ │ ├── AbstractSyntaxTree.php │ │ ├── Callgraph.php │ │ ├── ControlFlowGraph.php │ │ ├── DFSVisitor.php │ │ ├── DepthFirstSearch.php │ │ └── NodeCG.php │ ├── Transformations │ │ └── Php │ │ │ ├── Assign.php │ │ │ ├── Common.php │ │ │ ├── Expr.php │ │ │ ├── Exprs │ │ │ ├── ArrayFetch.php │ │ │ ├── CastFetch.php │ │ │ ├── ConcatFetch.php │ │ │ ├── ConstFetch.php │ │ │ ├── DimFetch.php │ │ │ ├── FunccallFetch.php │ │ │ ├── LiteralFetch.php │ │ │ ├── PropertyFetch.php │ │ │ ├── StaticPropertyFetch.php │ │ │ └── VariableFetch.php │ │ │ ├── FuncCall.php │ │ │ └── Transform.php │ └── Utils.php │ └── uptodate_data │ └── php │ ├── dev │ ├── rules.json │ ├── sanitizers.json │ ├── sinks.json │ ├── sources.json │ └── validators.json │ ├── frameworks │ ├── codeigniter │ │ ├── rules.json │ │ ├── sanitizers.json │ │ ├── sinks.json │ │ ├── sources.json │ │ └── validators.json │ ├── laravel │ │ ├── rules.json │ │ ├── sanitizers.json │ │ ├── sinks.json │ │ ├── sources.json │ │ └── validators.json │ ├── symfony │ │ ├── rules.json │ │ ├── sanitizers.json │ │ ├── sinks.json │ │ ├── sources.json │ │ └── validators.json │ └── wordpress │ │ ├── rules.json │ │ ├── sanitizers.json │ │ ├── sinks.json │ │ ├── sources.json │ │ └── validators.json │ ├── rules.json │ ├── sanitizers.json │ ├── sinks.json │ ├── sources.json │ └── validators.json ├── progpilot.yml └── projects ├── example ├── composer.json ├── example1.php ├── example2.php └── source_code1.php ├── example_config ├── composer.json ├── configuration.yml ├── example.php └── example1.php ├── phar ├── composer.json └── progpilot └── tests ├── RunAll.php ├── RunAllConfigurations.php ├── RunAllFolders.php ├── RunConfig.php ├── RunExcludeFiles.php ├── RunFile.php ├── RunFlows.php ├── RunFolder.php ├── RunIncludeFiles.php ├── composer.json ├── conditionstest.php ├── config1.yml ├── config2.yml ├── config3.yml ├── config4.yml ├── config5.yml ├── config6.yml ├── config7.yml ├── configtest.php ├── customtest.php ├── datatest.php ├── false_positives.json ├── flowstest.php ├── folderexcludedtest.php ├── folderincludedtest.php ├── foldertest.php ├── frameworkstest.php ├── generictest.php ├── graphtest.php ├── include_files.json ├── includetest.php ├── negativetest.php ├── ooptest.php ├── optimizationstest.php ├── phpunit.xml.dist ├── phpwandertest.php ├── realtest.php ├── resolve_includes.json ├── resolved_includes.json ├── storedtest.php ├── testarray.php ├── testcfg.php ├── testcode.php ├── testfalsepositives.php ├── testfile.php ├── testincludes.php ├── testonadd.php ├── testphpcfg.php ├── testphpparser.php ├── tests ├── conditions │ ├── condition1.php │ ├── condition2.php │ ├── condition3.php │ ├── condition4.php │ ├── condition5.php │ ├── condition6.php │ ├── condition7.php │ └── condition8.php ├── custom │ ├── cert1.php │ ├── cert2.php │ ├── cert3.php │ ├── cert4.php │ ├── cert5.php │ ├── conditionalvalues.php │ ├── cookies1.php │ ├── custom1.php │ ├── custom2.php │ ├── custom3.php │ ├── custom4.php │ ├── custom5.php │ ├── customcookieoptions.php │ └── unsetcookies.php ├── data │ ├── customvalidator1.php │ ├── customvalidator2.php │ ├── customvalidator3.php │ ├── customvalidator4.php │ ├── customvalidator5.php │ ├── sanitizer1.php │ ├── sanitizer10.php │ ├── sanitizer11.php │ ├── sanitizer2.php │ ├── sanitizer3.php │ ├── sanitizer4.php │ ├── sanitizer5.php │ ├── sanitizer6.php │ ├── sanitizer7.php │ ├── sanitizer8.php │ ├── sanitizer9.php │ ├── sink1.php │ ├── sink2.php │ ├── sink3.php │ ├── sink4.php │ ├── sink5.php │ ├── sink6.php │ ├── sink7.php │ ├── sink8.php │ ├── sink9.php │ ├── source1.php │ ├── source10.php │ ├── source11.php │ ├── source12.php │ ├── source13.php │ ├── source14.php │ ├── source15.php │ ├── source16.php │ ├── source17.php │ ├── source18.php │ ├── source19.php │ ├── source2.php │ ├── source20.php │ ├── source21.php │ ├── source22.php │ ├── source3.php │ ├── source4.php │ ├── source5.php │ ├── source6.php │ ├── source7.php │ ├── source8.php │ ├── source9.php │ ├── validator1.php │ ├── validator2.php │ ├── validator3.php │ ├── validator4.php │ ├── validator5.php │ └── validator6.php ├── flows │ ├── flow1.php │ ├── flow2.php │ ├── flow3.php │ ├── flow4.php │ └── incorrectflow.txt ├── folders │ ├── excludedbydefault1 │ │ └── test1.php │ ├── excludedbydefault2 │ │ ├── foo │ │ │ ├── node_modules │ │ │ │ └── test3.php │ │ │ └── test2.php │ │ └── test1.php │ ├── folder1 │ │ ├── mix1.php │ │ ├── mix2.php │ │ └── mix3.php │ ├── folder2 │ │ ├── mix3.php │ │ └── sub_folder1 │ │ │ ├── mix1.php │ │ │ └── sub_folder2 │ │ │ └── mix2.php │ ├── folder3 │ │ ├── mix3.php │ │ └── sub_folder1 │ │ │ ├── mix1.php │ │ │ └── sub_folder2 │ │ │ └── mix2.php │ ├── folder4 │ │ ├── mix3.php │ │ ├── onefileexcludedtest.php │ │ └── sub_folder1 │ │ │ ├── mix1.php │ │ │ ├── onefileexcludedtest.php │ │ │ └── onefolderexcludedtest │ │ │ ├── mix2.php │ │ │ └── onefileexcludedtest.php │ ├── folderconfig1 │ │ ├── mix3.php │ │ ├── onefileexcludedtestconfig.php │ │ ├── sub_folder1 │ │ │ ├── mix1.php │ │ │ ├── onefileexcludedtestconfig.php │ │ │ └── onefolderexcludedtestconfig │ │ │ │ ├── mix2.php │ │ │ │ └── onefileexcludedtestconfig.php │ │ └── sub_folder2 │ │ │ ├── mix1.php │ │ │ ├── onefileexcludedtestconfig.php │ │ │ └── onefolderexcludedtestconfig │ │ │ ├── mix2.php │ │ │ └── onefileexcludedtestconfig.php │ ├── folderconfig2 │ │ ├── fileonly.php │ │ ├── node_modules │ │ │ ├── mix1.php │ │ │ ├── onefileexcludedtestconfig.php │ │ │ └── onefolderexcludedtestconfig │ │ │ │ ├── mix2.php │ │ │ │ └── onefileexcludedtestconfig.php │ │ ├── onefileexcludedtestconfig.php │ │ └── sub_folder1 │ │ │ ├── mix1.php │ │ │ ├── onefileexcludedtestconfig.php │ │ │ └── onefolderexcludedtestconfig │ │ │ ├── mix2.php │ │ │ └── onefileexcludedtestconfig.php │ ├── folderconfig3 │ │ ├── mix3.php │ │ ├── onefileexcludedtestconfig.php │ │ ├── sources.json │ │ ├── sub_folder1 │ │ │ ├── mix1.php │ │ │ ├── onefileexcludedtestconfig.php │ │ │ └── onefolderexcludedtestconfig │ │ │ │ ├── mix2.php │ │ │ │ └── onefileexcludedtestconfig.php │ │ └── sub_folder2 │ │ │ ├── mix1.php │ │ │ ├── onefileexcludedtestconfig.php │ │ │ └── onefolderexcludedtestconfig │ │ │ ├── mix2.php │ │ │ └── onefileexcludedtestconfig.php │ ├── folderconfig4 │ │ ├── mix3.php │ │ ├── onefileexcludedtestconfig.php │ │ ├── sources.json │ │ ├── sub_folder1 │ │ │ ├── mix1.php │ │ │ ├── onefileexcludedtestconfig.php │ │ │ └── onefolderexcludedtestconfig │ │ │ │ ├── mix2.php │ │ │ │ └── onefileexcludedtestconfig.php │ │ └── sub_folder2 │ │ │ ├── mix1.php │ │ │ ├── onefileexcludedtestconfig.php │ │ │ └── onefolderexcludedtestconfig │ │ │ ├── mix2.php │ │ │ └── onefileexcludedtestconfig.php │ ├── folderconfig5 │ │ ├── false_positives.json │ │ ├── mix3.php │ │ ├── onefileexcludedtestconfig.php │ │ ├── sub_folder1 │ │ │ ├── mix1.php │ │ │ ├── onefileexcludedtestconfig.php │ │ │ └── onefolderexcludedtestconfig │ │ │ │ ├── mix2.php │ │ │ │ └── onefileexcludedtestconfig.php │ │ └── sub_folder2 │ │ │ ├── mix1.php │ │ │ ├── onefileexcludedtestconfig.php │ │ │ └── onefolderexcludedtestconfig │ │ │ ├── mix2.php │ │ │ └── onefileexcludedtestconfig.php │ ├── folderconfig6 │ │ ├── false_positives.json │ │ ├── mix3.php │ │ ├── onefileexcludedtestconfig.php │ │ ├── sub_folder1 │ │ │ ├── mix1.php │ │ │ ├── onefileexcludedtestconfig.php │ │ │ └── onefolderexcludedtestconfig │ │ │ │ ├── mix2.php │ │ │ │ └── onefileexcludedtestconfig.php │ │ └── sub_folder2 │ │ │ ├── mix1.php │ │ │ ├── onefileexcludedtestconfig.php │ │ │ └── onefolderexcludedtestconfig │ │ │ ├── mix2.php │ │ │ └── onefileexcludedtestconfig.php │ └── folderconfig7 │ │ ├── include_failures.json │ │ ├── mix3.php │ │ ├── resolved_includes.json │ │ └── sub_folder1 │ │ └── mix1.php ├── frameworks │ ├── codeigniter1.php │ ├── codeigniter2.php │ ├── codeigniter3.php │ └── symfony1.php ├── generic │ ├── alias1.php │ ├── alias2.php │ ├── alias3.php │ ├── alias4.php │ ├── alias5.php │ ├── arrays1.php │ ├── arrays10.php │ ├── arrays11.php │ ├── arrays12.php │ ├── arrays13.php │ ├── arrays14.php │ ├── arrays15.php │ ├── arrays16.php │ ├── arrays17.php │ ├── arrays18.php │ ├── arrays19.php │ ├── arrays2.php │ ├── arrays20.php │ ├── arrays3.php │ ├── arrays4.php │ ├── arrays5.php │ ├── arrays6.php │ ├── arrays7.php │ ├── arrays8.php │ ├── arrays9.php │ ├── arraysexpr1.php │ ├── arraysexpr2.php │ ├── arraysexpr3.php │ ├── arraysexpr4.php │ ├── arraysrec1.php │ ├── calluserfunc1.php │ ├── calluserfunc2.php │ ├── calluserfunc3.php │ ├── calluserfunc4.php │ ├── concat1.php │ ├── concat2.php │ ├── concat3.php │ ├── foreach1.php │ ├── functions1.php │ ├── functions10.php │ ├── functions11.php │ ├── functions12.php │ ├── functions13.php │ ├── functions14.php │ ├── functions15.php │ ├── functions16.php │ ├── functions17.php │ ├── functions18.php │ ├── functions19.php │ ├── functions2.php │ ├── functions20.php │ ├── functions21.php │ ├── functions22.php │ ├── functions23.php │ ├── functions3.php │ ├── functions4.php │ ├── functions5.php │ ├── functions6.php │ ├── functions7.php │ ├── functions8.php │ ├── functions9.php │ ├── functionsrec1.php │ ├── global1.php │ ├── global2.php │ ├── global3.php │ ├── global4.php │ ├── global5.php │ ├── loop1.php │ ├── loop2.php │ ├── loop3.php │ ├── loop4.php │ ├── mix1.php │ ├── mix2.php │ ├── mix3.php │ ├── namespace1.php │ ├── namespace2.php │ ├── simple1.php │ ├── simple10.php │ ├── simple2.php │ ├── simple3.php │ ├── simple4.php │ ├── simple5.php │ ├── simple6.php │ ├── simple7.php │ ├── simple8.php │ ├── simple9.php │ └── strings1.php ├── graphs │ └── functionsgraph1.php ├── includes │ ├── dvwa │ │ ├── dvwaPage.inc.php │ │ ├── high.php │ │ ├── impossible.php │ │ ├── low.php │ │ └── medium.php │ ├── resolved_includes_simple5.txt │ ├── simple1.php │ ├── simple10.php │ ├── simple10_include.php │ ├── simple11.php │ ├── simple11_include.php │ ├── simple12.php │ ├── simple12_include.php │ ├── simple13.php │ ├── simple13_include.php │ ├── simple14.php │ ├── simple14_include.php │ ├── simple14_include_ret.php │ ├── simple15_circular.php │ ├── simple15_include1.php │ ├── simple15_include2.php │ ├── simple16.php │ ├── simple16_include.php │ ├── simple17.php │ ├── simple17_include.php │ ├── simple18.php │ ├── simple18_include.php │ ├── simple19.php │ ├── simple1_include.php │ ├── simple2.php │ ├── simple20.php │ ├── simple20_include.php │ ├── simple20_subinclude.php │ ├── simple2_require.php │ ├── simple3.php │ ├── simple3_includeonce.php │ ├── simple4.php │ ├── simple4_requireonce.php │ ├── simple5.php │ ├── simple5_include.php │ ├── simple6.php │ ├── simple6_include.php │ ├── simple7.php │ ├── simple7_include1.php │ ├── simple7_include2.php │ ├── simple8.php │ ├── simple8_include.php │ └── simple9.php ├── negative │ ├── issue_13.php │ ├── missing_argument_func.php │ ├── parser_error1.php │ ├── parser_error2.php │ ├── parser_error3.php │ ├── undefined_class.php │ ├── undefined_func.php │ └── undefined_method.php ├── oop │ ├── chained1.php │ ├── chained2.php │ ├── simple1.php │ ├── simple10.php │ ├── simple11.php │ ├── simple12.php │ ├── simple13.php │ ├── simple14.php │ ├── simple15.php │ ├── simple16.php │ ├── simple17.php │ ├── simple18.php │ ├── simple19.php │ ├── simple2.php │ ├── simple20.php │ ├── simple21.php │ ├── simple22.php │ ├── simple23 │ │ ├── a.php │ │ ├── b.php │ │ └── c.php │ ├── simple24.php │ ├── simple25.php │ ├── simple26.php │ ├── simple27.php │ ├── simple28.php │ ├── simple29.php │ ├── simple3.php │ ├── simple30.php │ ├── simple31.php │ ├── simple32.php │ ├── simple33.php │ ├── simple34.php │ ├── simple35.php │ ├── simple36.php │ ├── simple4.php │ ├── simple5.php │ ├── simple6.php │ ├── simple7.php │ ├── simple8.php │ └── simple9.php ├── optimizations │ └── cleanopinfoconcatleft.php ├── performance │ ├── ID3 │ │ ├── getid3.lib.php │ │ ├── getid3.php │ │ ├── license.commercial.txt │ │ ├── license.txt │ │ ├── module.audio-video.asf.php │ │ ├── module.audio-video.flv.php │ │ ├── module.audio-video.matroska.php │ │ ├── module.audio-video.quicktime.php │ │ ├── module.audio-video.riff.php │ │ ├── module.audio.ac3.php │ │ ├── module.audio.dts.php │ │ ├── module.audio.flac.php │ │ ├── module.audio.mp3.php │ │ ├── module.audio.ogg.php │ │ ├── module.tag.apetag.php │ │ ├── module.tag.id3v1.php │ │ ├── module.tag.id3v2.php │ │ ├── module.tag.lyrics3.php │ │ └── readme.txt │ ├── benchmarks.txt │ ├── class-wp-query.php │ ├── defs.php │ ├── gen_files.php │ └── memory.txt ├── phpwander │ ├── test0.php │ ├── test1.php │ ├── test10.php │ ├── test10B.php │ ├── test10C.php │ ├── test11.php │ ├── test12.php │ ├── test12D.php │ ├── test13.php │ ├── test13E.php │ ├── test14.php │ ├── test14F.php │ ├── test15.php │ ├── test2.php │ ├── test3.php │ ├── test3A.php │ ├── test4.php │ ├── test4F.php │ ├── test5.php │ ├── test6.php │ ├── test7.php │ ├── test8.php │ └── test9.php ├── real │ ├── ClassLoader.php │ ├── array1.php │ ├── class-wp-filesystem-direct.php │ ├── composer │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── index.php │ │ ├── notexcluded_vendor │ │ │ ├── autoload.php │ │ │ ├── composer │ │ │ │ ├── ClassLoader.php │ │ │ │ ├── LICENSE │ │ │ │ ├── autoload_classmap.php │ │ │ │ ├── autoload_files.php │ │ │ │ ├── autoload_namespaces.php │ │ │ │ ├── autoload_psr4.php │ │ │ │ ├── autoload_real.php │ │ │ │ ├── autoload_static.php │ │ │ │ └── installed.json │ │ │ └── progpilot │ │ │ │ └── tests │ │ │ │ └── test_package │ │ └── test_package │ │ │ ├── composer.json │ │ │ └── init.php │ ├── executiontime │ │ ├── Item.php │ │ ├── class-wp-query.php │ │ └── class-wp-query3.php │ ├── feedbackgithub │ │ └── test.php │ ├── incallstack │ │ ├── class-ftp-pure.php │ │ ├── class-ftp-sockets.php │ │ └── class-ftp.php │ ├── multiplecalls │ │ └── test.php │ ├── mutliplecall_memory.php │ ├── mutliplecall_memory_include.php │ ├── namespaces1 │ │ ├── composer.json │ │ ├── src │ │ │ ├── nssecondlevel1 │ │ │ │ └── Foo1.php │ │ │ └── nssecondlevel2 │ │ │ │ └── Foo2.php │ │ └── test.php │ ├── object1.php │ ├── sqli.php │ ├── wordpress │ │ ├── index.php │ │ ├── license.txt │ │ ├── readme.html │ │ ├── wp-admin │ │ │ ├── admin-db.php │ │ │ ├── admin-footer.php │ │ │ ├── admin-functions.php │ │ │ ├── admin-header.php │ │ │ ├── admin.php │ │ │ ├── bookmarklet.php │ │ │ ├── categories.php │ │ │ ├── edit-comments.php │ │ │ ├── edit-form-advanced.php │ │ │ ├── edit-form-ajax-cat.php │ │ │ ├── edit-form-comment.php │ │ │ ├── edit-form.php │ │ │ ├── edit-link-form.php │ │ │ ├── edit-page-form.php │ │ │ ├── edit-pages.php │ │ │ ├── edit.php │ │ │ ├── execute-pings.php │ │ │ ├── images │ │ │ │ ├── box-bg.gif │ │ │ │ ├── box-butt.gif │ │ │ │ ├── box-head.gif │ │ │ │ ├── browse-happy.gif │ │ │ │ ├── fade-butt.png │ │ │ │ ├── notice.gif │ │ │ │ ├── toggle.gif │ │ │ │ └── wordpress-logo.png │ │ │ ├── import.php │ │ │ ├── import │ │ │ │ ├── b2.php │ │ │ │ ├── blogger.php │ │ │ │ ├── greymatter.php │ │ │ │ ├── livejournal.php │ │ │ │ ├── mt.php │ │ │ │ ├── rss.php │ │ │ │ └── textpattern.php │ │ │ ├── index.php │ │ │ ├── inline-uploading.php │ │ │ ├── install-helper.php │ │ │ ├── install.php │ │ │ ├── link-add.php │ │ │ ├── link-categories.php │ │ │ ├── link-import.php │ │ │ ├── link-manager.php │ │ │ ├── link-parse-opml.php │ │ │ ├── list-manipulation.js │ │ │ ├── list-manipulation.php │ │ │ ├── menu-header.php │ │ │ ├── menu.php │ │ │ ├── moderation.php │ │ │ ├── options-discussion.php │ │ │ ├── options-general.php │ │ │ ├── options-head.php │ │ │ ├── options-misc.php │ │ │ ├── options-permalink.php │ │ │ ├── options-reading.php │ │ │ ├── options-writing.php │ │ │ ├── options.php │ │ │ ├── page-new.php │ │ │ ├── plugin-editor.php │ │ │ ├── plugins.php │ │ │ ├── post.php │ │ │ ├── profile-update.php │ │ │ ├── profile.php │ │ │ ├── setup-config.php │ │ │ ├── sidebar.php │ │ │ ├── templates.php │ │ │ ├── theme-editor.php │ │ │ ├── themes.php │ │ │ ├── update-links.php │ │ │ ├── upgrade-functions.php │ │ │ ├── upgrade-schema.php │ │ │ ├── upgrade.php │ │ │ ├── user-edit.php │ │ │ ├── users.php │ │ │ └── wp-admin.css │ │ ├── wp-atom.php │ │ ├── wp-blog-header.php │ │ ├── wp-comments-post.php │ │ ├── wp-commentsrss2.php │ │ ├── wp-config.php │ │ ├── wp-content │ │ │ ├── index.php │ │ │ ├── plugins │ │ │ │ ├── akismet │ │ │ │ │ └── akismet.php │ │ │ │ ├── hello.php │ │ │ │ └── wp-db-backup.php │ │ │ └── themes │ │ │ │ ├── classic │ │ │ │ ├── comments-popup.php │ │ │ │ ├── comments.php │ │ │ │ ├── footer.php │ │ │ │ ├── header.php │ │ │ │ ├── index.php │ │ │ │ ├── screenshot.png │ │ │ │ ├── sidebar.php │ │ │ │ └── style.css │ │ │ │ └── default │ │ │ │ ├── 404.php │ │ │ │ ├── archive.php │ │ │ │ ├── archives.php │ │ │ │ ├── attachment.php │ │ │ │ ├── comments-popup.php │ │ │ │ ├── comments.php │ │ │ │ ├── footer.php │ │ │ │ ├── functions.php │ │ │ │ ├── header.php │ │ │ │ ├── images │ │ │ │ ├── audio.jpg │ │ │ │ ├── header-img.php │ │ │ │ ├── kubrickbg.jpg │ │ │ │ ├── kubrickbgcolor.jpg │ │ │ │ ├── kubrickbgwide.jpg │ │ │ │ ├── kubrickfooter.jpg │ │ │ │ └── kubrickheader.jpg │ │ │ │ ├── index.php │ │ │ │ ├── links.php │ │ │ │ ├── page.php │ │ │ │ ├── screenshot.png │ │ │ │ ├── search.php │ │ │ │ ├── searchform.php │ │ │ │ ├── sidebar.php │ │ │ │ ├── single.php │ │ │ │ └── style.css │ │ ├── wp-feed.php │ │ ├── wp-includes │ │ │ ├── cache.php │ │ │ ├── capabilities.php │ │ │ ├── class-IXR.php │ │ │ ├── class-pop3.php │ │ │ ├── class-snoopy.php │ │ │ ├── classes.php │ │ │ ├── comment-functions.php │ │ │ ├── default-filters.php │ │ │ ├── feed-functions.php │ │ │ ├── functions-compat.php │ │ │ ├── functions-formatting.php │ │ │ ├── functions-post.php │ │ │ ├── functions.php │ │ │ ├── gettext.php │ │ │ ├── images │ │ │ │ └── smilies │ │ │ │ │ ├── icon_arrow.gif │ │ │ │ │ ├── icon_biggrin.gif │ │ │ │ │ ├── icon_confused.gif │ │ │ │ │ ├── icon_cool.gif │ │ │ │ │ ├── icon_cry.gif │ │ │ │ │ ├── icon_eek.gif │ │ │ │ │ ├── icon_evil.gif │ │ │ │ │ ├── icon_exclaim.gif │ │ │ │ │ ├── icon_idea.gif │ │ │ │ │ ├── icon_lol.gif │ │ │ │ │ ├── icon_mad.gif │ │ │ │ │ ├── icon_mrgreen.gif │ │ │ │ │ ├── icon_neutral.gif │ │ │ │ │ ├── icon_question.gif │ │ │ │ │ ├── icon_razz.gif │ │ │ │ │ ├── icon_redface.gif │ │ │ │ │ ├── icon_rolleyes.gif │ │ │ │ │ ├── icon_sad.gif │ │ │ │ │ ├── icon_smile.gif │ │ │ │ │ ├── icon_surprised.gif │ │ │ │ │ ├── icon_twisted.gif │ │ │ │ │ └── icon_wink.gif │ │ │ ├── js │ │ │ │ ├── colorpicker.js │ │ │ │ ├── dbx-key.js │ │ │ │ ├── dbx.js │ │ │ │ ├── fat.js │ │ │ │ ├── quicktags.js │ │ │ │ ├── tinymce │ │ │ │ │ ├── blank.htm │ │ │ │ │ ├── langs │ │ │ │ │ │ └── en.js │ │ │ │ │ ├── license.html │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── autosave │ │ │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ │ │ ├── langs │ │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ │ └── sv.js │ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ │ ├── directionality │ │ │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── ltr.gif │ │ │ │ │ │ │ │ └── rtl.gif │ │ │ │ │ │ │ └── langs │ │ │ │ │ │ │ │ └── en.js │ │ │ │ │ │ ├── inlinepopups │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── inlinepopup.css │ │ │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── spacer.gif │ │ │ │ │ │ │ │ ├── window_close.gif │ │ │ │ │ │ │ │ ├── window_maximize.gif │ │ │ │ │ │ │ │ ├── window_minimize.gif │ │ │ │ │ │ │ │ └── window_resize.gif │ │ │ │ │ │ │ ├── jscripts │ │ │ │ │ │ │ │ └── mcwindows.js │ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ │ ├── wordpress │ │ │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── help.gif │ │ │ │ │ │ │ │ ├── more.gif │ │ │ │ │ │ │ │ ├── more_bug.gif │ │ │ │ │ │ │ │ ├── page.gif │ │ │ │ │ │ │ │ └── page_bug.gif │ │ │ │ │ │ │ ├── langs │ │ │ │ │ │ │ │ └── en.js │ │ │ │ │ │ │ └── wordpress.css │ │ │ │ │ │ └── wphelp │ │ │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── help.gif │ │ │ │ │ │ │ └── langs │ │ │ │ │ │ │ └── en.js │ │ │ │ │ ├── themes │ │ │ │ │ │ └── advanced │ │ │ │ │ │ │ ├── about.htm │ │ │ │ │ │ │ ├── anchor.htm │ │ │ │ │ │ │ ├── charmap.htm │ │ │ │ │ │ │ ├── color_picker.htm │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── editor_content.css │ │ │ │ │ │ │ ├── editor_popup.css │ │ │ │ │ │ │ └── editor_ui.css │ │ │ │ │ │ │ ├── editor_template.js │ │ │ │ │ │ │ ├── editor_template_src.js │ │ │ │ │ │ │ ├── image.htm │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── anchor.gif │ │ │ │ │ │ │ ├── anchor_symbol.gif │ │ │ │ │ │ │ ├── backcolor.gif │ │ │ │ │ │ │ ├── bold.gif │ │ │ │ │ │ │ ├── bold_de_se.gif │ │ │ │ │ │ │ ├── bold_fr.gif │ │ │ │ │ │ │ ├── bold_ru.gif │ │ │ │ │ │ │ ├── browse.gif │ │ │ │ │ │ │ ├── bullist.gif │ │ │ │ │ │ │ ├── buttons.gif │ │ │ │ │ │ │ ├── cancel_button_bg.gif │ │ │ │ │ │ │ ├── center.gif │ │ │ │ │ │ │ ├── charmap.gif │ │ │ │ │ │ │ ├── cleanup.gif │ │ │ │ │ │ │ ├── close.gif │ │ │ │ │ │ │ ├── code.gif │ │ │ │ │ │ │ ├── color.gif │ │ │ │ │ │ │ ├── copy.gif │ │ │ │ │ │ │ ├── custom_1.gif │ │ │ │ │ │ │ ├── cut.gif │ │ │ │ │ │ │ ├── forecolor.gif │ │ │ │ │ │ │ ├── full.gif │ │ │ │ │ │ │ ├── hr.gif │ │ │ │ │ │ │ ├── image.gif │ │ │ │ │ │ │ ├── indent.gif │ │ │ │ │ │ │ ├── insert_button_bg.gif │ │ │ │ │ │ │ ├── italic.gif │ │ │ │ │ │ │ ├── italic_de_se.gif │ │ │ │ │ │ │ ├── italic_ru.gif │ │ │ │ │ │ │ ├── left.gif │ │ │ │ │ │ │ ├── link.gif │ │ │ │ │ │ │ ├── newdocument.gif │ │ │ │ │ │ │ ├── numlist.gif │ │ │ │ │ │ │ ├── outdent.gif │ │ │ │ │ │ │ ├── paste.gif │ │ │ │ │ │ │ ├── redo.gif │ │ │ │ │ │ │ ├── removeformat.gif │ │ │ │ │ │ │ ├── right.gif │ │ │ │ │ │ │ ├── spacer.gif │ │ │ │ │ │ │ ├── statusbar_resize.gif │ │ │ │ │ │ │ ├── strikethrough.gif │ │ │ │ │ │ │ ├── sub.gif │ │ │ │ │ │ │ ├── sup.gif │ │ │ │ │ │ │ ├── table.gif │ │ │ │ │ │ │ ├── table_delete_col.gif │ │ │ │ │ │ │ ├── table_delete_row.gif │ │ │ │ │ │ │ ├── table_insert_col_after.gif │ │ │ │ │ │ │ ├── table_insert_col_before.gif │ │ │ │ │ │ │ ├── table_insert_row_after.gif │ │ │ │ │ │ │ ├── table_insert_row_before.gif │ │ │ │ │ │ │ ├── underline.gif │ │ │ │ │ │ │ ├── underline_fr.gif │ │ │ │ │ │ │ ├── underline_ru.gif │ │ │ │ │ │ │ ├── undo.gif │ │ │ │ │ │ │ ├── unlink.gif │ │ │ │ │ │ │ ├── visualaid.gif │ │ │ │ │ │ │ └── xp │ │ │ │ │ │ │ │ ├── tab_bg.gif │ │ │ │ │ │ │ │ ├── tab_end.gif │ │ │ │ │ │ │ │ ├── tab_sel_bg.gif │ │ │ │ │ │ │ │ ├── tab_sel_end.gif │ │ │ │ │ │ │ │ └── tabs_bg.gif │ │ │ │ │ │ │ ├── jscripts │ │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ │ ├── charmap.js │ │ │ │ │ │ │ ├── color_picker.js │ │ │ │ │ │ │ ├── image.js │ │ │ │ │ │ │ ├── link.js │ │ │ │ │ │ │ └── source_editor.js │ │ │ │ │ │ │ ├── langs │ │ │ │ │ │ │ └── en.js │ │ │ │ │ │ │ ├── link.htm │ │ │ │ │ │ │ └── source_editor.htm │ │ │ │ │ ├── tiny_mce.js │ │ │ │ │ ├── tiny_mce_gzip.php │ │ │ │ │ ├── tiny_mce_popup.js │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── form_utils.js │ │ │ │ │ │ ├── mctabs.js │ │ │ │ │ │ └── validate.js │ │ │ │ │ └── wp-mce-help.php │ │ │ │ └── tw-sack.js │ │ │ ├── kses.php │ │ │ ├── links.php │ │ │ ├── locale.php │ │ │ ├── pluggable-functions.php │ │ │ ├── registration-functions.php │ │ │ ├── rss-functions.php │ │ │ ├── streams.php │ │ │ ├── template-functions-author.php │ │ │ ├── template-functions-category.php │ │ │ ├── template-functions-general.php │ │ │ ├── template-functions-links.php │ │ │ ├── template-functions-post.php │ │ │ ├── template-loader.php │ │ │ ├── vars.php │ │ │ ├── version.php │ │ │ ├── wp-db.php │ │ │ └── wp-l10n.php │ │ ├── wp-links-opml.php │ │ ├── wp-login.php │ │ ├── wp-mail.php │ │ ├── wp-pass.php │ │ ├── wp-rdf.php │ │ ├── wp-register.php │ │ ├── wp-rss.php │ │ ├── wp-rss2.php │ │ ├── wp-settings.php │ │ ├── wp-trackback.php │ │ └── xmlrpc.php │ ├── wordpress1 │ │ ├── index.php │ │ ├── wp-blog-header.php │ │ ├── wp-commentsrss2.php │ │ ├── wp-config.php │ │ ├── wp-content │ │ │ ├── index.php │ │ │ ├── plugins │ │ │ │ ├── akismet │ │ │ │ │ └── akismet.php │ │ │ │ ├── hello.php │ │ │ │ └── wp-db-backup.php │ │ │ └── themes │ │ │ │ ├── classic │ │ │ │ ├── comments-popup.php │ │ │ │ ├── comments.php │ │ │ │ ├── footer.php │ │ │ │ ├── header.php │ │ │ │ ├── index.php │ │ │ │ ├── screenshot.png │ │ │ │ ├── sidebar.php │ │ │ │ └── style.css │ │ │ │ └── default │ │ │ │ ├── 404.php │ │ │ │ ├── archive.php │ │ │ │ ├── archives.php │ │ │ │ ├── attachment.php │ │ │ │ ├── comments-popup.php │ │ │ │ ├── comments.php │ │ │ │ ├── footer.php │ │ │ │ ├── functions.php │ │ │ │ ├── header.php │ │ │ │ ├── images │ │ │ │ ├── audio.jpg │ │ │ │ ├── header-img.php │ │ │ │ ├── kubrickbg.jpg │ │ │ │ ├── kubrickbgcolor.jpg │ │ │ │ ├── kubrickbgwide.jpg │ │ │ │ ├── kubrickfooter.jpg │ │ │ │ └── kubrickheader.jpg │ │ │ │ ├── index.php │ │ │ │ ├── links.php │ │ │ │ ├── page.php │ │ │ │ ├── screenshot.png │ │ │ │ ├── search.php │ │ │ │ ├── searchform.php │ │ │ │ ├── sidebar.php │ │ │ │ ├── single.php │ │ │ │ └── style.css │ │ ├── wp-includes │ │ │ ├── comment-functions.php │ │ │ ├── default-filters.php │ │ │ ├── functions.php │ │ │ ├── template-loader.php │ │ │ └── wp-db.php │ │ └── wp-settings.php │ ├── wordpress2 │ │ ├── wp-admin │ │ │ ├── admin-db.php │ │ │ └── import │ │ │ │ └── textpattern.php │ │ ├── wp-commentsrss2.php │ │ ├── wp-config.php │ │ ├── wp-includes │ │ │ ├── functions-post.php │ │ │ ├── functions.php │ │ │ └── wp-db.php │ │ └── wp-settings.php │ ├── wordpress3 │ │ ├── wp-admin │ │ │ ├── admin-db.php │ │ │ ├── import │ │ │ │ └── textpattern.php │ │ │ └── update-links.php │ │ ├── wp-commentsrss2.php │ │ ├── wp-config.php │ │ ├── wp-includes │ │ │ ├── functions-post.php │ │ │ ├── functions.php │ │ │ └── wp-db.php │ │ ├── wp-login.php │ │ └── wp-settings.php │ └── wordpress4 │ │ ├── wp-commentsrss2.php │ │ ├── wp-config.php │ │ ├── wp-includes │ │ └── wp-db.php │ │ ├── wp-login.php │ │ └── wp-settings.php ├── todo │ ├── clone.php │ ├── functions22.php │ ├── nat_ref_objs.php │ ├── property_taint.php │ └── unset.php ├── twig │ ├── twig1.js │ └── twig1.php └── vulntestsuite │ ├── CWE_78__GET__CAST-func_settype_int__find_size-concatenation_simple_quote.php │ ├── CWE_78__GET__CAST-func_settype_int__find_size-interpretation_simple_quote.php │ ├── CWE_78__GET__func_FILTER-CLEANING-magic_quotes_filter__cat-interpretation_simple_quote.php │ ├── CWE_78__GET__func_FILTER-VALIDATION-number_float_filter__find_size-concatenation_simple_quote.php │ ├── CWE_78__GET__no_sanitizing__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__GET__ternary_white_list__find_size-interpretation_simple_quote.php │ ├── CWE_78__POST__CAST-cast_float__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__POST__CAST-cast_int__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__POST__CAST-cast_int_sort_of2__find_size-concatenation_simple_quote.php │ ├── CWE_78__POST__CAST-func_settype_float__find_size-concatenation_simple_quote.php │ ├── CWE_78__POST__func_FILTER-CLEANING-number_int_filter__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__POST__func_FILTER-VALIDATION-number_float_filter__find_size-interpretation_simple_quote.php │ ├── CWE_78__POST__func_FILTER-VALIDATION-number_int_filter__find_size-interpretation_simple_quote.php │ ├── CWE_78__POST__func_FILTER-VALIDATION-number_int_filter__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__POST__func_htmlentities__cat-interpretation_simple_quote.php │ ├── CWE_78__POST__func_intval__find_size-concatenation_simple_quote.php │ ├── CWE_78__POST__func_preg_match-letters_numbers__cat-concatenation_simple_quote.php │ ├── CWE_78__POST__func_preg_match-letters_numbers__cat-interpretation_simple_quote.php │ ├── CWE_78__POST__func_preg_match-letters_numbers__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__POST__func_preg_match-letters_numbers__ls-concatenation_simple_quote.php │ ├── CWE_78__POST__func_preg_match-no_filtering__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__POST__func_preg_match-only_numbers__find_size-interpretation_simple_quote.php │ ├── CWE_78__POST__func_preg_replace__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__POST__ternary_white_list__find_size-concatenation_simple_quote.php │ ├── CWE_78__SESSION__func_FILTER-CLEANING-number_float_filter__find_size-concatenation_simple_quote.php │ ├── CWE_78__SESSION__func_FILTER-CLEANING-number_float_filter__find_size-interpretation_simple_quote.php │ ├── CWE_78__SESSION__func_FILTER-VALIDATION-number_float_filter__find_size-interpretation_simple_quote.php │ ├── CWE_78__SESSION__func_addslashes__ls-concatenation_simple_quote.php │ ├── CWE_78__SESSION__func_floatval__find_size-interpretation_simple_quote.php │ ├── CWE_78__SESSION__func_htmlspecialchars__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__SESSION__func_intval__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__SESSION__func_preg_match-letters_numbers__ls-interpretation_simple_quote.php │ ├── CWE_78__SESSION__func_preg_match-letters_numbers__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__SESSION__func_preg_replace__cat-interpretation_simple_quote.php │ ├── CWE_78__SESSION__ternary_white_list__cat-interpretation_simple_quote.php │ ├── CWE_78__SESSION__whitelist_using_array__ls-interpretation_simple_quote.php │ ├── CWE_78__array-GET__CAST-cast_int_sort_of2__find_size-interpretation_simple_quote.php │ ├── CWE_78__array-GET__CAST-cast_int_sort_of__find_size-interpretation_simple_quote.php │ ├── CWE_78__array-GET__CAST-cast_int_sort_of__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__array-GET__CAST-func_settype_float__find_size-interpretation_simple_quote.php │ ├── CWE_78__array-GET__func_FILTER-CLEANING-magic_quotes_filter__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__array-GET__func_intval__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__array-GET__func_mysql_real_escape_string__find_size-concatenation_simple_quote.php │ ├── CWE_78__array-GET__func_mysql_real_escape_string__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__array-GET__func_preg_replace__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__array-GET__whitelist_using_array__cat-concatenation_simple_quote.php │ ├── CWE_78__array-GET__whitelist_using_array__find_size-concatenation_simple_quote.php │ ├── CWE_78__backticks__CAST-func_settype_int__find_size-interpretation_simple_quote.php │ ├── CWE_78__backticks__func_FILTER-CLEANING-email_filter__ls-concatenation_simple_quote.php │ ├── CWE_78__backticks__func_FILTER-CLEANING-magic_quotes_filter__ls-concatenation_simple_quote.php │ ├── CWE_78__backticks__func_FILTER-CLEANING-magic_quotes_filter__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__backticks__func_htmlspecialchars__cat-interpretation_simple_quote.php │ ├── CWE_78__backticks__func_htmlspecialchars__ls-concatenation_simple_quote.php │ ├── CWE_78__backticks__func_preg_match-only_numbers__find_size-concatenation_simple_quote.php │ ├── CWE_78__backticks__func_preg_replace2__ls-concatenation_simple_quote.php │ ├── CWE_78__backticks__func_preg_replace__cat-concatenation_simple_quote.php │ ├── CWE_78__backticks__no_sanitizing__find_size-concatenation_simple_quote.php │ ├── CWE_78__backticks__ternary_white_list__ls-concatenation_simple_quote.php │ ├── CWE_78__backticks__ternary_white_list__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__backticks__whitelist_using_array__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__exec__CAST-cast_int__find_size-interpretation_simple_quote.php │ ├── CWE_78__exec__func_FILTER-CLEANING-email_filter__cat-interpretation_simple_quote.php │ ├── CWE_78__exec__func_FILTER-VALIDATION-number_float_filter__find_size-concatenation_simple_quote.php │ ├── CWE_78__exec__func_addslashes__ls-concatenation_simple_quote.php │ ├── CWE_78__exec__func_htmlspecialchars__cat-interpretation_simple_quote.php │ ├── CWE_78__exec__whitelist_using_array__cat-interpretation_simple_quote.php │ ├── CWE_78__exec__whitelist_using_array__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__fopen__CAST-cast_int__find_size-concatenation_simple_quote.php │ ├── CWE_78__fopen__CAST-cast_int_sort_of2__find_size-concatenation_simple_quote.php │ ├── CWE_78__fopen__CAST-cast_int_sort_of__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__fopen__func_FILTER-CLEANING-email_filter__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__fopen__func_FILTER-CLEANING-magic_quotes_filter__ls-interpretation_simple_quote.php │ ├── CWE_78__fopen__func_addslashes__cat-concatenation_simple_quote.php │ ├── CWE_78__fopen__func_floatval__find_size-concatenation_simple_quote.php │ ├── CWE_78__fopen__func_htmlentities__cat-concatenation_simple_quote.php │ ├── CWE_78__fopen__func_preg_match-letters_numbers__cat-interpretation_simple_quote.php │ ├── CWE_78__fopen__func_preg_match-no_filtering__cat-interpretation_simple_quote.php │ ├── CWE_78__fopen__func_preg_match-no_filtering__ls-interpretation_simple_quote.php │ ├── CWE_78__fopen__func_preg_match-no_filtering__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__fopen__func_preg_replace2__cat-interpretation_simple_quote.php │ ├── CWE_78__fopen__no_sanitizing__find_size-concatenation_simple_quote.php │ ├── CWE_78__fopen__ternary_white_list__find_size-concatenation_simple_quote.php │ ├── CWE_78__fopen__whitelist_using_array__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__object-Array__CAST-func_settype_float__find_size-concatenation_simple_quote.php │ ├── CWE_78__object-Array__func_FILTER-CLEANING-number_int_filter__find_size-interpretation_simple_quote.php │ ├── CWE_78__object-Array__func_escapeshellarg__cat-interpretation_simple_quote.php │ ├── CWE_78__object-Array__func_htmlentities__ls-concatenation_simple_quote.php │ ├── CWE_78__object-Array__func_preg_match-only_letters__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__object-Array__func_preg_match-only_letters__ls-concatenation_simple_quote.php │ ├── CWE_78__object-Array__func_preg_match-only_numbers__find_size-concatenation_simple_quote.php │ ├── CWE_78__object-Array__func_preg_match-only_numbers__find_size-interpretation_simple_quote.php │ ├── CWE_78__object-Array__func_preg_replace__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__object-Array__ternary_white_list__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__object-Array__whitelist_using_array__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__object-Array__whitelist_using_array__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__object-classicGet__func_FILTER-CLEANING-email_filter__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__object-classicGet__func_FILTER-VALIDATION-number_int_filter__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__object-classicGet__func_htmlentities__cat-concatenation_simple_quote.php │ ├── CWE_78__object-classicGet__func_htmlentities__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__object-classicGet__func_htmlspecialchars__cat-concatenation_simple_quote.php │ ├── CWE_78__object-classicGet__func_htmlspecialchars__cat-interpretation_simple_quote.php │ ├── CWE_78__object-classicGet__func_htmlspecialchars__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__object-classicGet__func_preg_match-only_letters__ls-concatenation_simple_quote.php │ ├── CWE_78__object-classicGet__func_preg_match-only_numbers__find_size-interpretation_simple_quote.php │ ├── CWE_78__object-classicGet__func_preg_replace__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__object-classicGet__ternary_white_list__cat-concatenation_simple_quote.php │ ├── CWE_78__object-classicGet__ternary_white_list__cat-interpretation_simple_quote.php │ ├── CWE_78__object-classicGet__whitelist_using_array__find_size-interpretation_simple_quote.php │ ├── CWE_78__object-directGet__CAST-cast_int__find_size-concatenation_simple_quote.php │ ├── CWE_78__object-directGet__func_FILTER-CLEANING-number_int_filter__find_size-interpretation_simple_quote.php │ ├── CWE_78__object-directGet__func_addslashes__ls-concatenation_simple_quote.php │ ├── CWE_78__object-directGet__func_addslashes__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__object-directGet__func_escapeshellarg__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__object-directGet__func_intval__find_size-interpretation_simple_quote.php │ ├── CWE_78__object-directGet__func_mysql_real_escape_string__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__object-directGet__func_preg_match-letters_numbers__cat-concatenation_simple_quote.php │ ├── CWE_78__object-directGet__func_preg_match-no_filtering__cat-concatenation_simple_quote.php │ ├── CWE_78__object-directGet__func_preg_match-only_letters__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__object-directGet__func_preg_replace__ls-concatenation_simple_quote.php │ ├── CWE_78__object-directGet__ternary_white_list__cat-interpretation_simple_quote.php │ ├── CWE_78__object-directGet__ternary_white_list__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__object-directGet__whitelist_using_array__cat-concatenation_simple_quote.php │ ├── CWE_78__object-directGet__whitelist_using_array__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__object-directGet__whitelist_using_array__ls-concatenation_simple_quote.php │ ├── CWE_78__object-indexArray__CAST-cast_int__find_size-interpretation_simple_quote.php │ ├── CWE_78__object-indexArray__CAST-cast_int_sort_of__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__object-indexArray__CAST-func_settype_int__find_size-concatenation_simple_quote.php │ ├── CWE_78__object-indexArray__func_FILTER-CLEANING-email_filter__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__object-indexArray__func_FILTER-CLEANING-magic_quotes_filter__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__object-indexArray__func_FILTER-VALIDATION-number_float_filter__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__object-indexArray__func_addslashes__ls-interpretation_simple_quote.php │ ├── CWE_78__object-indexArray__func_escapeshellarg__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__object-indexArray__func_floatval__find_size-interpretation_simple_quote.php │ ├── CWE_78__object-indexArray__func_htmlspecialchars__cat-concatenation_simple_quote.php │ ├── CWE_78__object-indexArray__func_htmlspecialchars__ls-interpretation_simple_quote.php │ ├── CWE_78__object-indexArray__func_htmlspecialchars__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__object-indexArray__func_intval__find_size-interpretation_simple_quote.php │ ├── CWE_78__object-indexArray__func_preg_match-no_filtering__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__object-indexArray__func_preg_replace2__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__object-indexArray__ternary_white_list__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__object-indexArray__ternary_white_list__ls-concatenation_simple_quote.php │ ├── CWE_78__object-indexArray__whitelist_using_array__cat-concatenation_simple_quote.php │ ├── CWE_78__object-indexArray__whitelist_using_array__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__object-indexArray__whitelist_using_array__ls-interpretation_simple_quote.php │ ├── CWE_78__popen__CAST-cast_int_sort_of__find_size-concatenation_simple_quote.php │ ├── CWE_78__popen__CAST-cast_int_sort_of__find_size-interpretation_simple_quote.php │ ├── CWE_78__popen__func_FILTER-CLEANING-email_filter__cat-interpretation_simple_quote.php │ ├── CWE_78__popen__func_FILTER-CLEANING-email_filter__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__popen__func_FILTER-CLEANING-magic_quotes_filter__ls-concatenation_simple_quote.php │ ├── CWE_78__popen__func_FILTER-CLEANING-number_float_filter__find_size-interpretation_simple_quote.php │ ├── CWE_78__popen__func_FILTER-CLEANING-number_float_filter__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__popen__func_FILTER-VALIDATION-number_float_filter__find_size-interpretation_simple_quote.php │ ├── CWE_78__popen__func_escapeshellarg__cat-interpretation_simple_quote.php │ ├── CWE_78__popen__func_floatval__find_size-concatenation_simple_quote.php │ ├── CWE_78__popen__func_intval__find_size-concatenation_simple_quote.php │ ├── CWE_78__popen__func_intval__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__popen__func_preg_match-no_filtering__ls-interpretation_simple_quote.php │ ├── CWE_78__popen__func_preg_match-no_filtering__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__popen__func_preg_match-only_letters__ls-concatenation_simple_quote.php │ ├── CWE_78__popen__func_preg_replace2__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__popen__no_sanitizing__cat-interpretation_simple_quote.php │ ├── CWE_78__popen__ternary_white_list__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__popen__whitelist_using_array__ls-interpretation_simple_quote.php │ ├── CWE_78__proc_open__CAST-cast_int__find_size-concatenation_simple_quote.php │ ├── CWE_78__proc_open__CAST-func_settype_float__find_size-concatenation_simple_quote.php │ ├── CWE_78__proc_open__func_FILTER-CLEANING-email_filter__ls-interpretation_simple_quote.php │ ├── CWE_78__proc_open__func_FILTER-CLEANING-number_float_filter__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__proc_open__func_FILTER-CLEANING-number_int_filter__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__proc_open__func_FILTER-VALIDATION-number_int_filter__find_size-concatenation_simple_quote.php │ ├── CWE_78__proc_open__func_escapeshellarg__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__proc_open__func_escapeshellarg__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__proc_open__func_mysql_real_escape_string__find_size-concatenation_simple_quote.php │ ├── CWE_78__proc_open__func_preg_match-letters_numbers__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__proc_open__func_preg_match-no_filtering__cat-concatenation_simple_quote.php │ ├── CWE_78__proc_open__func_preg_match-no_filtering__ls-concatenation_simple_quote.php │ ├── CWE_78__proc_open__func_preg_match-no_filtering__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__proc_open__func_preg_replace__ls-interpretation_simple_quote.php │ ├── CWE_78__proc_open__func_preg_replace__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__proc_open__no_sanitizing__ls-concatenation_simple_quote.php │ ├── CWE_78__proc_open__whitelist_using_array__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__shell_exec__CAST-cast_int_sort_of__find_size-interpretation_simple_quote.php │ ├── CWE_78__shell_exec__func_FILTER-CLEANING-email_filter__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__shell_exec__func_FILTER-VALIDATION-number_float_filter__find_size-concatenation_simple_quote.php │ ├── CWE_78__shell_exec__func_FILTER-VALIDATION-number_int_filter__find_size-concatenation_simple_quote.php │ ├── CWE_78__shell_exec__func_FILTER-VALIDATION-number_int_filter__find_size-interpretation_simple_quote.php │ ├── CWE_78__shell_exec__func_escapeshellarg__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__shell_exec__func_htmlentities__cat-concatenation_simple_quote.php │ ├── CWE_78__shell_exec__func_htmlentities__ls-interpretation_simple_quote.php │ ├── CWE_78__shell_exec__func_htmlspecialchars__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__shell_exec__func_preg_match-no_filtering__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__shell_exec__func_preg_match-only_letters__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__shell_exec__func_preg_replace2__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__shell_exec__ternary_white_list__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__shell_exec__ternary_white_list__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__shell_exec__whitelist_using_array__find_size-concatenation_simple_quote.php │ ├── CWE_78__shell_exec__whitelist_using_array__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__shell_exec__whitelist_using_array__ls-interpretation_simple_quote.php │ ├── CWE_78__system__CAST-func_settype_float__find_size-concatenation_simple_quote.php │ ├── CWE_78__system__CAST-func_settype_int__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__system__func_FILTER-CLEANING-email_filter__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__system__func_FILTER-CLEANING-magic_quotes_filter__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__system__func_addslashes__cat-interpretation_simple_quote.php │ ├── CWE_78__system__func_escapeshellarg__cat-interpretation_simple_quote.php │ ├── CWE_78__system__func_htmlentities__cat-concatenation_simple_quote.php │ ├── CWE_78__system__func_mysql_real_escape_string__find_size-sprintf_%s_simple_quote.php │ ├── CWE_78__system__func_preg_match-only_letters__cat-interpretation_simple_quote.php │ ├── CWE_78__system__func_preg_match-only_letters__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__system__func_preg_match-only_letters__ls-concatenation_simple_quote.php │ ├── CWE_78__system__func_preg_match-only_letters__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__system__func_preg_replace2__cat-interpretation_simple_quote.php │ ├── CWE_78__system__func_preg_replace2__ls-sprintf_%s_simple_quote.php │ ├── CWE_78__system__func_preg_replace__cat-concatenation_simple_quote.php │ ├── CWE_78__system__func_preg_replace__ls-concatenation_simple_quote.php │ ├── CWE_78__system__whitelist_using_array__cat-concatenation_simple_quote.php │ ├── CWE_78__unserialize__func_FILTER-CLEANING-full_special_chars_filter__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__unserialize__func_FILTER-CLEANING-special_chars_filter__cat-interpretation_simple_quote.php │ ├── CWE_78__unserialize__func_FILTER-VALIDATION-email_filter__cat-concatenation_simple_quote.php │ ├── CWE_78__unserialize__no_sanitizing__cat-sprintf_%s_simple_quote.php │ ├── CWE_78__unserialize__no_sanitizing__find_size-concatenation_simple_quote.php │ ├── CWE_78__unserialize__no_sanitizing__find_size-sprintf_%s_simple_quote.php │ ├── CWE_862_Fopen__GET__func_preg_replace__fopen.php │ ├── CWE_862_Fopen__GET__no_sanitizing__fopen.php │ ├── CWE_862_Fopen__GET__ternary_white_list__fopen.php │ ├── CWE_862_Fopen__GET__whitelist_using_array__fopen.php │ ├── CWE_862_Fopen__POST__func_preg_replace__fopen.php │ ├── CWE_862_Fopen__POST__no_sanitizing__fopen.php │ ├── CWE_862_Fopen__POST__ternary_white_list__fopen.php │ ├── CWE_862_Fopen__POST__whitelist_using_array__fopen.php │ ├── CWE_862_Fopen__SESSION__ternary_white_list__fopen.php │ ├── CWE_862_Fopen__SESSION__whitelist_using_array__fopen.php │ ├── CWE_862_Fopen__array-GET__ternary_white_list__fopen.php │ ├── CWE_862_Fopen__array-GET__whitelist_using_array__fopen.php │ ├── CWE_862_Fopen__backticks__func_preg_replace__fopen.php │ ├── CWE_862_Fopen__backticks__no_sanitizing__fopen.php │ ├── CWE_862_Fopen__backticks__ternary_white_list__fopen.php │ ├── CWE_862_Fopen__backticks__whitelist_using_array__fopen.php │ ├── CWE_862_Fopen__exec__func_preg_replace__fopen.php │ ├── CWE_862_Fopen__exec__no_sanitizing__fopen.php │ ├── CWE_862_Fopen__exec__ternary_white_list__fopen.php │ ├── CWE_862_Fopen__exec__whitelist_using_array__fopen.php │ ├── CWE_862_Fopen__fopen__func_preg_replace__fopen.php │ ├── CWE_862_Fopen__fopen__no_sanitizing__fopen.php │ ├── CWE_862_Fopen__fopen__ternary_white_list__fopen.php │ ├── CWE_862_Fopen__fopen__whitelist_using_array__fopen.php │ ├── CWE_862_Fopen__object-Array__func_preg_replace__fopen.php │ ├── CWE_862_Fopen__object-Array__no_sanitizing__fopen.php │ ├── CWE_862_Fopen__object-Array__ternary_white_list__fopen.php │ ├── CWE_862_Fopen__object-Array__whitelist_using_array__fopen.php │ ├── CWE_862_Fopen__object-classicGet__func_preg_replace__fopen.php │ ├── CWE_862_Fopen__object-classicGet__no_sanitizing__fopen.php │ ├── CWE_862_Fopen__object-classicGet__ternary_white_list__fopen.php │ ├── CWE_862_Fopen__object-classicGet__whitelist_using_array__fopen.php │ ├── CWE_862_Fopen__object-directGet__func_preg_replace__fopen.php │ ├── CWE_862_Fopen__object-directGet__no_sanitizing__fopen.php │ ├── CWE_862_Fopen__object-directGet__ternary_white_list__fopen.php │ ├── CWE_862_Fopen__object-directGet__whitelist_using_array__fopen.php │ ├── CWE_862_Fopen__object-indexArray__func_preg_replace__fopen.php │ ├── CWE_862_Fopen__object-indexArray__no_sanitizing__fopen.php │ ├── CWE_862_Fopen__object-indexArray__ternary_white_list__fopen.php │ ├── CWE_862_Fopen__object-indexArray__whitelist_using_array__fopen.php │ ├── CWE_862_Fopen__popen__func_preg_replace__fopen.php │ ├── CWE_862_Fopen__popen__no_sanitizing__fopen.php │ ├── CWE_862_Fopen__popen__ternary_white_list__fopen.php │ ├── CWE_862_Fopen__popen__whitelist_using_array__fopen.php │ ├── CWE_862_Fopen__proc_open__func_preg_replace__fopen.php │ ├── CWE_862_Fopen__proc_open__no_sanitizing__fopen.php │ ├── CWE_862_Fopen__proc_open__ternary_white_list__fopen.php │ ├── CWE_862_Fopen__proc_open__whitelist_using_array__fopen.php │ ├── CWE_862_Fopen__shell_exec__func_preg_replace__fopen.php │ ├── CWE_862_Fopen__shell_exec__no_sanitizing__fopen.php │ ├── CWE_862_Fopen__shell_exec__ternary_white_list__fopen.php │ ├── CWE_862_Fopen__shell_exec__whitelist_using_array__fopen.php │ ├── CWE_862_Fopen__system__func_preg_replace__fopen.php │ ├── CWE_862_Fopen__system__no_sanitizing__fopen.php │ ├── CWE_862_Fopen__system__ternary_white_list__fopen.php │ ├── CWE_862_Fopen__system__whitelist_using_array__fopen.php │ ├── CWE_862_Fopen__unserialize__func_preg_replace__fopen.php │ ├── CWE_862_Fopen__unserialize__no_sanitizing__fopen.php │ ├── CWE_862_SQL__GET__CAST-cast_int__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__GET__CAST-cast_int__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__GET__CAST-cast_int__prepared_query-right_verification.php │ ├── CWE_862_SQL__GET__CAST-cast_int__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__GET__ESAPI__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__GET__ESAPI__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__GET__ESAPI__prepared_query-right_verification.php │ ├── CWE_862_SQL__GET__ESAPI__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__GET__Indirect_reference__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__GET__Indirect_reference__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__GET__Indirect_reference__prepared_query-right_verification.php │ ├── CWE_862_SQL__GET__Indirect_reference__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__GET__ternary_white_list__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__GET__ternary_white_list__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__GET__ternary_white_list__prepared_query-right_verification.php │ ├── CWE_862_SQL__GET__ternary_white_list__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__GET__whitelist_using_array__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__GET__whitelist_using_array__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__GET__whitelist_using_array__prepared_query-right_verification.php │ ├── CWE_862_SQL__GET__whitelist_using_array__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__POST__CAST-cast_int__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__POST__CAST-cast_int__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__POST__CAST-cast_int__prepared_query-right_verification.php │ ├── CWE_862_SQL__POST__CAST-cast_int__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__POST__ESAPI__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__POST__ESAPI__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__POST__ESAPI__prepared_query-right_verification.php │ ├── CWE_862_SQL__POST__ESAPI__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__POST__Indirect_reference__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__POST__Indirect_reference__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__POST__Indirect_reference__prepared_query-right_verification.php │ ├── CWE_862_SQL__POST__Indirect_reference__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__POST__ternary_white_list__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__POST__ternary_white_list__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__POST__ternary_white_list__prepared_query-right_verification.php │ ├── CWE_862_SQL__POST__ternary_white_list__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__POST__whitelist_using_array__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__POST__whitelist_using_array__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__POST__whitelist_using_array__prepared_query-right_verification.php │ ├── CWE_862_SQL__POST__whitelist_using_array__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__SESSION__CAST-cast_int__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__SESSION__CAST-cast_int__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__SESSION__CAST-cast_int__prepared_query-right_verification.php │ ├── CWE_862_SQL__SESSION__CAST-cast_int__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__SESSION__ESAPI__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__SESSION__ESAPI__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__SESSION__ESAPI__prepared_query-right_verification.php │ ├── CWE_862_SQL__SESSION__ESAPI__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__SESSION__Indirect_reference__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__SESSION__Indirect_reference__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__SESSION__Indirect_reference__prepared_query-right_verification.php │ ├── CWE_862_SQL__SESSION__Indirect_reference__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__SESSION__ternary_white_list__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__SESSION__ternary_white_list__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__SESSION__ternary_white_list__prepared_query-right_verification.php │ ├── CWE_862_SQL__SESSION__ternary_white_list__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__SESSION__whitelist_using_array__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__SESSION__whitelist_using_array__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__SESSION__whitelist_using_array__prepared_query-right_verification.php │ ├── CWE_862_SQL__SESSION__whitelist_using_array__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__array-GET__CAST-cast_int__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__array-GET__CAST-cast_int__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__array-GET__CAST-cast_int__prepared_query-right_verification.php │ ├── CWE_862_SQL__array-GET__CAST-cast_int__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__array-GET__ESAPI__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__array-GET__ESAPI__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__array-GET__ESAPI__prepared_query-right_verification.php │ ├── CWE_862_SQL__array-GET__ESAPI__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__array-GET__Indirect_reference__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__array-GET__Indirect_reference__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__array-GET__Indirect_reference__prepared_query-right_verification.php │ ├── CWE_862_SQL__array-GET__Indirect_reference__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__array-GET__ternary_white_list__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__array-GET__ternary_white_list__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__array-GET__ternary_white_list__prepared_query-right_verification.php │ ├── CWE_862_SQL__array-GET__ternary_white_list__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__array-GET__whitelist_using_array__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__array-GET__whitelist_using_array__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__array-GET__whitelist_using_array__prepared_query-right_verification.php │ ├── CWE_862_SQL__array-GET__whitelist_using_array__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__backticks__CAST-cast_int__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__backticks__CAST-cast_int__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__backticks__CAST-cast_int__prepared_query-right_verification.php │ ├── CWE_862_SQL__backticks__CAST-cast_int__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__backticks__ESAPI__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__backticks__ESAPI__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__backticks__ESAPI__prepared_query-right_verification.php │ ├── CWE_862_SQL__backticks__ESAPI__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__backticks__Indirect_reference__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__backticks__Indirect_reference__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__backticks__Indirect_reference__prepared_query-right_verification.php │ ├── CWE_862_SQL__backticks__Indirect_reference__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__backticks__ternary_white_list__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__backticks__ternary_white_list__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__backticks__ternary_white_list__prepared_query-right_verification.php │ ├── CWE_862_SQL__backticks__ternary_white_list__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__backticks__whitelist_using_array__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__backticks__whitelist_using_array__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__backticks__whitelist_using_array__prepared_query-right_verification.php │ ├── CWE_862_SQL__backticks__whitelist_using_array__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__exec__CAST-cast_int__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__exec__CAST-cast_int__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__exec__CAST-cast_int__prepared_query-right_verification.php │ ├── CWE_862_SQL__exec__CAST-cast_int__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__exec__ESAPI__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__exec__ESAPI__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__exec__ESAPI__prepared_query-right_verification.php │ ├── CWE_862_SQL__exec__ESAPI__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__exec__Indirect_reference__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__exec__Indirect_reference__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__exec__Indirect_reference__prepared_query-right_verification.php │ ├── CWE_862_SQL__exec__Indirect_reference__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__exec__ternary_white_list__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__exec__ternary_white_list__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__exec__ternary_white_list__prepared_query-right_verification.php │ ├── CWE_862_SQL__exec__ternary_white_list__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__exec__whitelist_using_array__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__exec__whitelist_using_array__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__exec__whitelist_using_array__prepared_query-right_verification.php │ ├── CWE_862_SQL__exec__whitelist_using_array__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__fopen__CAST-cast_int__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__fopen__CAST-cast_int__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__fopen__CAST-cast_int__prepared_query-right_verification.php │ ├── CWE_862_SQL__fopen__CAST-cast_int__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__fopen__ESAPI__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__fopen__ESAPI__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__fopen__ESAPI__prepared_query-right_verification.php │ ├── CWE_862_SQL__fopen__ESAPI__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__fopen__Indirect_reference__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__fopen__Indirect_reference__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__fopen__Indirect_reference__prepared_query-right_verification.php │ ├── CWE_862_SQL__fopen__Indirect_reference__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__fopen__ternary_white_list__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__fopen__ternary_white_list__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__fopen__ternary_white_list__prepared_query-right_verification.php │ ├── CWE_862_SQL__fopen__ternary_white_list__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__fopen__whitelist_using_array__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__fopen__whitelist_using_array__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__fopen__whitelist_using_array__prepared_query-right_verification.php │ ├── CWE_862_SQL__fopen__whitelist_using_array__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-Array__CAST-cast_int__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-Array__CAST-cast_int__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-Array__CAST-cast_int__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-Array__CAST-cast_int__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-Array__ESAPI__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-Array__ESAPI__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-Array__ESAPI__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-Array__ESAPI__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-Array__Indirect_reference__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-Array__Indirect_reference__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-Array__Indirect_reference__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-Array__Indirect_reference__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-Array__ternary_white_list__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-Array__ternary_white_list__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-Array__ternary_white_list__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-Array__ternary_white_list__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-Array__whitelist_using_array__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-Array__whitelist_using_array__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-Array__whitelist_using_array__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-Array__whitelist_using_array__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-classicGet__CAST-cast_int__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-classicGet__CAST-cast_int__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-classicGet__CAST-cast_int__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-classicGet__CAST-cast_int__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-classicGet__ESAPI__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-classicGet__ESAPI__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-classicGet__ESAPI__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-classicGet__ESAPI__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-classicGet__Indirect_reference__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-classicGet__Indirect_reference__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-classicGet__Indirect_reference__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-classicGet__Indirect_reference__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-classicGet__ternary_white_list__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-classicGet__ternary_white_list__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-classicGet__ternary_white_list__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-classicGet__ternary_white_list__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-classicGet__whitelist_using_array__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-classicGet__whitelist_using_array__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-classicGet__whitelist_using_array__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-classicGet__whitelist_using_array__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-directGet__CAST-cast_int__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-directGet__CAST-cast_int__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-directGet__CAST-cast_int__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-directGet__CAST-cast_int__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-directGet__ESAPI__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-directGet__ESAPI__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-directGet__ESAPI__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-directGet__ESAPI__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-directGet__Indirect_reference__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-directGet__Indirect_reference__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-directGet__Indirect_reference__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-directGet__Indirect_reference__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-directGet__ternary_white_list__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-directGet__ternary_white_list__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-directGet__ternary_white_list__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-directGet__ternary_white_list__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-directGet__whitelist_using_array__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-directGet__whitelist_using_array__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-directGet__whitelist_using_array__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-directGet__whitelist_using_array__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-indexArray__CAST-cast_int__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-indexArray__CAST-cast_int__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-indexArray__CAST-cast_int__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-indexArray__CAST-cast_int__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-indexArray__ESAPI__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-indexArray__ESAPI__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-indexArray__ESAPI__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-indexArray__ESAPI__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-indexArray__Indirect_reference__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-indexArray__Indirect_reference__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-indexArray__Indirect_reference__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-indexArray__Indirect_reference__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-indexArray__ternary_white_list__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-indexArray__ternary_white_list__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-indexArray__ternary_white_list__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-indexArray__ternary_white_list__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__object-indexArray__whitelist_using_array__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__object-indexArray__whitelist_using_array__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__object-indexArray__whitelist_using_array__prepared_query-right_verification.php │ ├── CWE_862_SQL__object-indexArray__whitelist_using_array__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__popen__CAST-cast_int__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__popen__CAST-cast_int__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__popen__CAST-cast_int__prepared_query-right_verification.php │ ├── CWE_862_SQL__popen__CAST-cast_int__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__popen__ESAPI__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__popen__ESAPI__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__popen__ESAPI__prepared_query-right_verification.php │ ├── CWE_862_SQL__popen__ESAPI__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__popen__Indirect_reference__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__popen__Indirect_reference__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__popen__Indirect_reference__prepared_query-right_verification.php │ ├── CWE_862_SQL__popen__Indirect_reference__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__popen__ternary_white_list__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__popen__ternary_white_list__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__popen__ternary_white_list__prepared_query-right_verification.php │ ├── CWE_862_SQL__popen__ternary_white_list__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__popen__whitelist_using_array__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__popen__whitelist_using_array__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__popen__whitelist_using_array__prepared_query-right_verification.php │ ├── CWE_862_SQL__popen__whitelist_using_array__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__proc_open__CAST-cast_int__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__proc_open__CAST-cast_int__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__proc_open__CAST-cast_int__prepared_query-right_verification.php │ ├── CWE_862_SQL__proc_open__CAST-cast_int__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__proc_open__ESAPI__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__proc_open__ESAPI__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__proc_open__ESAPI__prepared_query-right_verification.php │ ├── CWE_862_SQL__proc_open__ESAPI__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__proc_open__Indirect_reference__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__proc_open__Indirect_reference__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__proc_open__Indirect_reference__prepared_query-right_verification.php │ ├── CWE_862_SQL__proc_open__Indirect_reference__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__proc_open__ternary_white_list__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__proc_open__ternary_white_list__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__proc_open__ternary_white_list__prepared_query-right_verification.php │ ├── CWE_862_SQL__proc_open__ternary_white_list__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__proc_open__whitelist_using_array__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__proc_open__whitelist_using_array__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__proc_open__whitelist_using_array__prepared_query-right_verification.php │ ├── CWE_862_SQL__proc_open__whitelist_using_array__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__shell_exec__CAST-cast_int__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__shell_exec__CAST-cast_int__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__shell_exec__CAST-cast_int__prepared_query-right_verification.php │ ├── CWE_862_SQL__shell_exec__CAST-cast_int__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__shell_exec__ESAPI__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__shell_exec__ESAPI__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__shell_exec__ESAPI__prepared_query-right_verification.php │ ├── CWE_862_SQL__shell_exec__ESAPI__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__shell_exec__Indirect_reference__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__shell_exec__Indirect_reference__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__shell_exec__Indirect_reference__prepared_query-right_verification.php │ ├── CWE_862_SQL__shell_exec__Indirect_reference__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__shell_exec__ternary_white_list__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__shell_exec__ternary_white_list__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__shell_exec__ternary_white_list__prepared_query-right_verification.php │ ├── CWE_862_SQL__shell_exec__ternary_white_list__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__shell_exec__whitelist_using_array__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__shell_exec__whitelist_using_array__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__shell_exec__whitelist_using_array__prepared_query-right_verification.php │ ├── CWE_862_SQL__shell_exec__whitelist_using_array__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__system__CAST-cast_int__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__system__CAST-cast_int__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__system__CAST-cast_int__prepared_query-right_verification.php │ ├── CWE_862_SQL__system__CAST-cast_int__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__system__ESAPI__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__system__ESAPI__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__system__ESAPI__prepared_query-right_verification.php │ ├── CWE_862_SQL__system__ESAPI__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__system__Indirect_reference__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__system__Indirect_reference__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__system__Indirect_reference__prepared_query-right_verification.php │ ├── CWE_862_SQL__system__Indirect_reference__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__system__ternary_white_list__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__system__ternary_white_list__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__system__ternary_white_list__prepared_query-right_verification.php │ ├── CWE_862_SQL__system__ternary_white_list__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__system__whitelist_using_array__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__system__whitelist_using_array__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__system__whitelist_using_array__prepared_query-right_verification.php │ ├── CWE_862_SQL__system__whitelist_using_array__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__unserialize__CAST-cast_int__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__unserialize__CAST-cast_int__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__unserialize__ESAPI__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__unserialize__ESAPI__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__unserialize__ESAPI__prepared_query-right_verification.php │ ├── CWE_862_SQL__unserialize__ESAPI__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__unserialize__Indirect_reference__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__unserialize__Indirect_reference__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__unserialize__Indirect_reference__prepared_query-right_verification.php │ ├── CWE_862_SQL__unserialize__Indirect_reference__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__unserialize__ternary_white_list__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__unserialize__ternary_white_list__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__unserialize__ternary_white_list__prepared_query-right_verification.php │ ├── CWE_862_SQL__unserialize__ternary_white_list__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_SQL__unserialize__whitelist_using_array__non_prepared_query-right_verification.php │ ├── CWE_862_SQL__unserialize__whitelist_using_array__prepared_query-no_right_verification.php │ ├── CWE_862_SQL__unserialize__whitelist_using_array__prepared_query-right_verification.php │ ├── CWE_862_SQL__unserialize__whitelist_using_array__select_from_where-interpretation_simple_quote.php │ ├── CWE_862_XPath__GET__CAST-cast_int__concatenation-right_verification.php │ ├── CWE_862_XPath__GET__ternary_white_list__concatenation-right_verification.php │ ├── CWE_862_XPath__GET__ternary_white_list__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__GET__whitelist_using_array__concatenation-right_verification.php │ ├── CWE_862_XPath__GET__whitelist_using_array__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__POST__CAST-cast_int__concatenation-right_verification.php │ ├── CWE_862_XPath__POST__ternary_white_list__concatenation-right_verification.php │ ├── CWE_862_XPath__POST__ternary_white_list__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__POST__whitelist_using_array__concatenation-right_verification.php │ ├── CWE_862_XPath__POST__whitelist_using_array__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__SESSION__CAST-cast_int__concatenation-right_verification.php │ ├── CWE_862_XPath__SESSION__ternary_white_list__concatenation-right_verification.php │ ├── CWE_862_XPath__SESSION__ternary_white_list__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__SESSION__whitelist_using_array__concatenation-right_verification.php │ ├── CWE_862_XPath__SESSION__whitelist_using_array__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__array-GET__CAST-cast_int__concatenation-right_verification.php │ ├── CWE_862_XPath__array-GET__ternary_white_list__concatenation-right_verification.php │ ├── CWE_862_XPath__array-GET__ternary_white_list__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__array-GET__whitelist_using_array__concatenation-right_verification.php │ ├── CWE_862_XPath__array-GET__whitelist_using_array__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__backticks__CAST-cast_int__concatenation-right_verification.php │ ├── CWE_862_XPath__backticks__ternary_white_list__concatenation-right_verification.php │ ├── CWE_862_XPath__backticks__ternary_white_list__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__backticks__whitelist_using_array__concatenation-right_verification.php │ ├── CWE_862_XPath__backticks__whitelist_using_array__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__exec__CAST-cast_int__concatenation-right_verification.php │ ├── CWE_862_XPath__exec__ternary_white_list__concatenation-right_verification.php │ ├── CWE_862_XPath__exec__ternary_white_list__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__exec__whitelist_using_array__concatenation-right_verification.php │ ├── CWE_862_XPath__exec__whitelist_using_array__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__fopen__CAST-cast_int__concatenation-right_verification.php │ ├── CWE_862_XPath__fopen__ternary_white_list__concatenation-right_verification.php │ ├── CWE_862_XPath__fopen__ternary_white_list__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__fopen__whitelist_using_array__concatenation-right_verification.php │ ├── CWE_862_XPath__fopen__whitelist_using_array__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__object-Array__CAST-cast_int__concatenation-right_verification.php │ ├── CWE_862_XPath__object-Array__ternary_white_list__concatenation-right_verification.php │ ├── CWE_862_XPath__object-Array__ternary_white_list__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__object-Array__whitelist_using_array__concatenation-right_verification.php │ ├── CWE_862_XPath__object-Array__whitelist_using_array__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__object-classicGet__CAST-cast_int__concatenation-right_verification.php │ ├── CWE_862_XPath__object-classicGet__ternary_white_list__concatenation-right_verification.php │ ├── CWE_862_XPath__object-classicGet__ternary_white_list__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__object-classicGet__whitelist_using_array__concatenation-right_verification.php │ ├── CWE_862_XPath__object-classicGet__whitelist_using_array__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__object-directGet__CAST-cast_int__concatenation-right_verification.php │ ├── CWE_862_XPath__object-directGet__ternary_white_list__concatenation-right_verification.php │ ├── CWE_862_XPath__object-directGet__ternary_white_list__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__object-directGet__whitelist_using_array__concatenation-right_verification.php │ ├── CWE_862_XPath__object-directGet__whitelist_using_array__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__object-indexArray__CAST-cast_int__concatenation-right_verification.php │ ├── CWE_862_XPath__object-indexArray__ternary_white_list__concatenation-right_verification.php │ ├── CWE_862_XPath__object-indexArray__ternary_white_list__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__object-indexArray__whitelist_using_array__concatenation-right_verification.php │ ├── CWE_862_XPath__object-indexArray__whitelist_using_array__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__popen__CAST-cast_int__concatenation-right_verification.php │ ├── CWE_862_XPath__popen__ternary_white_list__concatenation-right_verification.php │ ├── CWE_862_XPath__popen__ternary_white_list__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__popen__whitelist_using_array__concatenation-right_verification.php │ ├── CWE_862_XPath__popen__whitelist_using_array__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__proc_open__CAST-cast_int__concatenation-right_verification.php │ ├── CWE_862_XPath__proc_open__ternary_white_list__concatenation-right_verification.php │ ├── CWE_862_XPath__proc_open__ternary_white_list__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__proc_open__whitelist_using_array__concatenation-right_verification.php │ ├── CWE_862_XPath__proc_open__whitelist_using_array__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__shell_exec__CAST-cast_int__concatenation-right_verification.php │ ├── CWE_862_XPath__shell_exec__ternary_white_list__concatenation-right_verification.php │ ├── CWE_862_XPath__shell_exec__ternary_white_list__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__shell_exec__whitelist_using_array__concatenation-right_verification.php │ ├── CWE_862_XPath__shell_exec__whitelist_using_array__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__system__CAST-cast_int__concatenation-right_verification.php │ ├── CWE_862_XPath__system__ternary_white_list__concatenation-right_verification.php │ ├── CWE_862_XPath__system__ternary_white_list__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__system__whitelist_using_array__concatenation-right_verification.php │ ├── CWE_862_XPath__system__whitelist_using_array__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__unserialize__CAST-cast_int__concatenation-right_verification.php │ ├── CWE_862_XPath__unserialize__ternary_white_list__concatenation-right_verification.php │ ├── CWE_862_XPath__unserialize__ternary_white_list__username_at-concatenation_simple_quote.php │ ├── CWE_862_XPath__unserialize__whitelist_using_array__concatenation-right_verification.php │ ├── CWE_862_XPath__unserialize__whitelist_using_array__username_at-concatenation_simple_quote.php │ ├── CWE_89__GET__CAST-cast_float_sort_of__multiple_select-sprintf_%u_simple_quote.php │ ├── CWE_89__GET__CAST-cast_int__multiple_AS-sprintf_%u_simple_quote.php │ ├── CWE_89__GET__CAST-cast_int__multiple_select-sprintf_%u_simple_quote.php │ ├── CWE_89__GET__CAST-cast_int_sort_of2__multiple_select-interpretation_simple_quote.php │ ├── CWE_89__GET__CAST-func_settype_float__multiple_select-sprintf_%d.php │ ├── CWE_89__GET__CAST-func_settype_float__select_from_where-sprintf_%s_simple_quote.php │ ├── CWE_89__GET__func_FILTER-CLEANING-number_int_filter__select_from_where-sprintf_%u.php │ ├── CWE_89__GET__func_FILTER-VALIDATION-number_int_filter__multiple_AS-sprintf_%u.php │ ├── CWE_89__GET__func_intval__multiple_AS-sprintf_%d_simple_quote.php │ ├── CWE_89__GET__func_intval__select_from_where-sprintf_%d.php │ ├── CWE_89__GET__no_sanitizing__join-sprintf_%s_simple_quote.php │ ├── CWE_89__GET__no_sanitizing__multiple_AS-interpretation.php │ ├── CWE_89__GET__ternary_white_list__select_from_where-sprintf_%u.php │ ├── CWE_89__POST__CAST-cast_float_sort_of__multiple_select-interpretation_simple_quote.php │ ├── CWE_89__POST__CAST-cast_int__multiple_AS-concatenation.php │ ├── CWE_89__POST__CAST-cast_int__multiple_AS-sprintf_%d.php │ ├── CWE_89__POST__CAST-cast_int__multiple_select-concatenation.php │ ├── CWE_89__POST__CAST-cast_int_sort_of__multiple_select-interpretation.php │ ├── CWE_89__POST__CAST-func_settype_float__select_from_where-sprintf_%s_simple_quote.php │ ├── CWE_89__POST__func_FILTER-CLEANING-number_int_filter__select_from_where-sprintf_%d.php │ ├── CWE_89__POST__func_FILTER-VALIDATION-number_int_filter__select_from_where-sprintf_%s_simple_quote.php │ ├── CWE_89__POST__func_floatval__select_from_where-sprintf_%s_simple_quote.php │ ├── CWE_89__POST__func_preg_match-only_numbers__select_from_where-concatenation.php │ ├── CWE_89__SESSION__CAST-cast_int_sort_of2__multiple_select-sprintf_%u_simple_quote.php │ ├── CWE_89__SESSION__CAST-cast_int_sort_of__multiple_AS-concatenation_simple_quote.php │ ├── CWE_89__SESSION__CAST-cast_int_sort_of__select_from_where-sprintf_%u.php │ ├── CWE_89__SESSION__func_FILTER-CLEANING-number_int_filter__multiple_AS-sprintf_%d.php │ ├── CWE_89__SESSION__func_FILTER-CLEANING-number_int_filter__multiple_AS-sprintf_%s_simple_quote.php │ ├── CWE_89__SESSION__func_FILTER-CLEANING-number_int_filter__multiple_select-sprintf_%d.php │ ├── CWE_89__SESSION__func_FILTER-VALIDATION-number_float_filter__multiple_AS-sprintf_%s_simple_quote.php │ ├── CWE_89__SESSION__func_FILTER-VALIDATION-number_int_filter__select_from_where-concatenation.php │ ├── CWE_89__SESSION__func_floatval__multiple_select-concatenation_simple_quote.php │ ├── CWE_89__SESSION__func_floatval__select_from_where-sprintf_%d.php │ ├── CWE_89__SESSION__ternary_white_list__multiple_select-concatenation.php │ ├── CWE_89__SESSION__whitelist_using_array_from__select_from-sprintf_%s_simple_quote.php │ ├── CWE_89__array-GET__CAST-cast_float_sort_of__multiple_select-interpretation.php │ ├── CWE_89__array-GET__CAST-cast_float_sort_of__select_from_where-concatenation_simple_quote.php │ ├── CWE_89__array-GET__CAST-cast_int__multiple_AS-concatenation.php │ ├── CWE_89__array-GET__CAST-cast_int_sort_of2__multiple_AS-sprintf_%u_simple_quote.php │ ├── CWE_89__array-GET__CAST-cast_int_sort_of__multiple_AS-sprintf_%u_simple_quote.php │ ├── CWE_89__array-GET__CAST-func_settype_float__multiple_AS-sprintf_%s_simple_quote.php │ ├── CWE_89__array-GET__func_FILTER-VALIDATION-number_int_filter__select_from_where-sprintf_%s_simple_quote.php │ ├── CWE_89__array-GET__func_floatval__multiple_select-interpretation_simple_quote.php │ ├── CWE_89__array-GET__func_htmlentities__join-concatenation_simple_quote.php │ ├── CWE_89__array-GET__func_intval__multiple_select-sprintf_%u.php │ ├── CWE_89__array-GET__func_intval__select_from_where-concatenation.php │ ├── CWE_89__backticks__CAST-cast_int_sort_of__multiple_AS-concatenation.php │ ├── CWE_89__backticks__func_FILTER-CLEANING-number_float_filter__multiple_select-concatenation_simple_quote.php │ ├── CWE_89__backticks__func_FILTER-CLEANING-number_int_filter__select_from_where-sprintf_%d.php │ ├── CWE_89__backticks__func_FILTER-VALIDATION-number_int_filter__multiple_AS-concatenation.php │ ├── CWE_89__backticks__func_floatval__multiple_select-sprintf_%u_simple_quote.php │ ├── CWE_89__backticks__func_htmlspecialchars__join-concatenation_simple_quote.php │ ├── CWE_89__backticks__func_mysql_real_escape_string__multiple_AS-sprintf_%s_simple_quote.php │ ├── CWE_89__backticks__func_preg_match-no_filtering__join-concatenation_simple_quote.php │ ├── CWE_89__backticks__func_preg_match-only_numbers__select_from_where-sprintf_%u_simple_quote.php │ ├── CWE_89__backticks__whitelist_using_array__join-interpretation_simple_quote.php │ ├── CWE_89__exec__CAST-cast_int__multiple_AS-sprintf_%u.php │ ├── CWE_89__exec__CAST-func_settype_int__multiple_select-sprintf_%u_simple_quote.php │ ├── CWE_89__exec__func_FILTER-CLEANING-email_filter__select_from-concatenation_simple_quote.php │ ├── CWE_89__exec__func_FILTER-CLEANING-number_int_filter__select_from_where-sprintf_%u_simple_quote.php │ ├── CWE_89__exec__func_floatval__multiple_select-sprintf_%u.php │ ├── CWE_89__exec__func_intval__select_from_where-concatenation.php │ ├── CWE_89__exec__func_mysql_real_escape_string__multiple_select-sprintf_%d.php │ ├── CWE_89__exec__no_sanitizing__multiple_AS-concatenation_simple_quote.php │ ├── CWE_89__exec__no_sanitizing__multiple_select-interpretation_simple_quote.php │ ├── CWE_89__exec__whitelist_using_array__multiple_AS-sprintf_%u_simple_quote.php │ ├── CWE_89__fopen__CAST-cast_float__multiple_select-concatenation.php │ ├── CWE_89__fopen__CAST-cast_int_sort_of2__select_from_where-sprintf_%u_simple_quote.php │ ├── CWE_89__fopen__func_FILTER-VALIDATION-number_float_filter__multiple_AS-concatenation.php │ ├── CWE_89__fopen__func_FILTER-VALIDATION-number_float_filter__multiple_select-sprintf_%s_simple_quote.php │ ├── CWE_89__fopen__func_preg_replace__select_from-sprintf_%s_simple_quote.php │ ├── CWE_89__fopen__ternary_white_list__multiple_AS-sprintf_%u.php │ ├── CWE_89__fopen__ternary_white_list__select_from_where-concatenation.php │ ├── CWE_89__fopen__whitelist_using_array__multiple_select-sprintf_%u_simple_quote.php │ ├── CWE_89__object-Array__CAST-cast_int__multiple_select-concatenation_simple_quote.php │ ├── CWE_89__object-Array__CAST-cast_int__multiple_select-sprintf_%d.php │ ├── CWE_89__object-Array__CAST-cast_int_sort_of__multiple_AS-sprintf_%d.php │ ├── CWE_89__object-Array__CAST-cast_int_sort_of__select_from_where-sprintf_%s_simple_quote.php │ ├── CWE_89__object-Array__CAST-func_settype_float__multiple_AS-sprintf_%u.php │ ├── CWE_89__object-Array__CAST-func_settype_float__select_from_where-sprintf_%u_simple_quote.php │ ├── CWE_89__object-Array__func_FILTER-CLEANING-magic_quotes_filter__join-sprintf_%s_simple_quote.php │ ├── CWE_89__object-Array__func_FILTER-CLEANING-number_float_filter__multiple_AS-sprintf_%u.php │ ├── CWE_89__object-Array__func_floatval__multiple_AS-sprintf_%d_simple_quote.php │ ├── CWE_89__object-Array__func_floatval__multiple_select-concatenation_simple_quote.php │ ├── CWE_89__object-Array__func_floatval__multiple_select-sprintf_%d.php │ ├── CWE_89__object-Array__func_floatval__select_from_where-interpretation.php │ ├── CWE_89__object-Array__func_intval__multiple_AS-sprintf_%u_simple_quote.php │ ├── CWE_89__object-classicGet__CAST-cast_float__multiple_AS-interpretation.php │ ├── CWE_89__object-classicGet__CAST-cast_int__select_from_where-sprintf_%u.php │ ├── CWE_89__object-classicGet__CAST-func_settype_float__multiple_AS-interpretation.php │ ├── CWE_89__object-classicGet__CAST-func_settype_int__multiple_AS-sprintf_%u_simple_quote.php │ ├── CWE_89__object-classicGet__CAST-func_settype_int__multiple_select-concatenation.php │ ├── CWE_89__object-classicGet__CAST-func_settype_int__select_from_where-sprintf_%d.php │ ├── CWE_89__object-classicGet__func_FILTER-CLEANING-number_int_filter__multiple_select-concatenation.php │ ├── CWE_89__object-classicGet__func_FILTER-VALIDATION-number_float_filter__multiple_select-concatenation_simple_quote.php │ ├── CWE_89__object-classicGet__func_FILTER-VALIDATION-number_float_filter__multiple_select-interpretation.php │ ├── CWE_89__object-classicGet__func_floatval__multiple_select-sprintf_%d.php │ ├── CWE_89__object-classicGet__func_htmlentities__join-sprintf_%s_simple_quote.php │ ├── CWE_89__object-classicGet__func_preg_match-only_numbers__multiple_AS-interpretation.php │ ├── CWE_89__object-classicGet__func_preg_match-only_numbers__multiple_select-interpretation.php │ ├── CWE_89__object-classicGet__ternary_white_list__join-sprintf_%s_simple_quote.php │ ├── CWE_89__object-classicGet__ternary_white_list__select_from-interpretation_simple_quote.php │ ├── CWE_89__object-directGet__CAST-cast_float_sort_of__select_from_where-concatenation.php │ ├── CWE_89__object-directGet__CAST-cast_int__multiple_select-sprintf_%u_simple_quote.php │ ├── CWE_89__object-directGet__CAST-cast_int_sort_of2__multiple_select-sprintf_%u_simple_quote.php │ ├── CWE_89__object-directGet__CAST-cast_int_sort_of__multiple_select-sprintf_%u.php │ ├── CWE_89__object-directGet__func_FILTER-CLEANING-email_filter__join-interpretation_simple_quote.php │ ├── CWE_89__object-directGet__func_FILTER-CLEANING-number_float_filter__select_from_where-concatenation.php │ ├── CWE_89__object-directGet__func_FILTER-VALIDATION-number_int_filter__multiple_select-interpretation_simple_quote.php │ ├── CWE_89__object-directGet__func_mysql_real_escape_string__multiple_select-sprintf_%u_simple_quote.php │ ├── CWE_89__object-directGet__func_mysql_real_escape_string__select_from_where-sprintf_%s_simple_quote.php │ ├── CWE_89__object-directGet__no_sanitizing__select_from-sprintf_%s_simple_quote.php │ ├── CWE_89__object-indexArray__CAST-cast_float_sort_of__multiple_select-interpretation_simple_quote.php │ ├── CWE_89__object-indexArray__CAST-cast_int__multiple_select-sprintf_%d_simple_quote.php │ ├── CWE_89__object-indexArray__CAST-cast_int_sort_of__multiple_select-sprintf_%s_simple_quote.php │ ├── CWE_89__object-indexArray__CAST-func_settype_float__multiple_AS-interpretation_simple_quote.php │ ├── CWE_89__object-indexArray__func_FILTER-CLEANING-email_filter__select_from-sprintf_%s_simple_quote.php │ ├── CWE_89__object-indexArray__func_FILTER-VALIDATION-number_float_filter__select_from_where-sprintf_%s_simple_quote.php │ ├── CWE_89__object-indexArray__func_preg_match-no_filtering__join-concatenation_simple_quote.php │ ├── CWE_89__object-indexArray__func_preg_match-only_numbers__multiple_select-sprintf_%d_simple_quote.php │ ├── CWE_89__object-indexArray__whitelist_using_array__join-interpretation_simple_quote.php │ ├── CWE_89__object-indexArray__whitelist_using_array__select_from-interpretation_simple_quote.php │ ├── CWE_89__popen__CAST-cast_float__multiple_select-sprintf_%d_simple_quote.php │ ├── CWE_89__popen__CAST-cast_float__select_from_where-sprintf_%d_simple_quote.php │ ├── CWE_89__popen__CAST-func_settype_int__multiple_select-concatenation_simple_quote.php │ ├── CWE_89__popen__func_FILTER-CLEANING-email_filter__select_from-concatenation_simple_quote.php │ ├── CWE_89__popen__func_FILTER-CLEANING-number_float_filter__select_from_where-interpretation.php │ ├── CWE_89__popen__func_floatval__multiple_select-concatenation.php │ ├── CWE_89__popen__func_intval__select_from_where-concatenation.php │ ├── CWE_89__popen__func_mysql_real_escape_string__multiple_AS-sprintf_%d.php │ ├── CWE_89__popen__func_preg_match-no_filtering__join-sprintf_%s_simple_quote.php │ ├── CWE_89__popen__ternary_white_list__multiple_AS-concatenation_simple_quote.php │ ├── CWE_89__popen__ternary_white_list__multiple_select-sprintf_%u.php │ ├── CWE_89__proc_open__CAST-cast_float__multiple_select-concatenation.php │ ├── CWE_89__proc_open__CAST-cast_float_sort_of__multiple_select-sprintf_%s_simple_quote.php │ ├── CWE_89__proc_open__CAST-cast_int__select_from_where-interpretation.php │ ├── CWE_89__proc_open__CAST-cast_int_sort_of2__multiple_select-sprintf_%d.php │ ├── CWE_89__proc_open__CAST-cast_int_sort_of__multiple_AS-sprintf_%s_simple_quote.php │ ├── CWE_89__proc_open__func_FILTER-VALIDATION-number_float_filter__select_from_where-interpretation.php │ ├── CWE_89__proc_open__func_intval__select_from_where-concatenation.php │ ├── CWE_89__proc_open__func_intval__select_from_where-sprintf_%d_simple_quote.php │ ├── CWE_89__proc_open__func_preg_match-only_numbers__select_from_where-concatenation.php │ ├── CWE_89__proc_open__whitelist_using_array__multiple_AS-sprintf_%d_simple_quote.php │ ├── CWE_89__proc_open__whitelist_using_array__select_from_where-sprintf_%d.php │ ├── CWE_89__shell_exec__CAST-cast_float_sort_of__multiple_select-sprintf_%d.php │ ├── CWE_89__shell_exec__CAST-cast_int_sort_of2__multiple_AS-sprintf_%u.php │ ├── CWE_89__shell_exec__CAST-cast_int_sort_of__select_from_where-interpretation_simple_quote.php │ ├── CWE_89__shell_exec__func_FILTER-CLEANING-number_float_filter__multiple_AS-interpretation.php │ ├── CWE_89__shell_exec__func_FILTER-CLEANING-number_int_filter__multiple_select-sprintf_%d.php │ ├── CWE_89__shell_exec__func_FILTER-VALIDATION-number_float_filter__multiple_AS-sprintf_%s_simple_quote.php │ ├── CWE_89__shell_exec__func_FILTER-VALIDATION-number_int_filter__multiple_select-sprintf_%u.php │ ├── CWE_89__shell_exec__func_intval__multiple_AS-sprintf_%d_simple_quote.php │ ├── CWE_89__shell_exec__func_mysql_real_escape_string__multiple_select-interpretation.php │ ├── CWE_89__shell_exec__no_sanitizing__multiple_AS-concatenation_simple_quote.php │ ├── CWE_89__shell_exec__no_sanitizing__multiple_AS-sprintf_%s_simple_quote.php │ ├── CWE_89__shell_exec__ternary_white_list__select_from_where-sprintf_%d_simple_quote.php │ ├── CWE_89__shell_exec__whitelist_using_array__multiple_select-sprintf_%d.php │ ├── CWE_89__system__CAST-cast_float__multiple_AS-interpretation_simple_quote.php │ ├── CWE_89__system__CAST-func_settype_float__multiple_select-sprintf_%u_simple_quote.php │ ├── CWE_89__system__CAST-func_settype_float__select_from_where-interpretation_simple_quote.php │ ├── CWE_89__system__func_FILTER-CLEANING-email_filter__select_from-sprintf_%s_simple_quote.php │ ├── CWE_89__system__func_FILTER-CLEANING-magic_quotes_filter__select_from-concatenation_simple_quote.php │ ├── CWE_89__system__func_FILTER-VALIDATION-number_float_filter__multiple_AS-sprintf_%d.php │ ├── CWE_89__system__func_preg_match-no_filtering__join-interpretation_simple_quote.php │ ├── CWE_89__system__func_preg_match-only_numbers__select_from_where-sprintf_%u_simple_quote.php │ ├── CWE_89__system__func_preg_replace2__join-concatenation_simple_quote.php │ ├── CWE_89__system__no_sanitizing__multiple_AS-concatenation.php │ ├── CWE_89__system__ternary_white_list__multiple_select-sprintf_%d_simple_quote.php │ ├── CWE_89__system__ternary_white_list__multiple_select-sprintf_%u.php │ ├── CWE_89__system__whitelist_using_array__multiple_AS-sprintf_%s_simple_quote.php │ ├── CWE_89__system__whitelist_using_array__multiple_select-sprintf_%d_simple_quote.php │ ├── CWE_89__unserialize__CAST-cast_float_sort_of__multiple_AS-sprintf_%u.php │ ├── CWE_89__unserialize__CAST-cast_int__multiple_AS-interpretation.php │ ├── CWE_89__unserialize__CAST-cast_int__multiple_AS-sprintf_%u_simple_quote.php │ ├── CWE_89__unserialize__CAST-func_settype_float__multiple_select-concatenation.php │ ├── CWE_89__unserialize__func_FILTER-CLEANING-number_float_filter__select_from_where-sprintf_%d.php │ ├── CWE_89__unserialize__func_FILTER-CLEANING-number_int_filter__multiple_AS-sprintf_%s_simple_quote.php │ ├── CWE_89__unserialize__func_FILTER-CLEANING-number_int_filter__select_from_where-concatenation_simple_quote.php │ ├── CWE_89__unserialize__func_FILTER-VALIDATION-number_int_filter__multiple_select-interpretation.php │ ├── CWE_89__unserialize__func_floatval__multiple_AS-sprintf_%s_simple_quote.php │ ├── CWE_89__unserialize__func_intval__multiple_select-sprintf_%u.php │ ├── CWE_89__unserialize__func_intval__select_from_where-sprintf_%u.php │ ├── CWE_89__unserialize__func_mysql_real_escape_string__multiple_AS-concatenation.php │ ├── CWE_89__unserialize__func_mysql_real_escape_string__multiple_select-concatenation.php │ ├── CWE_89__unserialize__func_preg_match-only_letters__select_from-interpretation_simple_quote.php │ ├── CWE_89__unserialize__func_preg_match-only_numbers__multiple_select-concatenation.php │ ├── CWE_89__unserialize__no_sanitizing__select_from_where-concatenation_simple_quote.php │ ├── CWE_89__unserialize__no_sanitizing__select_from_where-interpretation_simple_quote.php │ ├── CWE_89__unserialize__ternary_white_list__select_from_where-sprintf_%u.php │ ├── CWE_89__unserialize__whitelist_using_array__multiple_select-sprintf_%s_simple_quote.php │ ├── CWE_90__GET__func_FILTER-CLEANING-email_filter__name-concatenation_simple_quote.php │ ├── CWE_90__GET__func_FILTER-CLEANING-email_filter__userByCN-concatenation_simple_quote.php │ ├── CWE_90__GET__func_FILTER-CLEANING-special_chars_filter__not_name-interpretation_simple_quote.php │ ├── CWE_90__GET__func_FILTER-CLEANING-special_chars_filter__userByMail-concatenation_simple_quote.php │ ├── CWE_90__GET__func_addslashes__name-interpretation_simple_quote.php │ ├── CWE_90__GET__func_addslashes__name-sprintf_%s_simple_quote.php │ ├── CWE_90__GET__func_addslashes__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__GET__func_htmlentities__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__GET__func_htmlentities__userByMail-concatenation_simple_quote.php │ ├── CWE_90__GET__func_htmlentities__userByMail-interpretation_simple_quote.php │ ├── CWE_90__GET__func_htmlentities__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__GET__func_htmlspecialchars__not_name-interpretation_simple_quote.php │ ├── CWE_90__GET__func_pg_escape_literal__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__GET__func_preg_match-letters_numbers__name-concatenation_simple_quote.php │ ├── CWE_90__GET__func_preg_match-letters_numbers__name-sprintf_%s_simple_quote.php │ ├── CWE_90__GET__func_preg_match-letters_numbers__userByCN-sprintf_%s_simple_quote.php │ ├── CWE_90__GET__func_preg_match-only_letters__not_name-concatenation_simple_quote.php │ ├── CWE_90__GET__func_preg_replace_ldap_char_white_list__userByMail-concatenation_simple_quote.php │ ├── CWE_90__GET__func_preg_replace_ldap_char_white_list__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__GET__no_sanitizing__not_name-interpretation_simple_quote.php │ ├── CWE_90__GET__whitelist_using_array__name-sprintf_%s_simple_quote.php │ ├── CWE_90__GET__whitelist_using_array__userByCN-concatenation_simple_quote.php │ ├── CWE_90__GET__whitelist_using_array__userByCN-sprintf_%s_simple_quote.php │ ├── CWE_90__GET__whitelist_using_array__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__POST__func_FILTER-CLEANING-full_special_chars_filter__name-interpretation_simple_quote.php │ ├── CWE_90__POST__func_FILTER-CLEANING-full_special_chars_filter__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__POST__func_FILTER-CLEANING-full_special_chars_filter__userByMail-concatenation_simple_quote.php │ ├── CWE_90__POST__func_FILTER-CLEANING-special_chars_filter__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__POST__func_addslashes__name-interpretation_simple_quote.php │ ├── CWE_90__POST__func_addslashes__userByMail-concatenation_simple_quote.php │ ├── CWE_90__POST__func_htmlentities__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__POST__func_pg_escape_literal__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__POST__func_preg_match-only_letters__name-interpretation_simple_quote.php │ ├── CWE_90__POST__func_preg_match-only_letters__userByCN-concatenation_simple_quote.php │ ├── CWE_90__POST__func_preg_match-only_letters__userByCN-interpretation_simple_quote.php │ ├── CWE_90__POST__func_preg_replace_ldap_char_white_list__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__POST__no_sanitizing__name-interpretation_simple_quote.php │ ├── CWE_90__POST__no_sanitizing__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__POST__no_sanitizing__userByCN-interpretation_simple_quote.php │ ├── CWE_90__POST__no_sanitizing__userByMail-concatenation_simple_quote.php │ ├── CWE_90__POST__ternary_white_list__not_name-interpretation_simple_quote.php │ ├── CWE_90__POST__whitelist_using_array__userByMail-concatenation_simple_quote.php │ ├── CWE_90__SESSION__func_FILTER-CLEANING-full_special_chars_filter__userByCN-interpretation_simple_quote.php │ ├── CWE_90__SESSION__func_FILTER-CLEANING-special_chars_filter__name-concatenation_simple_quote.php │ ├── CWE_90__SESSION__func_pg_escape_literal__not_name-interpretation_simple_quote.php │ ├── CWE_90__SESSION__func_preg_match-letters_numbers__name-sprintf_%s_simple_quote.php │ ├── CWE_90__SESSION__func_preg_match-only_letters__name-concatenation_simple_quote.php │ ├── CWE_90__SESSION__func_preg_replace_ldap_char_white_list__name-sprintf_%s_simple_quote.php │ ├── CWE_90__SESSION__func_preg_replace_ldap_char_white_list__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__SESSION__func_preg_replace_ldap_char_white_list__userByCN-interpretation_simple_quote.php │ ├── CWE_90__SESSION__func_str_replace_ldap_char_black_list__userByMail-concatenation_simple_quote.php │ ├── CWE_90__SESSION__ternary_white_list__not_name-concatenation_simple_quote.php │ ├── CWE_90__SESSION__ternary_white_list__userByCN-interpretation_simple_quote.php │ ├── CWE_90__SESSION__whitelist_using_array__not_name-concatenation_simple_quote.php │ ├── CWE_90__SESSION__whitelist_using_array__userByCN-concatenation_simple_quote.php │ ├── CWE_90__array-GET__func_FILTER-CLEANING-full_special_chars_filter__userByCN-concatenation_simple_quote.php │ ├── CWE_90__array-GET__func_FILTER-CLEANING-special_chars_filter__userByMail-interpretation_simple_quote.php │ ├── CWE_90__array-GET__func_preg_match-letters_numbers__userByMail-concatenation_simple_quote.php │ ├── CWE_90__array-GET__func_str_replace_ldap_char_black_list__name-interpretation_simple_quote.php │ ├── CWE_90__array-GET__ternary_white_list__not_name-concatenation_simple_quote.php │ ├── CWE_90__array-GET__ternary_white_list__userByCN-interpretation_simple_quote.php │ ├── CWE_90__array-GET__ternary_white_list__userByCN-sprintf_%s_simple_quote.php │ ├── CWE_90__array-GET__ternary_white_list__userByMail-interpretation_simple_quote.php │ ├── CWE_90__backticks__func_pg_escape_literal__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__backticks__func_preg_match-letters_numbers__name-sprintf_%s_simple_quote.php │ ├── CWE_90__backticks__ternary_white_list__name-interpretation_simple_quote.php │ ├── CWE_90__backticks__ternary_white_list__not_name-concatenation_simple_quote.php │ ├── CWE_90__backticks__ternary_white_list__userByMail-concatenation_simple_quote.php │ ├── CWE_90__backticks__ternary_white_list__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__exec__func_FILTER-CLEANING-full_special_chars_filter__userByMail-interpretation_simple_quote.php │ ├── CWE_90__exec__func_FILTER-CLEANING-full_special_chars_filter__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__exec__func_FILTER-CLEANING-special_chars_filter__not_name-interpretation_simple_quote.php │ ├── CWE_90__exec__func_FILTER-CLEANING-special_chars_filter__userByCN-concatenation_simple_quote.php │ ├── CWE_90__exec__func_FILTER-CLEANING-special_chars_filter__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__exec__func_pg_escape_literal__not_name-interpretation_simple_quote.php │ ├── CWE_90__exec__func_pg_escape_literal__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__exec__func_preg_match-letters_numbers__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__exec__func_preg_match-letters_numbers__userByCN-interpretation_simple_quote.php │ ├── CWE_90__exec__func_preg_match-letters_numbers__userByCN-sprintf_%s_simple_quote.php │ ├── CWE_90__exec__func_preg_match-only_letters__userByCN-interpretation_simple_quote.php │ ├── CWE_90__exec__func_preg_replace_ldap_char_white_list__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__exec__ternary_white_list__userByMail-interpretation_simple_quote.php │ ├── CWE_90__exec__whitelist_using_array__not_name-concatenation_simple_quote.php │ ├── CWE_90__fopen__func_FILTER-CLEANING-special_chars_filter__not_name-concatenation_simple_quote.php │ ├── CWE_90__fopen__func_FILTER-CLEANING-special_chars_filter__not_name-interpretation_simple_quote.php │ ├── CWE_90__fopen__func_addslashes__name-interpretation_simple_quote.php │ ├── CWE_90__fopen__func_addslashes__userByCN-interpretation_simple_quote.php │ ├── CWE_90__fopen__func_addslashes__userByCN-sprintf_%s_simple_quote.php │ ├── CWE_90__fopen__func_addslashes__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__fopen__func_htmlentities__name-sprintf_%s_simple_quote.php │ ├── CWE_90__fopen__func_htmlspecialchars__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__fopen__func_htmlspecialchars__userByMail-interpretation_simple_quote.php │ ├── CWE_90__fopen__func_pg_escape_literal__name-concatenation_simple_quote.php │ ├── CWE_90__fopen__func_preg_match-letters_numbers__not_name-interpretation_simple_quote.php │ ├── CWE_90__fopen__func_preg_match-only_letters__name-concatenation_simple_quote.php │ ├── CWE_90__fopen__func_preg_match-only_letters__not_name-concatenation_simple_quote.php │ ├── CWE_90__fopen__func_preg_replace_ldap_char_white_list__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__fopen__func_preg_replace_ldap_char_white_list__userByCN-sprintf_%s_simple_quote.php │ ├── CWE_90__fopen__no_sanitizing__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__fopen__whitelist_using_array__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__object-Array__func_FILTER-CLEANING-email_filter__name-sprintf_%s_simple_quote.php │ ├── CWE_90__object-Array__func_FILTER-CLEANING-email_filter__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__object-Array__func_FILTER-CLEANING-email_filter__userByCN-concatenation_simple_quote.php │ ├── CWE_90__object-Array__func_FILTER-CLEANING-special_chars_filter__userByCN-concatenation_simple_quote.php │ ├── CWE_90__object-Array__func_addslashes__userByCN-interpretation_simple_quote.php │ ├── CWE_90__object-Array__func_htmlentities__not_name-concatenation_simple_quote.php │ ├── CWE_90__object-Array__func_htmlentities__userByMail-concatenation_simple_quote.php │ ├── CWE_90__object-Array__func_pg_escape_literal__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__object-Array__func_pg_escape_literal__userByCN-concatenation_simple_quote.php │ ├── CWE_90__object-Array__func_preg_match-only_letters__name-interpretation_simple_quote.php │ ├── CWE_90__object-Array__func_preg_match-only_letters__name-sprintf_%s_simple_quote.php │ ├── CWE_90__object-Array__func_preg_match-only_letters__userByCN-sprintf_%s_simple_quote.php │ ├── CWE_90__object-Array__func_preg_match-only_letters__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__object-Array__func_preg_replace_ldap_char_white_list__userByCN-concatenation_simple_quote.php │ ├── CWE_90__object-Array__whitelist_using_array__name-sprintf_%s_simple_quote.php │ ├── CWE_90__object-classicGet__func_FILTER-CLEANING-email_filter__not_name-interpretation_simple_quote.php │ ├── CWE_90__object-classicGet__func_FILTER-CLEANING-full_special_chars_filter__userByMail-interpretation_simple_quote.php │ ├── CWE_90__object-classicGet__func_FILTER-CLEANING-special_chars_filter__userByMail-concatenation_simple_quote.php │ ├── CWE_90__object-classicGet__func_addslashes__name-concatenation_simple_quote.php │ ├── CWE_90__object-classicGet__func_addslashes__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__object-classicGet__func_preg_match-letters_numbers__name-interpretation_simple_quote.php │ ├── CWE_90__object-classicGet__func_preg_match-letters_numbers__userByCN-concatenation_simple_quote.php │ ├── CWE_90__object-classicGet__func_preg_match-no_filtering__name-concatenation_simple_quote.php │ ├── CWE_90__object-classicGet__func_preg_match-no_filtering__userByCN-sprintf_%s_simple_quote.php │ ├── CWE_90__object-classicGet__func_preg_replace_ldap_char_white_list__not_name-interpretation_simple_quote.php │ ├── CWE_90__object-classicGet__ternary_white_list__name-interpretation_simple_quote.php │ ├── CWE_90__object-classicGet__ternary_white_list__not_name-interpretation_simple_quote.php │ ├── CWE_90__object-classicGet__whitelist_using_array__not_name-interpretation_simple_quote.php │ ├── CWE_90__object-classicGet__whitelist_using_array__userByCN-sprintf_%s_simple_quote.php │ ├── CWE_90__object-directGet__func_FILTER-CLEANING-email_filter__not_name-concatenation_simple_quote.php │ ├── CWE_90__object-directGet__func_FILTER-CLEANING-email_filter__userByCN-concatenation_simple_quote.php │ ├── CWE_90__object-directGet__func_FILTER-CLEANING-full_special_chars_filter__userByCN-interpretation_simple_quote.php │ ├── CWE_90__object-directGet__func_FILTER-CLEANING-full_special_chars_filter__userByMail-interpretation_simple_quote.php │ ├── CWE_90__object-directGet__func_FILTER-CLEANING-special_chars_filter__name-concatenation_simple_quote.php │ ├── CWE_90__object-directGet__func_addslashes__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__object-directGet__func_htmlspecialchars__name-sprintf_%s_simple_quote.php │ ├── CWE_90__object-directGet__func_htmlspecialchars__not_name-interpretation_simple_quote.php │ ├── CWE_90__object-directGet__func_htmlspecialchars__userByCN-interpretation_simple_quote.php │ ├── CWE_90__object-directGet__func_htmlspecialchars__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__object-directGet__func_pg_escape_literal__name-sprintf_%s_simple_quote.php │ ├── CWE_90__object-directGet__func_pg_escape_literal__userByMail-interpretation_simple_quote.php │ ├── CWE_90__object-directGet__func_preg_match-letters_numbers__not_name-interpretation_simple_quote.php │ ├── CWE_90__object-directGet__func_preg_match-no_filtering__not_name-concatenation_simple_quote.php │ ├── CWE_90__object-directGet__func_preg_match-no_filtering__userByCN-concatenation_simple_quote.php │ ├── CWE_90__object-directGet__func_preg_match-no_filtering__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__object-directGet__no_sanitizing__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__object-directGet__no_sanitizing__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__object-directGet__ternary_white_list__userByCN-sprintf_%s_simple_quote.php │ ├── CWE_90__object-directGet__ternary_white_list__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__object-indexArray__func_FILTER-CLEANING-full_special_chars_filter__userByCN-interpretation_simple_quote.php │ ├── CWE_90__object-indexArray__func_FILTER-CLEANING-special_chars_filter__userByMail-interpretation_simple_quote.php │ ├── CWE_90__object-indexArray__func_htmlentities__not_name-concatenation_simple_quote.php │ ├── CWE_90__object-indexArray__func_htmlentities__userByCN-interpretation_simple_quote.php │ ├── CWE_90__object-indexArray__func_htmlentities__userByCN-sprintf_%s_simple_quote.php │ ├── CWE_90__object-indexArray__func_htmlentities__userByMail-interpretation_simple_quote.php │ ├── CWE_90__object-indexArray__func_htmlspecialchars__not_name-interpretation_simple_quote.php │ ├── CWE_90__object-indexArray__func_htmlspecialchars__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__object-indexArray__func_pg_escape_literal__userByMail-interpretation_simple_quote.php │ ├── CWE_90__object-indexArray__func_preg_match-letters_numbers__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__object-indexArray__func_preg_replace_ldap_char_white_list__userByCN-concatenation_simple_quote.php │ ├── CWE_90__object-indexArray__no_sanitizing__name-concatenation_simple_quote.php │ ├── CWE_90__object-indexArray__ternary_white_list__not_name-interpretation_simple_quote.php │ ├── CWE_90__popen__func_FILTER-CLEANING-email_filter__name-concatenation_simple_quote.php │ ├── CWE_90__popen__func_FILTER-CLEANING-email_filter__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__popen__func_FILTER-CLEANING-full_special_chars_filter__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__popen__func_htmlspecialchars__not_name-interpretation_simple_quote.php │ ├── CWE_90__popen__func_htmlspecialchars__userByCN-sprintf_%s_simple_quote.php │ ├── CWE_90__popen__func_htmlspecialchars__userByMail-interpretation_simple_quote.php │ ├── CWE_90__popen__func_preg_match-letters_numbers__name-concatenation_simple_quote.php │ ├── CWE_90__popen__func_preg_match-letters_numbers__userByCN-concatenation_simple_quote.php │ ├── CWE_90__popen__func_preg_match-letters_numbers__userByCN-interpretation_simple_quote.php │ ├── CWE_90__popen__func_preg_match-letters_numbers__userByMail-concatenation_simple_quote.php │ ├── CWE_90__popen__func_preg_match-letters_numbers__userByMail-interpretation_simple_quote.php │ ├── CWE_90__popen__func_preg_match-no_filtering__userByCN-sprintf_%s_simple_quote.php │ ├── CWE_90__popen__func_preg_match-only_letters__name-sprintf_%s_simple_quote.php │ ├── CWE_90__popen__func_preg_match-only_letters__userByCN-sprintf_%s_simple_quote.php │ ├── CWE_90__popen__no_sanitizing__name-interpretation_simple_quote.php │ ├── CWE_90__popen__no_sanitizing__userByCN-interpretation_simple_quote.php │ ├── CWE_90__popen__no_sanitizing__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__popen__whitelist_using_array__name-sprintf_%s_simple_quote.php │ ├── CWE_90__popen__whitelist_using_array__userByCN-concatenation_simple_quote.php │ ├── CWE_90__popen__whitelist_using_array__userByMail-concatenation_simple_quote.php │ ├── CWE_90__popen__whitelist_using_array__userByMail-interpretation_simple_quote.php │ ├── CWE_90__proc_open__func_FILTER-CLEANING-email_filter__name-concatenation_simple_quote.php │ ├── CWE_90__proc_open__func_FILTER-CLEANING-full_special_chars_filter__name-sprintf_%s_simple_quote.php │ ├── CWE_90__proc_open__func_FILTER-CLEANING-special_chars_filter__userByCN-concatenation_simple_quote.php │ ├── CWE_90__proc_open__func_FILTER-CLEANING-special_chars_filter__userByCN-interpretation_simple_quote.php │ ├── CWE_90__proc_open__func_addslashes__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__proc_open__func_htmlentities__not_name-concatenation_simple_quote.php │ ├── CWE_90__proc_open__func_htmlentities__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__proc_open__func_pg_escape_literal__not_name-interpretation_simple_quote.php │ ├── CWE_90__proc_open__func_pg_escape_literal__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__proc_open__func_preg_match-letters_numbers__name-interpretation_simple_quote.php │ ├── CWE_90__proc_open__func_preg_match-no_filtering__not_name-interpretation_simple_quote.php │ ├── CWE_90__proc_open__func_preg_replace_ldap_char_white_list__name-concatenation_simple_quote.php │ ├── CWE_90__proc_open__func_preg_replace_ldap_char_white_list__userByMail-concatenation_simple_quote.php │ ├── CWE_90__proc_open__no_sanitizing__name-sprintf_%s_simple_quote.php │ ├── CWE_90__proc_open__no_sanitizing__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__proc_open__ternary_white_list__userByMail-concatenation_simple_quote.php │ ├── CWE_90__shell_exec__func_FILTER-CLEANING-full_special_chars_filter__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__shell_exec__func_FILTER-CLEANING-special_chars_filter__name-concatenation_simple_quote.php │ ├── CWE_90__shell_exec__func_FILTER-CLEANING-special_chars_filter__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__shell_exec__func_FILTER-CLEANING-special_chars_filter__userByMail-concatenation_simple_quote.php │ ├── CWE_90__shell_exec__func_addslashes__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__shell_exec__func_addslashes__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__shell_exec__func_htmlentities__name-sprintf_%s_simple_quote.php │ ├── CWE_90__shell_exec__func_htmlentities__userByCN-interpretation_simple_quote.php │ ├── CWE_90__shell_exec__func_preg_match-letters_numbers__name-interpretation_simple_quote.php │ ├── CWE_90__shell_exec__func_preg_match-letters_numbers__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__shell_exec__func_preg_match-no_filtering__name-concatenation_simple_quote.php │ ├── CWE_90__shell_exec__func_preg_match-only_letters__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__shell_exec__func_preg_match-only_letters__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__shell_exec__func_preg_replace_ldap_char_white_list__not_name-interpretation_simple_quote.php │ ├── CWE_90__shell_exec__no_sanitizing__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__shell_exec__ternary_white_list__name-concatenation_simple_quote.php │ ├── CWE_90__shell_exec__ternary_white_list__not_name-concatenation_simple_quote.php │ ├── CWE_90__shell_exec__ternary_white_list__userByMail-interpretation_simple_quote.php │ ├── CWE_90__shell_exec__whitelist_using_array__name-concatenation_simple_quote.php │ ├── CWE_90__shell_exec__whitelist_using_array__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__system__func_FILTER-CLEANING-full_special_chars_filter__name-interpretation_simple_quote.php │ ├── CWE_90__system__func_FILTER-CLEANING-full_special_chars_filter__not_name-interpretation_simple_quote.php │ ├── CWE_90__system__func_FILTER-CLEANING-full_special_chars_filter__userByMail-concatenation_simple_quote.php │ ├── CWE_90__system__func_FILTER-CLEANING-special_chars_filter__name-concatenation_simple_quote.php │ ├── CWE_90__system__func_addslashes__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__system__func_htmlentities__userByCN-sprintf_%s_simple_quote.php │ ├── CWE_90__system__func_htmlspecialchars__userByCN-concatenation_simple_quote.php │ ├── CWE_90__system__func_htmlspecialchars__userByMail-interpretation_simple_quote.php │ ├── CWE_90__system__func_pg_escape_literal__name-concatenation_simple_quote.php │ ├── CWE_90__system__func_pg_escape_literal__userByCN-sprintf_%s_simple_quote.php │ ├── CWE_90__system__func_preg_match-letters_numbers__not_name-interpretation_simple_quote.php │ ├── CWE_90__system__func_preg_match-no_filtering__userByMail-interpretation_simple_quote.php │ ├── CWE_90__system__no_sanitizing__not_name-concatenation_simple_quote.php │ ├── CWE_90__system__ternary_white_list__name-concatenation_simple_quote.php │ ├── CWE_90__system__ternary_white_list__not_name-concatenation_simple_quote.php │ ├── CWE_90__system__ternary_white_list__userByMail-sprintf_%s_simple_quote.php │ ├── CWE_90__unserialize__func_FILTER-CLEANING-email_filter__not_name-concatenation_simple_quote.php │ ├── CWE_90__unserialize__func_FILTER-CLEANING-magic_quotes_filter__name-concatenation_simple_quote.php │ ├── CWE_90__unserialize__func_addslashes__userByCN-concatenation_simple_quote.php │ ├── CWE_90__unserialize__func_htmlspecialchars__name-interpretation_simple_quote.php │ ├── CWE_90__unserialize__func_htmlspecialchars__not_name-interpretation_simple_quote.php │ ├── CWE_90__unserialize__func_htmlspecialchars__userByCN-interpretation_simple_quote.php │ ├── CWE_90__unserialize__func_pg_escape_string__not_name-interpretation_simple_quote.php │ ├── CWE_90__unserialize__func_preg_match-no_filtering__not_name-sprintf_%s_simple_quote.php │ ├── CWE_90__unserialize__func_preg_replace2__not_name-concatenation_simple_quote.php │ ├── CWE_90__unserialize__func_preg_replace2__userByMail-interpretation_simple_quote.php │ ├── CWE_90__unserialize__func_preg_replace__userByMail-concatenation_simple_quote.php │ ├── CWE_91__GET__CAST-cast_float__ID_test-interpretation_simple_quote.php │ ├── CWE_91__GET__CAST-cast_int_sort_of2__ID_test-interpretation.php │ ├── CWE_91__GET__CAST-cast_int_sort_of__ID_at-sprintf_%s_simple_quote.php │ ├── CWE_91__GET__func_FILTER-CLEANING-number_float_filter__ID_at-sprintf_%u.php │ ├── CWE_91__GET__func_FILTER-VALIDATION-number_float_filter__ID_test-sprintf_%d_simple_quote.php │ ├── CWE_91__GET__func_FILTER-VALIDATION-number_int_filter__ID_test-concatenation_simple_quote.php │ ├── CWE_91__GET__func_intval__ID_test-concatenation.php │ ├── CWE_91__GET__func_preg_match-letters_numbers__username-sprintf_%s_simple_quote.php │ ├── CWE_91__GET__ternary_white_list__ID_test-interpretation_simple_quote.php │ ├── CWE_91__POST__CAST-cast_float__ID_at-sprintf_%u.php │ ├── CWE_91__POST__CAST-cast_float_sort_of__ID_at-sprintf_%s_simple_quote.php │ ├── CWE_91__POST__func_FILTER-CLEANING-number_int_filter__ID_test-concatenation_simple_quote.php │ ├── CWE_91__POST__func_floatval__ID_test-interpretation_simple_quote.php │ ├── CWE_91__POST__func_preg_match-only_letters__username_text-concatenation_simple_quote.php │ ├── CWE_91__POST__func_preg_match-only_numbers__ID_test-concatenation_simple_quote.php │ ├── CWE_91__POST__func_preg_match-only_numbers__ID_test-interpretation.php │ ├── CWE_91__POST__ternary_white_list__username_at-interpretation_simple_quote.php │ ├── CWE_91__POST__whitelist_using_array__ID_test-concatenation.php │ ├── CWE_91__SESSION__CAST-cast_int_sort_of2__ID_test-concatenation_simple_quote.php │ ├── CWE_91__SESSION__CAST-func_settype_int__ID_test-interpretation.php │ ├── CWE_91__SESSION__func_floatval__ID_test-sprintf_%d_simple_quote.php │ ├── CWE_91__SESSION__func_preg_replace2__username_text-interpretation_simple_quote.php │ ├── CWE_91__SESSION__func_preg_replace__data-concatenation_simple_quote.php │ ├── CWE_91__SESSION__func_preg_replace__username-concatenation_simple_quote.php │ ├── CWE_91__SESSION__func_preg_replace__username-interpretation_simple_quote.php │ ├── CWE_91__SESSION__func_preg_replace__username-sprintf_%s_simple_quote.php │ ├── CWE_91__SESSION__object-func_mysql_real_escape_string__username_at-interpretation_simple_quote.php │ ├── CWE_91__SESSION__whitelist_using_array__username-sprintf_%s_simple_quote.php │ ├── CWE_91__array-GET__CAST-cast_int_sort_of2__ID_at-sprintf_%u.php │ ├── CWE_91__array-GET__func_FILTER-CLEANING-number_float_filter__ID_test-interpretation.php │ ├── CWE_91__array-GET__func_FILTER-CLEANING-number_float_filter__ID_test-sprintf_%d_simple_quote.php │ ├── CWE_91__array-GET__func_FILTER-CLEANING-number_int_filter__ID_test-interpretation_simple_quote.php │ ├── CWE_91__array-GET__func_FILTER-VALIDATION-number_float_filter__ID_at-sprintf_%u_simple_quote.php │ ├── CWE_91__array-GET__func_floatval__ID_test-interpretation_simple_quote.php │ ├── CWE_91__array-GET__func_mysql_real_escape_string__ID_at-sprintf_%u.php │ ├── CWE_91__array-GET__func_preg_match-only_letters__data-interpretation_simple_quote.php │ ├── CWE_91__array-GET__object-func_mysql_real_escape_string__username_text-sprintf_%s_simple_quote.php │ ├── CWE_91__backticks__CAST-func_settype_int__ID_test-sprintf_%d.php │ ├── CWE_91__backticks__func_FILTER-VALIDATION-number_int_filter__ID_test-interpretation.php │ ├── CWE_91__backticks__ternary_white_list__username-sprintf_%s_simple_quote.php │ ├── CWE_91__exec__func_FILTER-VALIDATION-number_int_filter__ID_at-sprintf_%s_simple_quote.php │ ├── CWE_91__exec__func_htmlspecialchars__username-concatenation_simple_quote.php │ ├── CWE_91__fopen__CAST-cast_float_sort_of__ID_test-sprintf_%d.php │ ├── CWE_91__fopen__CAST-cast_int__ID_test-sprintf_%d_simple_quote.php │ ├── CWE_91__fopen__func_FILTER-CLEANING-number_float_filter__ID_at-sprintf_%u_simple_quote.php │ ├── CWE_91__fopen__func_floatval__ID_at-sprintf_%u.php │ ├── CWE_91__fopen__ternary_white_list__ID_test-concatenation_simple_quote.php │ ├── CWE_91__fopen__ternary_white_list__username-sprintf_%s_simple_quote.php │ ├── CWE_91__fopen__ternary_white_list__username_at-concatenation_simple_quote.php │ ├── CWE_91__fopen__whitelist_using_array__ID_test-interpretation_simple_quote.php │ ├── CWE_91__object-Array__CAST-cast_int__ID_test-concatenation_simple_quote.php │ ├── CWE_91__object-Array__CAST-cast_int__ID_test-interpretation_simple_quote.php │ ├── CWE_91__object-Array__CAST-cast_int__ID_test-sprintf_%d_simple_quote.php │ ├── CWE_91__object-Array__CAST-cast_int_sort_of__ID_at-sprintf_%s_simple_quote.php │ ├── CWE_91__object-Array__func_FILTER-CLEANING-number_int_filter__ID_test-sprintf_%d.php │ ├── CWE_91__object-Array__func_intval__ID_at-sprintf_%s_simple_quote.php │ ├── CWE_91__object-Array__func_preg_match-letters_numbers__data-interpretation_simple_quote.php │ ├── CWE_91__object-classicGet__CAST-cast_float__ID_test-interpretation.php │ ├── CWE_91__object-classicGet__func_FILTER-VALIDATION-number_float_filter__ID_test-concatenation_simple_quote.php │ ├── CWE_91__object-classicGet__func_FILTER-VALIDATION-number_int_filter__ID_test-interpretation_simple_quote.php │ ├── CWE_91__object-directGet__CAST-cast_int_sort_of__ID_test-concatenation.php │ ├── CWE_91__object-directGet__func_FILTER-CLEANING-number_float_filter__ID_test-concatenation.php │ ├── CWE_91__object-directGet__func_preg_match-only_letters__username_text-interpretation_simple_quote.php │ ├── CWE_91__object-directGet__whitelist_using_array__ID_at-sprintf_%s_simple_quote.php │ ├── CWE_91__object-indexArray__CAST-func_settype_float__ID_at-sprintf_%s_simple_quote.php │ ├── CWE_91__object-indexArray__CAST-func_settype_float__ID_test-sprintf_%d.php │ ├── CWE_91__object-indexArray__func_FILTER-VALIDATION-number_int_filter__ID_test-sprintf_%d.php │ ├── CWE_91__object-indexArray__func_preg_match-only_letters__username_text-interpretation_simple_quote.php │ ├── CWE_91__object-indexArray__func_preg_match-only_numbers__ID_test-concatenation.php │ ├── CWE_91__object-indexArray__ternary_white_list__data-sprintf_%s_simple_quote.php │ ├── CWE_91__object-indexArray__ternary_white_list__username_text-sprintf_%s_simple_quote.php │ ├── CWE_91__popen__func_FILTER-CLEANING-number_int_filter__ID_test-sprintf_%d_simple_quote.php │ ├── CWE_91__popen__func_FILTER-VALIDATION-number_int_filter__ID_at-sprintf_%s_simple_quote.php │ ├── CWE_91__popen__whitelist_using_array__username_text-concatenation_simple_quote.php │ ├── CWE_91__proc_open__CAST-cast_int_sort_of__ID_at-sprintf_%s_simple_quote.php │ ├── CWE_91__proc_open__func_htmlspecialchars__username_text-interpretation_simple_quote.php │ ├── CWE_91__proc_open__func_intval__ID_at-sprintf_%u.php │ ├── CWE_91__proc_open__func_preg_match-only_letters__username_at-concatenation_simple_quote.php │ ├── CWE_91__proc_open__whitelist_using_array__data-concatenation_simple_quote.php │ ├── CWE_91__shell_exec__func_FILTER-CLEANING-number_int_filter__ID_at-sprintf_%u.php │ ├── CWE_91__shell_exec__func_preg_match-only_letters__username_text-interpretation_simple_quote.php │ ├── CWE_91__system__CAST-cast_int_sort_of2__ID_test-interpretation_simple_quote.php │ ├── CWE_91__system__CAST-cast_int_sort_of__ID_at-sprintf_%u.php │ ├── CWE_91__system__func_FILTER-CLEANING-number_int_filter__ID_test-sprintf_%d.php │ ├── CWE_91__system__func_FILTER-VALIDATION-number_float_filter__ID_at-sprintf_%u_simple_quote.php │ ├── CWE_91__system__func_FILTER-VALIDATION-number_int_filter__ID_at-sprintf_%u.php │ ├── CWE_91__system__func_htmlentities__username_at-sprintf_%s_simple_quote.php │ ├── CWE_91__system__func_preg_match-letters_numbers__username_text-sprintf_%s_simple_quote.php │ └── CWE_91__system__func_preg_match-only_letters__username-sprintf_%s_simple_quote.php └── testvulntestsuite.php /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/.gitignore -------------------------------------------------------------------------------- /DOCKER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/DOCKER.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/composer.json -------------------------------------------------------------------------------- /docs/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/docs/API.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/CUSTOM_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/docs/CUSTOM_ANALYSIS.md -------------------------------------------------------------------------------- /docs/DEV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/docs/DEV.md -------------------------------------------------------------------------------- /docs/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/docs/EXAMPLES.md -------------------------------------------------------------------------------- /docs/FALSE_POSITIVES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/docs/FALSE_POSITIVES.md -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/INCLUDES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/docs/INCLUDES.md -------------------------------------------------------------------------------- /docs/OUTPUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/docs/OUTPUT.md -------------------------------------------------------------------------------- /docs/SPECIFY_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/docs/SPECIFY_ANALYSIS.md -------------------------------------------------------------------------------- /docs/customcallgraph1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/docs/customcallgraph1.png -------------------------------------------------------------------------------- /docs/dev/STATES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/docs/dev/STATES.md -------------------------------------------------------------------------------- /grumphp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/grumphp.yml -------------------------------------------------------------------------------- /package/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/composer.json -------------------------------------------------------------------------------- /package/src/progpilot/Analysis/AssertionAnalysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Analysis/AssertionAnalysis.php -------------------------------------------------------------------------------- /package/src/progpilot/Analysis/CustomAnalysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Analysis/CustomAnalysis.php -------------------------------------------------------------------------------- /package/src/progpilot/Analysis/FuncAnalysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Analysis/FuncAnalysis.php -------------------------------------------------------------------------------- /package/src/progpilot/Analysis/IncludeAnalysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Analysis/IncludeAnalysis.php -------------------------------------------------------------------------------- /package/src/progpilot/Analysis/ResolveDefs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Analysis/ResolveDefs.php -------------------------------------------------------------------------------- /package/src/progpilot/Analysis/SecurityAnalysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Analysis/SecurityAnalysis.php -------------------------------------------------------------------------------- /package/src/progpilot/Analysis/TaintAnalysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Analysis/TaintAnalysis.php -------------------------------------------------------------------------------- /package/src/progpilot/Analysis/VisitorAnalysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Analysis/VisitorAnalysis.php -------------------------------------------------------------------------------- /package/src/progpilot/Analyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Analyzer.php -------------------------------------------------------------------------------- /package/src/progpilot/CallVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/CallVisitor.php -------------------------------------------------------------------------------- /package/src/progpilot/Code/MyCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Code/MyCode.php -------------------------------------------------------------------------------- /package/src/progpilot/Code/MyInstruction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Code/MyInstruction.php -------------------------------------------------------------------------------- /package/src/progpilot/Code/Opcodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Code/Opcodes.php -------------------------------------------------------------------------------- /package/src/progpilot/Command/ProgpilotCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Command/ProgpilotCommand.php -------------------------------------------------------------------------------- /package/src/progpilot/Console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Console/Application.php -------------------------------------------------------------------------------- /package/src/progpilot/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Context.php -------------------------------------------------------------------------------- /package/src/progpilot/ContextInternalApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/ContextInternalApi.php -------------------------------------------------------------------------------- /package/src/progpilot/Dataflow/ArrayMulti.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Dataflow/ArrayMulti.php -------------------------------------------------------------------------------- /package/src/progpilot/Dataflow/Classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Dataflow/Classes.php -------------------------------------------------------------------------------- /package/src/progpilot/Dataflow/Definitions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Dataflow/Definitions.php -------------------------------------------------------------------------------- /package/src/progpilot/Dataflow/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Dataflow/Functions.php -------------------------------------------------------------------------------- /package/src/progpilot/Dataflow/Objects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Dataflow/Objects.php -------------------------------------------------------------------------------- /package/src/progpilot/Dataflow/VisitorDataflow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Dataflow/VisitorDataflow.php -------------------------------------------------------------------------------- /package/src/progpilot/Helpers/Analysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Helpers/Analysis.php -------------------------------------------------------------------------------- /package/src/progpilot/Helpers/Callbacks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Helpers/Callbacks.php -------------------------------------------------------------------------------- /package/src/progpilot/Helpers/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Helpers/State.php -------------------------------------------------------------------------------- /package/src/progpilot/Inputs/MyCustomFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Inputs/MyCustomFunction.php -------------------------------------------------------------------------------- /package/src/progpilot/Inputs/MyCustomRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Inputs/MyCustomRule.php -------------------------------------------------------------------------------- /package/src/progpilot/Inputs/MyCustomVariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Inputs/MyCustomVariable.php -------------------------------------------------------------------------------- /package/src/progpilot/Inputs/MyInclude.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Inputs/MyInclude.php -------------------------------------------------------------------------------- /package/src/progpilot/Inputs/MyInputs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Inputs/MyInputs.php -------------------------------------------------------------------------------- /package/src/progpilot/Inputs/MyInputsInternalApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Inputs/MyInputsInternalApi.php -------------------------------------------------------------------------------- /package/src/progpilot/Inputs/MySanitizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Inputs/MySanitizer.php -------------------------------------------------------------------------------- /package/src/progpilot/Inputs/MySink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Inputs/MySink.php -------------------------------------------------------------------------------- /package/src/progpilot/Inputs/MySource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Inputs/MySource.php -------------------------------------------------------------------------------- /package/src/progpilot/Inputs/MySpecify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Inputs/MySpecify.php -------------------------------------------------------------------------------- /package/src/progpilot/Inputs/MyValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Inputs/MyValidator.php -------------------------------------------------------------------------------- /package/src/progpilot/Inputs/MyVuln.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Inputs/MyVuln.php -------------------------------------------------------------------------------- /package/src/progpilot/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Lang.php -------------------------------------------------------------------------------- /package/src/progpilot/Objects/MyAssertion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Objects/MyAssertion.php -------------------------------------------------------------------------------- /package/src/progpilot/Objects/MyBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Objects/MyBlock.php -------------------------------------------------------------------------------- /package/src/progpilot/Objects/MyClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Objects/MyClass.php -------------------------------------------------------------------------------- /package/src/progpilot/Objects/MyDefOriginal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Objects/MyDefOriginal.php -------------------------------------------------------------------------------- /package/src/progpilot/Objects/MyDefState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Objects/MyDefState.php -------------------------------------------------------------------------------- /package/src/progpilot/Objects/MyDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Objects/MyDefinition.php -------------------------------------------------------------------------------- /package/src/progpilot/Objects/MyFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Objects/MyFile.php -------------------------------------------------------------------------------- /package/src/progpilot/Objects/MyFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Objects/MyFunction.php -------------------------------------------------------------------------------- /package/src/progpilot/Objects/MyOp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Objects/MyOp.php -------------------------------------------------------------------------------- /package/src/progpilot/Objects/MyProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Objects/MyProperty.php -------------------------------------------------------------------------------- /package/src/progpilot/Outputs/MyOutputs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Outputs/MyOutputs.php -------------------------------------------------------------------------------- /package/src/progpilot/Outputs/MyOutputsInternalApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Outputs/MyOutputsInternalApi.php -------------------------------------------------------------------------------- /package/src/progpilot/Outputs/MyResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Outputs/MyResult.php -------------------------------------------------------------------------------- /package/src/progpilot/Outputs/SarifOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Outputs/SarifOutput.php -------------------------------------------------------------------------------- /package/src/progpilot/Representations/AbstractSyntaxTree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Representations/AbstractSyntaxTree.php -------------------------------------------------------------------------------- /package/src/progpilot/Representations/Callgraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Representations/Callgraph.php -------------------------------------------------------------------------------- /package/src/progpilot/Representations/ControlFlowGraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Representations/ControlFlowGraph.php -------------------------------------------------------------------------------- /package/src/progpilot/Representations/DFSVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Representations/DFSVisitor.php -------------------------------------------------------------------------------- /package/src/progpilot/Representations/DepthFirstSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Representations/DepthFirstSearch.php -------------------------------------------------------------------------------- /package/src/progpilot/Representations/NodeCG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Representations/NodeCG.php -------------------------------------------------------------------------------- /package/src/progpilot/Transformations/Php/Assign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Transformations/Php/Assign.php -------------------------------------------------------------------------------- /package/src/progpilot/Transformations/Php/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Transformations/Php/Common.php -------------------------------------------------------------------------------- /package/src/progpilot/Transformations/Php/Expr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Transformations/Php/Expr.php -------------------------------------------------------------------------------- /package/src/progpilot/Transformations/Php/Exprs/ArrayFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Transformations/Php/Exprs/ArrayFetch.php -------------------------------------------------------------------------------- /package/src/progpilot/Transformations/Php/Exprs/CastFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Transformations/Php/Exprs/CastFetch.php -------------------------------------------------------------------------------- /package/src/progpilot/Transformations/Php/Exprs/ConcatFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Transformations/Php/Exprs/ConcatFetch.php -------------------------------------------------------------------------------- /package/src/progpilot/Transformations/Php/Exprs/ConstFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Transformations/Php/Exprs/ConstFetch.php -------------------------------------------------------------------------------- /package/src/progpilot/Transformations/Php/Exprs/DimFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Transformations/Php/Exprs/DimFetch.php -------------------------------------------------------------------------------- /package/src/progpilot/Transformations/Php/Exprs/FunccallFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Transformations/Php/Exprs/FunccallFetch.php -------------------------------------------------------------------------------- /package/src/progpilot/Transformations/Php/Exprs/LiteralFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Transformations/Php/Exprs/LiteralFetch.php -------------------------------------------------------------------------------- /package/src/progpilot/Transformations/Php/Exprs/PropertyFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Transformations/Php/Exprs/PropertyFetch.php -------------------------------------------------------------------------------- /package/src/progpilot/Transformations/Php/Exprs/VariableFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Transformations/Php/Exprs/VariableFetch.php -------------------------------------------------------------------------------- /package/src/progpilot/Transformations/Php/FuncCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Transformations/Php/FuncCall.php -------------------------------------------------------------------------------- /package/src/progpilot/Transformations/Php/Transform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Transformations/Php/Transform.php -------------------------------------------------------------------------------- /package/src/progpilot/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/progpilot/Utils.php -------------------------------------------------------------------------------- /package/src/uptodate_data/php/dev/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/dev/rules.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/dev/sanitizers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/dev/sanitizers.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/dev/sinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/dev/sinks.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/dev/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/dev/sources.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/dev/validators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/dev/validators.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/codeigniter/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/frameworks/codeigniter/rules.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/codeigniter/sanitizers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/frameworks/codeigniter/sanitizers.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/codeigniter/sinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/frameworks/codeigniter/sinks.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/codeigniter/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/frameworks/codeigniter/sources.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/codeigniter/validators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/frameworks/codeigniter/validators.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/laravel/rules.json: -------------------------------------------------------------------------------- 1 | { 2 | "custom_rules": [ 3 | ] 4 | } 5 | 6 | -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/laravel/sanitizers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/frameworks/laravel/sanitizers.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/laravel/sinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/frameworks/laravel/sinks.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/laravel/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/frameworks/laravel/sources.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/laravel/validators.json: -------------------------------------------------------------------------------- 1 | { 2 | "validators": [ 3 | ] 4 | } 5 | -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/symfony/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/frameworks/symfony/rules.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/symfony/sanitizers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/frameworks/symfony/sanitizers.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/symfony/sinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/frameworks/symfony/sinks.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/symfony/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/frameworks/symfony/sources.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/symfony/validators.json: -------------------------------------------------------------------------------- 1 | { 2 | "validators": [ 3 | ] 4 | } 5 | -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/wordpress/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/frameworks/wordpress/rules.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/wordpress/sanitizers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/frameworks/wordpress/sanitizers.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/wordpress/sinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/frameworks/wordpress/sinks.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/wordpress/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/frameworks/wordpress/sources.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/frameworks/wordpress/validators.json: -------------------------------------------------------------------------------- 1 | { 2 | "validators": [ 3 | ] 4 | } 5 | -------------------------------------------------------------------------------- /package/src/uptodate_data/php/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/rules.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/sanitizers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/sanitizers.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/sinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/sinks.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/sources.json -------------------------------------------------------------------------------- /package/src/uptodate_data/php/validators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/package/src/uptodate_data/php/validators.json -------------------------------------------------------------------------------- /progpilot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/progpilot.yml -------------------------------------------------------------------------------- /projects/example/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/example/composer.json -------------------------------------------------------------------------------- /projects/example/example1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/example/example1.php -------------------------------------------------------------------------------- /projects/example/example2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/example/example2.php -------------------------------------------------------------------------------- /projects/example/source_code1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/example/source_code1.php -------------------------------------------------------------------------------- /projects/example_config/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/example_config/composer.json -------------------------------------------------------------------------------- /projects/example_config/configuration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/example_config/configuration.yml -------------------------------------------------------------------------------- /projects/example_config/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/example_config/example.php -------------------------------------------------------------------------------- /projects/example_config/example1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/example_config/example1.php -------------------------------------------------------------------------------- /projects/phar/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/phar/composer.json -------------------------------------------------------------------------------- /projects/phar/progpilot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/phar/progpilot -------------------------------------------------------------------------------- /projects/tests/RunAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/RunAll.php -------------------------------------------------------------------------------- /projects/tests/RunAllConfigurations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/RunAllConfigurations.php -------------------------------------------------------------------------------- /projects/tests/RunAllFolders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/RunAllFolders.php -------------------------------------------------------------------------------- /projects/tests/RunConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/RunConfig.php -------------------------------------------------------------------------------- /projects/tests/RunExcludeFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/RunExcludeFiles.php -------------------------------------------------------------------------------- /projects/tests/RunFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/RunFile.php -------------------------------------------------------------------------------- /projects/tests/RunFlows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/RunFlows.php -------------------------------------------------------------------------------- /projects/tests/RunFolder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/RunFolder.php -------------------------------------------------------------------------------- /projects/tests/RunIncludeFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/RunIncludeFiles.php -------------------------------------------------------------------------------- /projects/tests/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/composer.json -------------------------------------------------------------------------------- /projects/tests/conditionstest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/conditionstest.php -------------------------------------------------------------------------------- /projects/tests/config1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/config1.yml -------------------------------------------------------------------------------- /projects/tests/config2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/config2.yml -------------------------------------------------------------------------------- /projects/tests/config3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/config3.yml -------------------------------------------------------------------------------- /projects/tests/config4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/config4.yml -------------------------------------------------------------------------------- /projects/tests/config5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/config5.yml -------------------------------------------------------------------------------- /projects/tests/config6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/config6.yml -------------------------------------------------------------------------------- /projects/tests/config7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/config7.yml -------------------------------------------------------------------------------- /projects/tests/configtest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/configtest.php -------------------------------------------------------------------------------- /projects/tests/customtest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/customtest.php -------------------------------------------------------------------------------- /projects/tests/datatest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/datatest.php -------------------------------------------------------------------------------- /projects/tests/false_positives.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/false_positives.json -------------------------------------------------------------------------------- /projects/tests/flowstest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/flowstest.php -------------------------------------------------------------------------------- /projects/tests/folderexcludedtest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/folderexcludedtest.php -------------------------------------------------------------------------------- /projects/tests/folderincludedtest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/folderincludedtest.php -------------------------------------------------------------------------------- /projects/tests/foldertest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/foldertest.php -------------------------------------------------------------------------------- /projects/tests/frameworkstest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/frameworkstest.php -------------------------------------------------------------------------------- /projects/tests/generictest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/generictest.php -------------------------------------------------------------------------------- /projects/tests/graphtest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/graphtest.php -------------------------------------------------------------------------------- /projects/tests/include_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/include_files.json -------------------------------------------------------------------------------- /projects/tests/includetest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/includetest.php -------------------------------------------------------------------------------- /projects/tests/negativetest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/negativetest.php -------------------------------------------------------------------------------- /projects/tests/ooptest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/ooptest.php -------------------------------------------------------------------------------- /projects/tests/optimizationstest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/optimizationstest.php -------------------------------------------------------------------------------- /projects/tests/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/phpunit.xml.dist -------------------------------------------------------------------------------- /projects/tests/phpwandertest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/phpwandertest.php -------------------------------------------------------------------------------- /projects/tests/realtest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/realtest.php -------------------------------------------------------------------------------- /projects/tests/resolve_includes.json: -------------------------------------------------------------------------------- 1 | {"include_failures":""} -------------------------------------------------------------------------------- /projects/tests/resolved_includes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/resolved_includes.json -------------------------------------------------------------------------------- /projects/tests/storedtest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/storedtest.php -------------------------------------------------------------------------------- /projects/tests/testarray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/testarray.php -------------------------------------------------------------------------------- /projects/tests/testcfg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/testcfg.php -------------------------------------------------------------------------------- /projects/tests/testcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/testcode.php -------------------------------------------------------------------------------- /projects/tests/testfalsepositives.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/testfalsepositives.php -------------------------------------------------------------------------------- /projects/tests/testfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/testfile.php -------------------------------------------------------------------------------- /projects/tests/testincludes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/testincludes.php -------------------------------------------------------------------------------- /projects/tests/testonadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/testonadd.php -------------------------------------------------------------------------------- /projects/tests/testphpcfg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/testphpcfg.php -------------------------------------------------------------------------------- /projects/tests/testphpparser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/testphpparser.php -------------------------------------------------------------------------------- /projects/tests/tests/conditions/condition1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/conditions/condition1.php -------------------------------------------------------------------------------- /projects/tests/tests/conditions/condition2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/conditions/condition2.php -------------------------------------------------------------------------------- /projects/tests/tests/conditions/condition3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/conditions/condition3.php -------------------------------------------------------------------------------- /projects/tests/tests/conditions/condition4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/conditions/condition4.php -------------------------------------------------------------------------------- /projects/tests/tests/conditions/condition5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/conditions/condition5.php -------------------------------------------------------------------------------- /projects/tests/tests/conditions/condition6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/conditions/condition6.php -------------------------------------------------------------------------------- /projects/tests/tests/conditions/condition7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/conditions/condition7.php -------------------------------------------------------------------------------- /projects/tests/tests/conditions/condition8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/conditions/condition8.php -------------------------------------------------------------------------------- /projects/tests/tests/custom/cert1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/custom/cert1.php -------------------------------------------------------------------------------- /projects/tests/tests/custom/cert2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/custom/cert2.php -------------------------------------------------------------------------------- /projects/tests/tests/custom/cert3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/custom/cert3.php -------------------------------------------------------------------------------- /projects/tests/tests/custom/cert4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/custom/cert4.php -------------------------------------------------------------------------------- /projects/tests/tests/custom/cert5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/custom/cert5.php -------------------------------------------------------------------------------- /projects/tests/tests/custom/conditionalvalues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/custom/conditionalvalues.php -------------------------------------------------------------------------------- /projects/tests/tests/custom/cookies1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/custom/cookies1.php -------------------------------------------------------------------------------- /projects/tests/tests/custom/custom1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/custom/custom1.php -------------------------------------------------------------------------------- /projects/tests/tests/custom/custom2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/custom/custom2.php -------------------------------------------------------------------------------- /projects/tests/tests/custom/custom3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/custom/custom3.php -------------------------------------------------------------------------------- /projects/tests/tests/custom/custom4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/custom/custom4.php -------------------------------------------------------------------------------- /projects/tests/tests/custom/custom5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/custom/custom5.php -------------------------------------------------------------------------------- /projects/tests/tests/custom/customcookieoptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/custom/customcookieoptions.php -------------------------------------------------------------------------------- /projects/tests/tests/custom/unsetcookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/custom/unsetcookies.php -------------------------------------------------------------------------------- /projects/tests/tests/data/customvalidator1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/customvalidator1.php -------------------------------------------------------------------------------- /projects/tests/tests/data/customvalidator2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/customvalidator2.php -------------------------------------------------------------------------------- /projects/tests/tests/data/customvalidator3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/customvalidator3.php -------------------------------------------------------------------------------- /projects/tests/tests/data/customvalidator4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/customvalidator4.php -------------------------------------------------------------------------------- /projects/tests/tests/data/customvalidator5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/customvalidator5.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sanitizer1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sanitizer1.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sanitizer10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sanitizer10.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sanitizer11.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sanitizer11.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sanitizer2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sanitizer2.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sanitizer3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sanitizer3.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sanitizer4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sanitizer4.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sanitizer5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sanitizer5.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sanitizer6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sanitizer6.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sanitizer7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sanitizer7.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sanitizer8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sanitizer8.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sanitizer9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sanitizer9.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sink1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sink1.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sink2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sink2.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sink3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sink3.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sink4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sink4.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sink5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sink5.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sink6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sink6.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sink7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sink7.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sink8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sink8.php -------------------------------------------------------------------------------- /projects/tests/tests/data/sink9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/sink9.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source1.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source10.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source11.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source11.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source12.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source12.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source13.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source13.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source14.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source14.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source15.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source15.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source16.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source16.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source17.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source17.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source18.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source18.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source19.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source19.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source2.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source20.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source20.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source21.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source21.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source22.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source22.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source3.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source4.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source5.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source6.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source7.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source8.php -------------------------------------------------------------------------------- /projects/tests/tests/data/source9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/source9.php -------------------------------------------------------------------------------- /projects/tests/tests/data/validator1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/validator1.php -------------------------------------------------------------------------------- /projects/tests/tests/data/validator2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/validator2.php -------------------------------------------------------------------------------- /projects/tests/tests/data/validator3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/validator3.php -------------------------------------------------------------------------------- /projects/tests/tests/data/validator4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/validator4.php -------------------------------------------------------------------------------- /projects/tests/tests/data/validator5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/validator5.php -------------------------------------------------------------------------------- /projects/tests/tests/data/validator6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/data/validator6.php -------------------------------------------------------------------------------- /projects/tests/tests/flows/flow1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/flows/flow1.php -------------------------------------------------------------------------------- /projects/tests/tests/flows/flow2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/flows/flow2.php -------------------------------------------------------------------------------- /projects/tests/tests/flows/flow3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/flows/flow3.php -------------------------------------------------------------------------------- /projects/tests/tests/flows/flow4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/flows/flow4.php -------------------------------------------------------------------------------- /projects/tests/tests/flows/incorrectflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/flows/incorrectflow.txt -------------------------------------------------------------------------------- /projects/tests/tests/folders/excludedbydefault1/test1.php: -------------------------------------------------------------------------------- 1 | query($_GET["p"]); 5 | -------------------------------------------------------------------------------- /projects/tests/tests/oop/simple3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/oop/simple3.php -------------------------------------------------------------------------------- /projects/tests/tests/oop/simple30.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/oop/simple30.php -------------------------------------------------------------------------------- /projects/tests/tests/oop/simple31.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/oop/simple31.php -------------------------------------------------------------------------------- /projects/tests/tests/oop/simple32.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/oop/simple32.php -------------------------------------------------------------------------------- /projects/tests/tests/oop/simple33.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/oop/simple33.php -------------------------------------------------------------------------------- /projects/tests/tests/oop/simple34.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/oop/simple34.php -------------------------------------------------------------------------------- /projects/tests/tests/oop/simple35.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/oop/simple35.php -------------------------------------------------------------------------------- /projects/tests/tests/oop/simple36.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/oop/simple36.php -------------------------------------------------------------------------------- /projects/tests/tests/oop/simple4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/oop/simple4.php -------------------------------------------------------------------------------- /projects/tests/tests/oop/simple5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/oop/simple5.php -------------------------------------------------------------------------------- /projects/tests/tests/oop/simple6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/oop/simple6.php -------------------------------------------------------------------------------- /projects/tests/tests/oop/simple7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/oop/simple7.php -------------------------------------------------------------------------------- /projects/tests/tests/oop/simple8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/oop/simple8.php -------------------------------------------------------------------------------- /projects/tests/tests/oop/simple9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/oop/simple9.php -------------------------------------------------------------------------------- /projects/tests/tests/optimizations/cleanopinfoconcatleft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/optimizations/cleanopinfoconcatleft.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/ID3/getid3.lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/ID3/getid3.lib.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/ID3/getid3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/ID3/getid3.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/ID3/license.commercial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/ID3/license.commercial.txt -------------------------------------------------------------------------------- /projects/tests/tests/performance/ID3/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/ID3/license.txt -------------------------------------------------------------------------------- /projects/tests/tests/performance/ID3/module.audio-video.asf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/ID3/module.audio-video.asf.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/ID3/module.audio-video.flv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/ID3/module.audio-video.flv.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/ID3/module.audio-video.matroska.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/ID3/module.audio-video.matroska.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/ID3/module.audio-video.quicktime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/ID3/module.audio-video.quicktime.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/ID3/module.audio-video.riff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/ID3/module.audio-video.riff.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/ID3/module.audio.ac3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/ID3/module.audio.ac3.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/ID3/module.audio.dts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/ID3/module.audio.dts.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/ID3/module.audio.flac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/ID3/module.audio.flac.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/ID3/module.audio.mp3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/ID3/module.audio.mp3.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/ID3/module.audio.ogg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/ID3/module.audio.ogg.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/ID3/module.tag.apetag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/ID3/module.tag.apetag.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/ID3/module.tag.id3v1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/ID3/module.tag.id3v1.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/ID3/module.tag.id3v2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/ID3/module.tag.id3v2.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/ID3/module.tag.lyrics3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/ID3/module.tag.lyrics3.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/ID3/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/ID3/readme.txt -------------------------------------------------------------------------------- /projects/tests/tests/performance/benchmarks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/benchmarks.txt -------------------------------------------------------------------------------- /projects/tests/tests/performance/class-wp-query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/class-wp-query.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/defs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/defs.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/gen_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/gen_files.php -------------------------------------------------------------------------------- /projects/tests/tests/performance/memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/performance/memory.txt -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test0.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test1.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test10.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test10B.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test10B.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test10C.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test10C.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test11.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test11.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test12.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test12.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test12D.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test12D.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test13.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test13.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test13E.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test13E.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test14.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test14.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test14F.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test14F.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test15.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test15.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test2.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test3.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test3A.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test3A.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test4.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test4F.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test4F.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test5.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test6.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test7.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test8.php -------------------------------------------------------------------------------- /projects/tests/tests/phpwander/test9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/phpwander/test9.php -------------------------------------------------------------------------------- /projects/tests/tests/real/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/ClassLoader.php -------------------------------------------------------------------------------- /projects/tests/tests/real/array1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/array1.php -------------------------------------------------------------------------------- /projects/tests/tests/real/class-wp-filesystem-direct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/class-wp-filesystem-direct.php -------------------------------------------------------------------------------- /projects/tests/tests/real/composer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/composer/composer.json -------------------------------------------------------------------------------- /projects/tests/tests/real/composer/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/composer/composer.lock -------------------------------------------------------------------------------- /projects/tests/tests/real/composer/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/composer/index.php -------------------------------------------------------------------------------- /projects/tests/tests/real/composer/notexcluded_vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/composer/notexcluded_vendor/autoload.php -------------------------------------------------------------------------------- /projects/tests/tests/real/composer/notexcluded_vendor/progpilot/tests/test_package: -------------------------------------------------------------------------------- 1 | ../../../test_package -------------------------------------------------------------------------------- /projects/tests/tests/real/composer/test_package/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/composer/test_package/composer.json -------------------------------------------------------------------------------- /projects/tests/tests/real/composer/test_package/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/composer/test_package/init.php -------------------------------------------------------------------------------- /projects/tests/tests/real/executiontime/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/executiontime/Item.php -------------------------------------------------------------------------------- /projects/tests/tests/real/executiontime/class-wp-query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/executiontime/class-wp-query.php -------------------------------------------------------------------------------- /projects/tests/tests/real/executiontime/class-wp-query3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/executiontime/class-wp-query3.php -------------------------------------------------------------------------------- /projects/tests/tests/real/feedbackgithub/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/feedbackgithub/test.php -------------------------------------------------------------------------------- /projects/tests/tests/real/incallstack/class-ftp-pure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/incallstack/class-ftp-pure.php -------------------------------------------------------------------------------- /projects/tests/tests/real/incallstack/class-ftp-sockets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/incallstack/class-ftp-sockets.php -------------------------------------------------------------------------------- /projects/tests/tests/real/incallstack/class-ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/incallstack/class-ftp.php -------------------------------------------------------------------------------- /projects/tests/tests/real/multiplecalls/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/multiplecalls/test.php -------------------------------------------------------------------------------- /projects/tests/tests/real/mutliplecall_memory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/mutliplecall_memory.php -------------------------------------------------------------------------------- /projects/tests/tests/real/mutliplecall_memory_include.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-content/plugins/hello.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-content/plugins/hello.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-content/themes/default/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-content/themes/default/404.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-feed.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/cache.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/capabilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/capabilities.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/class-IXR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/class-IXR.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/class-pop3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/class-pop3.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/class-snoopy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/class-snoopy.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/classes.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/comment-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/comment-functions.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/default-filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/default-filters.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/feed-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/feed-functions.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/functions-compat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/functions-compat.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/functions-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/functions-post.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/functions.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/gettext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/gettext.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/js/colorpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/js/colorpicker.js -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/js/dbx-key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/js/dbx-key.js -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/js/dbx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/js/dbx.js -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/js/fat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/js/fat.js -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/js/quicktags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/js/quicktags.js -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/js/tinymce/plugins/autosave/langs/cs.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/js/tinymce/plugins/autosave/langs/sv.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/js/tinymce/plugins/autosave/readme.txt: -------------------------------------------------------------------------------- 1 | Check the TinyMCE documentation for details on this plugin. 2 | -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/js/tinymce/plugins/inlinepopups/css/inlinepopup.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/js/tinymce/plugins/inlinepopups/editor_plugin.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/js/tinymce/plugins/inlinepopups/editor_plugin_src.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/js/tinymce/plugins/inlinepopups/jscripts/mcwindows.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/js/tinymce/plugins/inlinepopups/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/js/tinymce/themes/advanced/editor_template_src.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/js/tw-sack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/js/tw-sack.js -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/kses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/kses.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/links.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/locale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/locale.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/rss-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/rss-functions.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/streams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/streams.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/vars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/vars.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/version.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/wp-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/wp-db.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-includes/wp-l10n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-includes/wp-l10n.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-links-opml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-links-opml.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-login.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-mail.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-pass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-pass.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-rdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-rdf.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-register.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-rss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-rss.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-rss2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-rss2.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-settings.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/wp-trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/wp-trackback.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress/xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress/xmlrpc.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress1/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress1/index.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress1/wp-blog-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress1/wp-blog-header.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress1/wp-commentsrss2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress1/wp-commentsrss2.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress1/wp-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress1/wp-config.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress1/wp-content/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress1/wp-content/plugins/hello.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress1/wp-content/plugins/hello.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress1/wp-includes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress1/wp-includes/functions.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress1/wp-includes/wp-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress1/wp-includes/wp-db.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress1/wp-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress1/wp-settings.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress2/wp-admin/admin-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress2/wp-admin/admin-db.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress2/wp-commentsrss2.php: -------------------------------------------------------------------------------- 1 | get_results($_GET["p"]); 6 | -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress2/wp-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress2/wp-config.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress2/wp-includes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress2/wp-includes/functions.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress2/wp-includes/wp-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress2/wp-includes/wp-db.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress2/wp-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress2/wp-settings.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress3/wp-admin/admin-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress3/wp-admin/admin-db.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress3/wp-admin/update-links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress3/wp-admin/update-links.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress3/wp-commentsrss2.php: -------------------------------------------------------------------------------- 1 | get_results($_GET["p"]); 6 | -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress3/wp-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress3/wp-config.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress3/wp-includes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress3/wp-includes/functions.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress3/wp-includes/wp-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress3/wp-includes/wp-db.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress3/wp-login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress3/wp-login.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress3/wp-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress3/wp-settings.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress4/wp-commentsrss2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress4/wp-commentsrss2.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress4/wp-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress4/wp-config.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress4/wp-includes/wp-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress4/wp-includes/wp-db.php -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress4/wp-login.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /projects/tests/tests/real/wordpress4/wp-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/real/wordpress4/wp-settings.php -------------------------------------------------------------------------------- /projects/tests/tests/todo/clone.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/tests/tests/todo/functions22.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/todo/functions22.php -------------------------------------------------------------------------------- /projects/tests/tests/todo/nat_ref_objs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/todo/nat_ref_objs.php -------------------------------------------------------------------------------- /projects/tests/tests/todo/property_taint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/todo/property_taint.php -------------------------------------------------------------------------------- /projects/tests/tests/todo/unset.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/tests/tests/twig/twig1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/twig/twig1.js -------------------------------------------------------------------------------- /projects/tests/tests/twig/twig1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/tests/twig/twig1.php -------------------------------------------------------------------------------- /projects/tests/testvulntestsuite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/designsecurity/progpilot/HEAD/projects/tests/testvulntestsuite.php --------------------------------------------------------------------------------