├── .idea ├── PHPVulFinder.iml ├── dictionaries │ └── meizj.xml ├── modules.xml ├── php.xml ├── phpRuntime.xml ├── vcs.xml └── workspace.xml ├── AST2IR.php ├── README.md ├── a.txt ├── block ├── Analysis.php ├── BasicBlock.php ├── FlowGraphs.php ├── Graph.php └── Sink.php ├── cache └── templates_c │ └── ea7e55aa5b1fa56531522497ccc924f64e130927_0.file.index.html.php ├── composer.json ├── composer.lock ├── config ├── securing.php ├── sinks.php └── sources.php ├── dump.rdb ├── global.php ├── index.php ├── main.php ├── static └── index.css ├── table ├── class_table.php ├── func_table.php └── global_var.php ├── tests ├── class_1.php ├── f.php ├── for_switch.php ├── for_test.php ├── func_define.php ├── func_define2.php ├── func_define_namespace.php ├── func_graph.php ├── func_graph_2.php ├── function_call.php ├── optimize.php ├── switch_test.php ├── test1.php ├── test2.php ├── test3.php ├── test4.php ├── test5.php ├── three.php ├── vul_test.php ├── vul_test2.php ├── vul_test3.php └── vul_test4.php ├── vendor ├── autoload.php ├── bin │ └── php-parse ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json ├── nikic │ └── php-parser │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE-1.0.md │ │ ├── UPGRADE-2.0.md │ │ ├── UPGRADE-3.0.md │ │ ├── UPGRADE-4.0.md │ │ ├── bin │ │ └── php-parse │ │ ├── composer.json │ │ ├── doc │ │ ├── 0_Introduction.markdown │ │ ├── 2_Usage_of_basic_components.markdown │ │ ├── README.md │ │ └── component │ │ │ ├── AST_builders.markdown │ │ │ ├── Constant_expression_evaluation.markdown │ │ │ ├── Error_handling.markdown │ │ │ ├── FAQ.markdown │ │ │ ├── JSON_representation.markdown │ │ │ ├── Lexer.markdown │ │ │ ├── Name_resolution.markdown │ │ │ ├── Performance.markdown │ │ │ ├── Pretty_printing.markdown │ │ │ └── Walking_the_AST.markdown │ │ ├── grammar │ │ ├── README.md │ │ ├── parser.template │ │ ├── php5.y │ │ ├── php7.y │ │ ├── rebuildParsers.php │ │ ├── tokens.template │ │ └── tokens.y │ │ ├── lib │ │ └── PhpParser │ │ │ ├── Builder.php │ │ │ ├── Builder │ │ │ ├── Class_.php │ │ │ ├── Declaration.php │ │ │ ├── FunctionLike.php │ │ │ ├── Function_.php │ │ │ ├── Interface_.php │ │ │ ├── Method.php │ │ │ ├── Namespace_.php │ │ │ ├── Param.php │ │ │ ├── Property.php │ │ │ ├── TraitUse.php │ │ │ ├── TraitUseAdaptation.php │ │ │ ├── Trait_.php │ │ │ └── Use_.php │ │ │ ├── BuilderFactory.php │ │ │ ├── BuilderHelpers.php │ │ │ ├── Comment.php │ │ │ ├── Comment │ │ │ └── Doc.php │ │ │ ├── ConstExprEvaluationException.php │ │ │ ├── ConstExprEvaluator.php │ │ │ ├── Error.php │ │ │ ├── ErrorHandler.php │ │ │ ├── ErrorHandler │ │ │ ├── Collecting.php │ │ │ └── Throwing.php │ │ │ ├── Internal │ │ │ ├── DiffElem.php │ │ │ ├── Differ.php │ │ │ ├── PrintableNewAnonClassNode.php │ │ │ └── TokenStream.php │ │ │ ├── JsonDecoder.php │ │ │ ├── Lexer.php │ │ │ ├── Lexer │ │ │ ├── Emulative.php │ │ │ └── TokenEmulator │ │ │ │ ├── CoaleseEqualTokenEmulator.php │ │ │ │ ├── FnTokenEmulator.php │ │ │ │ ├── NumericLiteralSeparatorEmulator.php │ │ │ │ └── TokenEmulatorInterface.php │ │ │ ├── NameContext.php │ │ │ ├── Node.php │ │ │ ├── Node │ │ │ ├── Arg.php │ │ │ ├── Const_.php │ │ │ ├── Expr.php │ │ │ ├── Expr │ │ │ │ ├── ArrayDimFetch.php │ │ │ │ ├── ArrayItem.php │ │ │ │ ├── Array_.php │ │ │ │ ├── ArrowFunction.php │ │ │ │ ├── Assign.php │ │ │ │ ├── AssignOp.php │ │ │ │ ├── AssignOp │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ ├── Coalesce.php │ │ │ │ │ ├── Concat.php │ │ │ │ │ ├── Div.php │ │ │ │ │ ├── Minus.php │ │ │ │ │ ├── Mod.php │ │ │ │ │ ├── Mul.php │ │ │ │ │ ├── Plus.php │ │ │ │ │ ├── Pow.php │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ └── ShiftRight.php │ │ │ │ ├── AssignRef.php │ │ │ │ ├── BinaryOp.php │ │ │ │ ├── BinaryOp │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ ├── BooleanAnd.php │ │ │ │ │ ├── BooleanOr.php │ │ │ │ │ ├── Coalesce.php │ │ │ │ │ ├── Concat.php │ │ │ │ │ ├── Div.php │ │ │ │ │ ├── Equal.php │ │ │ │ │ ├── Greater.php │ │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ │ ├── Identical.php │ │ │ │ │ ├── LogicalAnd.php │ │ │ │ │ ├── LogicalOr.php │ │ │ │ │ ├── LogicalXor.php │ │ │ │ │ ├── Minus.php │ │ │ │ │ ├── Mod.php │ │ │ │ │ ├── Mul.php │ │ │ │ │ ├── NotEqual.php │ │ │ │ │ ├── NotIdentical.php │ │ │ │ │ ├── Plus.php │ │ │ │ │ ├── Pow.php │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ ├── ShiftRight.php │ │ │ │ │ ├── Smaller.php │ │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ │ └── Spaceship.php │ │ │ │ ├── BitwiseNot.php │ │ │ │ ├── BooleanNot.php │ │ │ │ ├── Cast.php │ │ │ │ ├── Cast │ │ │ │ │ ├── Array_.php │ │ │ │ │ ├── Bool_.php │ │ │ │ │ ├── Double.php │ │ │ │ │ ├── Int_.php │ │ │ │ │ ├── Object_.php │ │ │ │ │ ├── String_.php │ │ │ │ │ └── Unset_.php │ │ │ │ ├── ClassConstFetch.php │ │ │ │ ├── Clone_.php │ │ │ │ ├── Closure.php │ │ │ │ ├── ClosureUse.php │ │ │ │ ├── ConstFetch.php │ │ │ │ ├── Empty_.php │ │ │ │ ├── Error.php │ │ │ │ ├── ErrorSuppress.php │ │ │ │ ├── Eval_.php │ │ │ │ ├── Exit_.php │ │ │ │ ├── FuncCall.php │ │ │ │ ├── Include_.php │ │ │ │ ├── Instanceof_.php │ │ │ │ ├── Isset_.php │ │ │ │ ├── List_.php │ │ │ │ ├── MethodCall.php │ │ │ │ ├── New_.php │ │ │ │ ├── PostDec.php │ │ │ │ ├── PostInc.php │ │ │ │ ├── PreDec.php │ │ │ │ ├── PreInc.php │ │ │ │ ├── Print_.php │ │ │ │ ├── PropertyFetch.php │ │ │ │ ├── ShellExec.php │ │ │ │ ├── StaticCall.php │ │ │ │ ├── StaticPropertyFetch.php │ │ │ │ ├── Ternary.php │ │ │ │ ├── UnaryMinus.php │ │ │ │ ├── UnaryPlus.php │ │ │ │ ├── Variable.php │ │ │ │ ├── YieldFrom.php │ │ │ │ └── Yield_.php │ │ │ ├── FunctionLike.php │ │ │ ├── Identifier.php │ │ │ ├── Name.php │ │ │ ├── Name │ │ │ │ ├── FullyQualified.php │ │ │ │ └── Relative.php │ │ │ ├── NullableType.php │ │ │ ├── Param.php │ │ │ ├── Scalar.php │ │ │ ├── Scalar │ │ │ │ ├── DNumber.php │ │ │ │ ├── Encapsed.php │ │ │ │ ├── EncapsedStringPart.php │ │ │ │ ├── LNumber.php │ │ │ │ ├── MagicConst.php │ │ │ │ ├── MagicConst │ │ │ │ │ ├── Class_.php │ │ │ │ │ ├── Dir.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Function_.php │ │ │ │ │ ├── Line.php │ │ │ │ │ ├── Method.php │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ └── Trait_.php │ │ │ │ └── String_.php │ │ │ ├── Stmt.php │ │ │ ├── Stmt │ │ │ │ ├── Break_.php │ │ │ │ ├── Case_.php │ │ │ │ ├── Catch_.php │ │ │ │ ├── ClassConst.php │ │ │ │ ├── ClassLike.php │ │ │ │ ├── ClassMethod.php │ │ │ │ ├── Class_.php │ │ │ │ ├── Const_.php │ │ │ │ ├── Continue_.php │ │ │ │ ├── DeclareDeclare.php │ │ │ │ ├── Declare_.php │ │ │ │ ├── Do_.php │ │ │ │ ├── Echo_.php │ │ │ │ ├── ElseIf_.php │ │ │ │ ├── Else_.php │ │ │ │ ├── Expression.php │ │ │ │ ├── Finally_.php │ │ │ │ ├── For_.php │ │ │ │ ├── Foreach_.php │ │ │ │ ├── Function_.php │ │ │ │ ├── Global_.php │ │ │ │ ├── Goto_.php │ │ │ │ ├── GroupUse.php │ │ │ │ ├── HaltCompiler.php │ │ │ │ ├── If_.php │ │ │ │ ├── InlineHTML.php │ │ │ │ ├── Interface_.php │ │ │ │ ├── Label.php │ │ │ │ ├── Namespace_.php │ │ │ │ ├── Nop.php │ │ │ │ ├── Property.php │ │ │ │ ├── PropertyProperty.php │ │ │ │ ├── Return_.php │ │ │ │ ├── StaticVar.php │ │ │ │ ├── Static_.php │ │ │ │ ├── Switch_.php │ │ │ │ ├── Throw_.php │ │ │ │ ├── TraitUse.php │ │ │ │ ├── TraitUseAdaptation.php │ │ │ │ ├── TraitUseAdaptation │ │ │ │ │ ├── Alias.php │ │ │ │ │ └── Precedence.php │ │ │ │ ├── Trait_.php │ │ │ │ ├── TryCatch.php │ │ │ │ ├── Unset_.php │ │ │ │ ├── UseUse.php │ │ │ │ ├── Use_.php │ │ │ │ └── While_.php │ │ │ └── VarLikeIdentifier.php │ │ │ ├── NodeAbstract.php │ │ │ ├── NodeDumper.php │ │ │ ├── NodeFinder.php │ │ │ ├── NodeTraverser.php │ │ │ ├── NodeTraverserInterface.php │ │ │ ├── NodeVisitor.php │ │ │ ├── NodeVisitor │ │ │ ├── CloningVisitor.php │ │ │ ├── FindingVisitor.php │ │ │ ├── FirstFindingVisitor.php │ │ │ └── NameResolver.php │ │ │ ├── NodeVisitorAbstract.php │ │ │ ├── Parser.php │ │ │ ├── Parser │ │ │ ├── Multiple.php │ │ │ ├── Php5.php │ │ │ ├── Php7.php │ │ │ └── Tokens.php │ │ │ ├── ParserAbstract.php │ │ │ ├── ParserFactory.php │ │ │ ├── PrettyPrinter │ │ │ └── Standard.php │ │ │ └── PrettyPrinterAbstract.php │ │ ├── phpunit.xml.dist │ │ ├── test │ │ ├── PhpParser │ │ │ ├── Builder │ │ │ │ ├── ClassTest.php │ │ │ │ ├── FunctionTest.php │ │ │ │ ├── InterfaceTest.php │ │ │ │ ├── MethodTest.php │ │ │ │ ├── NamespaceTest.php │ │ │ │ ├── ParamTest.php │ │ │ │ ├── PropertyTest.php │ │ │ │ ├── TraitTest.php │ │ │ │ ├── TraitUseAdaptationTest.php │ │ │ │ ├── TraitUseTest.php │ │ │ │ └── UseTest.php │ │ │ ├── BuilderFactoryTest.php │ │ │ ├── CodeParsingTest.php │ │ │ ├── CodeTestAbstract.php │ │ │ ├── CodeTestParser.php │ │ │ ├── CommentTest.php │ │ │ ├── ConstExprEvaluatorTest.php │ │ │ ├── ErrorHandler │ │ │ │ ├── CollectingTest.php │ │ │ │ └── ThrowingTest.php │ │ │ ├── ErrorTest.php │ │ │ ├── Internal │ │ │ │ └── DifferTest.php │ │ │ ├── JsonDecoderTest.php │ │ │ ├── Lexer │ │ │ │ └── EmulativeTest.php │ │ │ ├── LexerTest.php │ │ │ ├── NameContextTest.php │ │ │ ├── Node │ │ │ │ ├── IdentifierTest.php │ │ │ │ ├── NameTest.php │ │ │ │ ├── Scalar │ │ │ │ │ ├── MagicConstTest.php │ │ │ │ │ └── StringTest.php │ │ │ │ └── Stmt │ │ │ │ │ ├── ClassConstTest.php │ │ │ │ │ ├── ClassMethodTest.php │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ └── PropertyTest.php │ │ │ ├── NodeAbstractTest.php │ │ │ ├── NodeDumperTest.php │ │ │ ├── NodeFinderTest.php │ │ │ ├── NodeTraverserTest.php │ │ │ ├── NodeVisitor │ │ │ │ ├── FindingVisitorTest.php │ │ │ │ ├── FirstFindingVisitorTest.php │ │ │ │ └── NameResolverTest.php │ │ │ ├── Parser │ │ │ │ ├── MultipleTest.php │ │ │ │ ├── Php5Test.php │ │ │ │ └── Php7Test.php │ │ │ ├── ParserFactoryTest.php │ │ │ ├── ParserTest.php │ │ │ └── PrettyPrinterTest.php │ │ ├── bootstrap.php │ │ ├── code │ │ │ ├── formatPreservation │ │ │ │ ├── addingPropertyType.test │ │ │ │ ├── anonClasses.test │ │ │ │ ├── array_spread.test │ │ │ │ ├── arrow_function.test │ │ │ │ ├── basic.test │ │ │ │ ├── blockConversion.test │ │ │ │ ├── comments.test │ │ │ │ ├── emptyListInsertion.test │ │ │ │ ├── fixup.test │ │ │ │ ├── inlineHtml.test │ │ │ │ ├── insertionOfNullable.test │ │ │ │ ├── listInsertion.test │ │ │ │ ├── listInsertionIndentation.test │ │ │ │ ├── listRemoval.test │ │ │ │ ├── modifierChange.test │ │ │ │ ├── nopCommentAtEnd.test │ │ │ │ ├── removalViaNull.test │ │ │ │ ├── removingPropertyType.test │ │ │ │ └── traitAlias.test │ │ │ ├── parser │ │ │ │ ├── blockComments.test │ │ │ │ ├── commentAtEndOfClass.test │ │ │ │ ├── comments.test │ │ │ │ ├── errorHandling │ │ │ │ │ ├── eofError.test │ │ │ │ │ ├── lexerErrors.test │ │ │ │ │ └── recovery.test │ │ │ │ ├── expr │ │ │ │ │ ├── arrayDef.test │ │ │ │ │ ├── arrayDestructuring.test │ │ │ │ │ ├── arraySpread.test │ │ │ │ │ ├── arrow_function.test │ │ │ │ │ ├── assign.test │ │ │ │ │ ├── assignNewByRef.test │ │ │ │ │ ├── cast.test │ │ │ │ │ ├── clone.test │ │ │ │ │ ├── closure.test │ │ │ │ │ ├── comparison.test │ │ │ │ │ ├── constant_expr.test │ │ │ │ │ ├── errorSuppress.test │ │ │ │ │ ├── exit.test │ │ │ │ │ ├── fetchAndCall │ │ │ │ │ │ ├── args.test │ │ │ │ │ │ ├── constFetch.test │ │ │ │ │ │ ├── constantDeref.test │ │ │ │ │ │ ├── funcCall.test │ │ │ │ │ │ ├── newDeref.test │ │ │ │ │ │ ├── objectAccess.test │ │ │ │ │ │ ├── simpleArrayAccess.test │ │ │ │ │ │ ├── staticCall.test │ │ │ │ │ │ └── staticPropertyFetch.test │ │ │ │ │ ├── includeAndEval.test │ │ │ │ │ ├── issetAndEmpty.test │ │ │ │ │ ├── listReferences.test │ │ │ │ │ ├── listWithKeys.test │ │ │ │ │ ├── logic.test │ │ │ │ │ ├── math.test │ │ │ │ │ ├── new.test │ │ │ │ │ ├── newWithoutClass.test │ │ │ │ │ ├── print.test │ │ │ │ │ ├── shellExec.test │ │ │ │ │ ├── ternaryAndCoalesce.test │ │ │ │ │ ├── trailingCommas.test │ │ │ │ │ ├── uvs │ │ │ │ │ │ ├── globalNonSimpleVarError.test │ │ │ │ │ │ ├── indirectCall.test │ │ │ │ │ │ ├── isset.test │ │ │ │ │ │ ├── misc.test │ │ │ │ │ │ ├── new.test │ │ │ │ │ │ └── staticProperty.test │ │ │ │ │ └── variable.test │ │ │ │ ├── nopPositions.test │ │ │ │ ├── scalar │ │ │ │ │ ├── constantString.test │ │ │ │ │ ├── docString.test │ │ │ │ │ ├── docStringNewlines.test │ │ │ │ │ ├── encapsedNegVarOffset.test │ │ │ │ │ ├── encapsedString.test │ │ │ │ │ ├── flexibleDocString.test │ │ │ │ │ ├── flexibleDocStringErrors.test │ │ │ │ │ ├── float.test │ │ │ │ │ ├── int.test │ │ │ │ │ ├── invalidOctal.test │ │ │ │ │ ├── magicConst.test │ │ │ │ │ ├── numberSeparators.test │ │ │ │ │ └── unicodeEscape.test │ │ │ │ ├── semiReserved.test │ │ │ │ └── stmt │ │ │ │ │ ├── blocklessStatement.test │ │ │ │ │ ├── class │ │ │ │ │ ├── abstract.test │ │ │ │ │ ├── anonymous.test │ │ │ │ │ ├── conditional.test │ │ │ │ │ ├── constModifierErrors.test │ │ │ │ │ ├── constModifiers.test │ │ │ │ │ ├── final.test │ │ │ │ │ ├── implicitPublic.test │ │ │ │ │ ├── interface.test │ │ │ │ │ ├── modifier.test │ │ │ │ │ ├── name.test │ │ │ │ │ ├── php4Style.test │ │ │ │ │ ├── propertyTypes.test │ │ │ │ │ ├── simple.test │ │ │ │ │ ├── staticMethod.test │ │ │ │ │ └── trait.test │ │ │ │ │ ├── const.test │ │ │ │ │ ├── controlFlow.test │ │ │ │ │ ├── declare.test │ │ │ │ │ ├── echo.test │ │ │ │ │ ├── function │ │ │ │ │ ├── builtinTypeDeclarations.test │ │ │ │ │ ├── byRef.test │ │ │ │ │ ├── conditional.test │ │ │ │ │ ├── defaultValues.test │ │ │ │ │ ├── nullableTypes.test │ │ │ │ │ ├── returnTypes.test │ │ │ │ │ ├── specialVars.test │ │ │ │ │ ├── typeDeclarations.test │ │ │ │ │ ├── variadic.test │ │ │ │ │ └── variadicDefaultValue.test │ │ │ │ │ ├── generator │ │ │ │ │ ├── basic.test │ │ │ │ │ ├── yieldPrecedence.test │ │ │ │ │ └── yieldUnaryPrecedence.test │ │ │ │ │ ├── haltCompiler.test │ │ │ │ │ ├── haltCompilerInvalidSyntax.test │ │ │ │ │ ├── haltCompilerOffset.test │ │ │ │ │ ├── haltCompilerOutermostScope.test │ │ │ │ │ ├── hashbang.test │ │ │ │ │ ├── if.test │ │ │ │ │ ├── inlineHTML.test │ │ │ │ │ ├── loop │ │ │ │ │ ├── do.test │ │ │ │ │ ├── for.test │ │ │ │ │ ├── foreach.test │ │ │ │ │ └── while.test │ │ │ │ │ ├── multiCatch.test │ │ │ │ │ ├── namespace │ │ │ │ │ ├── alias.test │ │ │ │ │ ├── braced.test │ │ │ │ │ ├── commentAfterNamespace.test │ │ │ │ │ ├── groupUse.test │ │ │ │ │ ├── groupUseErrors.test │ │ │ │ │ ├── groupUsePositions.test │ │ │ │ │ ├── groupUseTrailingComma.test │ │ │ │ │ ├── invalidName.test │ │ │ │ │ ├── mix.test │ │ │ │ │ ├── name.test │ │ │ │ │ ├── nested.test │ │ │ │ │ ├── notBraced.test │ │ │ │ │ ├── nsAfterHashbang.test │ │ │ │ │ ├── outsideStmt.test │ │ │ │ │ └── outsideStmtInvalid.test │ │ │ │ │ ├── switch.test │ │ │ │ │ ├── tryCatch.test │ │ │ │ │ ├── tryWithoutCatch.test │ │ │ │ │ └── unset.test │ │ │ └── prettyPrinter │ │ │ │ ├── comments.test │ │ │ │ ├── commentsInCommaList.test │ │ │ │ ├── expr │ │ │ │ ├── anonymousClass.test │ │ │ │ ├── arrayDestructuring.test │ │ │ │ ├── arraySpread.test │ │ │ │ ├── arrow_function.test │ │ │ │ ├── call.test │ │ │ │ ├── closure.test │ │ │ │ ├── constant_deref.test │ │ │ │ ├── docStrings.test │ │ │ │ ├── include.test │ │ │ │ ├── intrinsics.test │ │ │ │ ├── list.test │ │ │ │ ├── literals.test │ │ │ │ ├── numbers.test │ │ │ │ ├── operators.test │ │ │ │ ├── parentheses.test │ │ │ │ ├── shortArraySyntax.test │ │ │ │ ├── stringEscaping.test │ │ │ │ ├── uvs.test │ │ │ │ ├── variables.test │ │ │ │ └── yield.test │ │ │ │ ├── inlineHTMLandPHPtest.file-test │ │ │ │ ├── nestedInlineHTML.test │ │ │ │ ├── onlyInlineHTML.file-test │ │ │ │ ├── onlyPHP.file-test │ │ │ │ └── stmt │ │ │ │ ├── alias.test │ │ │ │ ├── break_continue.test │ │ │ │ ├── class.test │ │ │ │ ├── class_const.test │ │ │ │ ├── const.test │ │ │ │ ├── declare.test │ │ │ │ ├── do_while.test │ │ │ │ ├── for.test │ │ │ │ ├── foreach.test │ │ │ │ ├── function_signatures.test │ │ │ │ ├── global_static_variables.test │ │ │ │ ├── goto.test │ │ │ │ ├── groupUse.test │ │ │ │ ├── haltCompiler.file-test │ │ │ │ ├── if.test │ │ │ │ ├── multiCatch.test │ │ │ │ ├── namespaces.test │ │ │ │ ├── nullable_types.test │ │ │ │ ├── properties.test │ │ │ │ ├── switch.test │ │ │ │ ├── throw.test │ │ │ │ ├── traitUse.test │ │ │ │ ├── tryCatch.test │ │ │ │ └── while.test │ │ └── updateTests.php │ │ └── test_old │ │ ├── run-php-src.sh │ │ └── run.php └── smarty │ └── smarty │ ├── COMPOSER_RELEASE_NOTES.txt │ ├── INHERITANCE_RELEASE_NOTES.txt │ ├── LICENSE │ ├── NEW_FEATURES.txt │ ├── README │ ├── README.md │ ├── SMARTY_2_BC_NOTES.txt │ ├── SMARTY_3.0_BC_NOTES.txt │ ├── SMARTY_3.1_NOTES.txt │ ├── change_log.txt │ ├── composer.json │ ├── demo │ ├── configs │ │ └── test.conf │ ├── index.php │ ├── plugins │ │ ├── cacheresource.apc.php │ │ ├── cacheresource.memcache.php │ │ ├── cacheresource.mysql.php │ │ ├── cacheresource.pdo.php │ │ ├── cacheresource.pdo_gzip.php │ │ ├── resource.extendsall.php │ │ ├── resource.mysql.php │ │ └── resource.mysqls.php │ └── templates │ │ ├── footer.tpl │ │ ├── header.tpl │ │ └── index.tpl │ ├── error_reporting.ini │ └── libs │ ├── Autoloader.php │ ├── Smarty.class.php │ ├── SmartyBC.class.php │ ├── bootstrap.php │ ├── debug.tpl │ ├── plugins │ ├── block.textformat.php │ ├── function.counter.php │ ├── function.cycle.php │ ├── function.fetch.php │ ├── function.html_checkboxes.php │ ├── function.html_image.php │ ├── function.html_options.php │ ├── function.html_radios.php │ ├── function.html_select_date.php │ ├── function.html_select_time.php │ ├── function.html_table.php │ ├── function.mailto.php │ ├── function.math.php │ ├── modifier.capitalize.php │ ├── modifier.date_format.php │ ├── modifier.debug_print_var.php │ ├── modifier.escape.php │ ├── modifier.mb_wordwrap.php │ ├── modifier.regex_replace.php │ ├── modifier.replace.php │ ├── modifier.spacify.php │ ├── modifier.truncate.php │ ├── modifiercompiler.cat.php │ ├── modifiercompiler.count_characters.php │ ├── modifiercompiler.count_paragraphs.php │ ├── modifiercompiler.count_sentences.php │ ├── modifiercompiler.count_words.php │ ├── modifiercompiler.default.php │ ├── modifiercompiler.escape.php │ ├── modifiercompiler.from_charset.php │ ├── modifiercompiler.indent.php │ ├── modifiercompiler.lower.php │ ├── modifiercompiler.noprint.php │ ├── modifiercompiler.string_format.php │ ├── modifiercompiler.strip.php │ ├── modifiercompiler.strip_tags.php │ ├── modifiercompiler.to_charset.php │ ├── modifiercompiler.unescape.php │ ├── modifiercompiler.upper.php │ ├── modifiercompiler.wordwrap.php │ ├── outputfilter.trimwhitespace.php │ ├── shared.escape_special_chars.php │ ├── shared.literal_compiler_param.php │ ├── shared.make_timestamp.php │ ├── shared.mb_str_replace.php │ ├── shared.mb_unicode.php │ └── variablefilter.htmlspecialchars.php │ └── sysplugins │ ├── smarty_cacheresource.php │ ├── smarty_cacheresource_custom.php │ ├── smarty_cacheresource_keyvaluestore.php │ ├── smarty_data.php │ ├── smarty_internal_block.php │ ├── smarty_internal_cacheresource_file.php │ ├── smarty_internal_compile_append.php │ ├── smarty_internal_compile_assign.php │ ├── smarty_internal_compile_block.php │ ├── smarty_internal_compile_block_child.php │ ├── smarty_internal_compile_block_parent.php │ ├── smarty_internal_compile_break.php │ ├── smarty_internal_compile_call.php │ ├── smarty_internal_compile_capture.php │ ├── smarty_internal_compile_child.php │ ├── smarty_internal_compile_config_load.php │ ├── smarty_internal_compile_continue.php │ ├── smarty_internal_compile_debug.php │ ├── smarty_internal_compile_eval.php │ ├── smarty_internal_compile_extends.php │ ├── smarty_internal_compile_for.php │ ├── smarty_internal_compile_foreach.php │ ├── smarty_internal_compile_function.php │ ├── smarty_internal_compile_if.php │ ├── smarty_internal_compile_include.php │ ├── smarty_internal_compile_include_php.php │ ├── smarty_internal_compile_insert.php │ ├── smarty_internal_compile_ldelim.php │ ├── smarty_internal_compile_make_nocache.php │ ├── smarty_internal_compile_nocache.php │ ├── smarty_internal_compile_parent.php │ ├── smarty_internal_compile_private_block_plugin.php │ ├── smarty_internal_compile_private_foreachsection.php │ ├── smarty_internal_compile_private_function_plugin.php │ ├── smarty_internal_compile_private_modifier.php │ ├── smarty_internal_compile_private_object_block_function.php │ ├── smarty_internal_compile_private_object_function.php │ ├── smarty_internal_compile_private_php.php │ ├── smarty_internal_compile_private_print_expression.php │ ├── smarty_internal_compile_private_registered_block.php │ ├── smarty_internal_compile_private_registered_function.php │ ├── smarty_internal_compile_private_special_variable.php │ ├── smarty_internal_compile_rdelim.php │ ├── smarty_internal_compile_section.php │ ├── smarty_internal_compile_setfilter.php │ ├── smarty_internal_compile_shared_inheritance.php │ ├── smarty_internal_compile_while.php │ ├── smarty_internal_compilebase.php │ ├── smarty_internal_config_file_compiler.php │ ├── smarty_internal_configfilelexer.php │ ├── smarty_internal_configfileparser.php │ ├── smarty_internal_data.php │ ├── smarty_internal_debug.php │ ├── smarty_internal_errorhandler.php │ ├── smarty_internal_extension_handler.php │ ├── smarty_internal_method_addautoloadfilters.php │ ├── smarty_internal_method_adddefaultmodifiers.php │ ├── smarty_internal_method_append.php │ ├── smarty_internal_method_appendbyref.php │ ├── smarty_internal_method_assignbyref.php │ ├── smarty_internal_method_assignglobal.php │ ├── smarty_internal_method_clearallassign.php │ ├── smarty_internal_method_clearallcache.php │ ├── smarty_internal_method_clearassign.php │ ├── smarty_internal_method_clearcache.php │ ├── smarty_internal_method_clearcompiledtemplate.php │ ├── smarty_internal_method_clearconfig.php │ ├── smarty_internal_method_compileallconfig.php │ ├── smarty_internal_method_compilealltemplates.php │ ├── smarty_internal_method_configload.php │ ├── smarty_internal_method_createdata.php │ ├── smarty_internal_method_getautoloadfilters.php │ ├── smarty_internal_method_getconfigvariable.php │ ├── smarty_internal_method_getconfigvars.php │ ├── smarty_internal_method_getdebugtemplate.php │ ├── smarty_internal_method_getdefaultmodifiers.php │ ├── smarty_internal_method_getglobal.php │ ├── smarty_internal_method_getregisteredobject.php │ ├── smarty_internal_method_getstreamvariable.php │ ├── smarty_internal_method_gettags.php │ ├── smarty_internal_method_gettemplatevars.php │ ├── smarty_internal_method_literals.php │ ├── smarty_internal_method_loadfilter.php │ ├── smarty_internal_method_loadplugin.php │ ├── smarty_internal_method_mustcompile.php │ ├── smarty_internal_method_registercacheresource.php │ ├── smarty_internal_method_registerclass.php │ ├── smarty_internal_method_registerdefaultconfighandler.php │ ├── smarty_internal_method_registerdefaultpluginhandler.php │ ├── smarty_internal_method_registerdefaulttemplatehandler.php │ ├── smarty_internal_method_registerfilter.php │ ├── smarty_internal_method_registerobject.php │ ├── smarty_internal_method_registerplugin.php │ ├── smarty_internal_method_registerresource.php │ ├── smarty_internal_method_setautoloadfilters.php │ ├── smarty_internal_method_setdebugtemplate.php │ ├── smarty_internal_method_setdefaultmodifiers.php │ ├── smarty_internal_method_unloadfilter.php │ ├── smarty_internal_method_unregistercacheresource.php │ ├── smarty_internal_method_unregisterfilter.php │ ├── smarty_internal_method_unregisterobject.php │ ├── smarty_internal_method_unregisterplugin.php │ ├── smarty_internal_method_unregisterresource.php │ ├── smarty_internal_nocache_insert.php │ ├── smarty_internal_parsetree.php │ ├── smarty_internal_parsetree_code.php │ ├── smarty_internal_parsetree_dq.php │ ├── smarty_internal_parsetree_dqcontent.php │ ├── smarty_internal_parsetree_tag.php │ ├── smarty_internal_parsetree_template.php │ ├── smarty_internal_parsetree_text.php │ ├── smarty_internal_resource_eval.php │ ├── smarty_internal_resource_extends.php │ ├── smarty_internal_resource_file.php │ ├── smarty_internal_resource_php.php │ ├── smarty_internal_resource_registered.php │ ├── smarty_internal_resource_stream.php │ ├── smarty_internal_resource_string.php │ ├── smarty_internal_runtime_cachemodify.php │ ├── smarty_internal_runtime_cacheresourcefile.php │ ├── smarty_internal_runtime_capture.php │ ├── smarty_internal_runtime_codeframe.php │ ├── smarty_internal_runtime_filterhandler.php │ ├── smarty_internal_runtime_foreach.php │ ├── smarty_internal_runtime_getincludepath.php │ ├── smarty_internal_runtime_inheritance.php │ ├── smarty_internal_runtime_make_nocache.php │ ├── smarty_internal_runtime_tplfunction.php │ ├── smarty_internal_runtime_updatecache.php │ ├── smarty_internal_runtime_updatescope.php │ ├── smarty_internal_runtime_writefile.php │ ├── smarty_internal_smartytemplatecompiler.php │ ├── smarty_internal_template.php │ ├── smarty_internal_templatebase.php │ ├── smarty_internal_templatecompilerbase.php │ ├── smarty_internal_templatelexer.php │ ├── smarty_internal_templateparser.php │ ├── smarty_internal_testinstall.php │ ├── smarty_internal_undefined.php │ ├── smarty_resource.php │ ├── smarty_resource_custom.php │ ├── smarty_resource_recompiled.php │ ├── smarty_resource_uncompiled.php │ ├── smarty_security.php │ ├── smarty_template_cached.php │ ├── smarty_template_compiled.php │ ├── smarty_template_config.php │ ├── smarty_template_resource_base.php │ ├── smarty_template_source.php │ ├── smarty_undefined_variable.php │ ├── smarty_variable.php │ ├── smartycompilerexception.php │ └── smartyexception.php ├── views ├── index.html └── result.html └── visitor.php /.idea/PHPVulFinder.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/.idea/PHPVulFinder.iml -------------------------------------------------------------------------------- /.idea/dictionaries/meizj.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/.idea/dictionaries/meizj.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/.idea/php.xml -------------------------------------------------------------------------------- /.idea/phpRuntime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/.idea/phpRuntime.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /AST2IR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/AST2IR.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/README.md -------------------------------------------------------------------------------- /a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/a.txt -------------------------------------------------------------------------------- /block/Analysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/block/Analysis.php -------------------------------------------------------------------------------- /block/BasicBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/block/BasicBlock.php -------------------------------------------------------------------------------- /block/FlowGraphs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/block/FlowGraphs.php -------------------------------------------------------------------------------- /block/Graph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/block/Graph.php -------------------------------------------------------------------------------- /block/Sink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/block/Sink.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/composer.lock -------------------------------------------------------------------------------- /config/securing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/config/securing.php -------------------------------------------------------------------------------- /config/sinks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/config/sinks.php -------------------------------------------------------------------------------- /config/sources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/config/sources.php -------------------------------------------------------------------------------- /dump.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/dump.rdb -------------------------------------------------------------------------------- /global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/global.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/index.php -------------------------------------------------------------------------------- /main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/main.php -------------------------------------------------------------------------------- /static/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/static/index.css -------------------------------------------------------------------------------- /table/class_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/table/class_table.php -------------------------------------------------------------------------------- /table/func_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/table/func_table.php -------------------------------------------------------------------------------- /table/global_var.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/table/global_var.php -------------------------------------------------------------------------------- /tests/class_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/tests/class_1.php -------------------------------------------------------------------------------- /tests/f.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/smarty/smarty/demo/templates/header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/demo/templates/header.tpl -------------------------------------------------------------------------------- /vendor/smarty/smarty/demo/templates/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/demo/templates/index.tpl -------------------------------------------------------------------------------- /vendor/smarty/smarty/error_reporting.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/error_reporting.ini -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/Autoloader.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/Smarty.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/Smarty.class.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/SmartyBC.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/SmartyBC.class.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/bootstrap.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/debug.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/debug.tpl -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/block.textformat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/block.textformat.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/function.counter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/function.counter.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/function.cycle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/function.cycle.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/function.fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/function.fetch.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/function.html_checkboxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/function.html_checkboxes.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/function.html_image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/function.html_image.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/function.html_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/function.html_options.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/function.html_radios.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/function.html_radios.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/function.html_select_date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/function.html_select_date.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/function.html_select_time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/function.html_select_time.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/function.html_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/function.html_table.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/function.mailto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/function.mailto.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/function.math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/function.math.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifier.capitalize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifier.capitalize.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifier.date_format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifier.date_format.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifier.debug_print_var.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifier.debug_print_var.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifier.escape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifier.escape.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifier.mb_wordwrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifier.mb_wordwrap.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifier.regex_replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifier.regex_replace.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifier.replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifier.replace.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifier.spacify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifier.spacify.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifier.truncate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifier.truncate.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifiercompiler.cat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifiercompiler.cat.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifiercompiler.count_characters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifiercompiler.count_characters.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifiercompiler.count_paragraphs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifiercompiler.count_paragraphs.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifiercompiler.count_sentences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifiercompiler.count_sentences.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifiercompiler.count_words.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifiercompiler.count_words.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifiercompiler.default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifiercompiler.default.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifiercompiler.escape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifiercompiler.escape.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifiercompiler.from_charset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifiercompiler.from_charset.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifiercompiler.indent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifiercompiler.indent.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifiercompiler.lower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifiercompiler.lower.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifiercompiler.noprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifiercompiler.noprint.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifiercompiler.string_format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifiercompiler.string_format.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifiercompiler.strip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifiercompiler.strip.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifiercompiler.strip_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifiercompiler.strip_tags.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifiercompiler.to_charset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifiercompiler.to_charset.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifiercompiler.unescape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifiercompiler.unescape.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifiercompiler.upper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifiercompiler.upper.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/modifiercompiler.wordwrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/modifiercompiler.wordwrap.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/outputfilter.trimwhitespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/outputfilter.trimwhitespace.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/shared.escape_special_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/shared.escape_special_chars.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/shared.literal_compiler_param.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/shared.literal_compiler_param.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/shared.make_timestamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/shared.make_timestamp.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/shared.mb_str_replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/shared.mb_str_replace.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/shared.mb_unicode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/shared.mb_unicode.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/plugins/variablefilter.htmlspecialchars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/plugins/variablefilter.htmlspecialchars.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_cacheresource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_cacheresource.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_cacheresource_custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_cacheresource_custom.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_cacheresource_keyvaluestore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_cacheresource_keyvaluestore.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_data.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_block.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_cacheresource_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_cacheresource_file.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_append.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_assign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_assign.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_block.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_block_child.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_block_child.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_block_parent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_block_parent.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_break.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_break.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_call.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_capture.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_child.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_child.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_config_load.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_config_load.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_continue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_continue.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_debug.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_eval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_eval.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_extends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_extends.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_for.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_for.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_foreach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_foreach.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_function.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_if.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_if.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_include.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_include_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_include_php.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_insert.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_ldelim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_ldelim.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_make_nocache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_make_nocache.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_nocache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_nocache.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_parent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_parent.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_rdelim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_rdelim.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_section.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_setfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_setfilter.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_while.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compile_while.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_compilebase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_compilebase.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_configfilelexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_configfilelexer.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_configfileparser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_configfileparser.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_data.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_debug.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_errorhandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_errorhandler.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_extension_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_extension_handler.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_append.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_appendbyref.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_appendbyref.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_assignbyref.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_assignbyref.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_clearassign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_clearassign.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_clearcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_clearcache.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_clearconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_clearconfig.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_configload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_configload.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_createdata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_createdata.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_getglobal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_getglobal.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_gettags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_gettags.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_literals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_literals.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_loadfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_loadfilter.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_loadplugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_loadplugin.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_mustcompile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_mustcompile.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_nocache_insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_nocache_insert.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_parsetree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_parsetree.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_code.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_dq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_dq.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_tag.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_template.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_parsetree_text.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_resource_eval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_resource_eval.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_resource_extends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_resource_extends.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_resource_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_resource_file.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_resource_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_resource_php.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_resource_stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_resource_stream.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_resource_string.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_resource_string.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_capture.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_codeframe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_codeframe.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_foreach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_foreach.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_writefile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_writefile.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatelexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatelexer.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templateparser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templateparser.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_testinstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_testinstall.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_internal_undefined.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_internal_undefined.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_resource.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_resource_custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_resource_custom.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_resource_recompiled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_resource_recompiled.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_resource_uncompiled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_resource_uncompiled.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_security.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_template_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_template_config.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_template_source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_template_source.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_undefined_variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_undefined_variable.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smarty_variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smarty_variable.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smartycompilerexception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smartycompilerexception.php -------------------------------------------------------------------------------- /vendor/smarty/smarty/libs/sysplugins/smartyexception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/vendor/smarty/smarty/libs/sysplugins/smartyexception.php -------------------------------------------------------------------------------- /views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/views/index.html -------------------------------------------------------------------------------- /views/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/views/result.html -------------------------------------------------------------------------------- /visitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/PHPVulFinder/HEAD/visitor.php --------------------------------------------------------------------------------