【例子介绍】DVWA网络攻防平台
DVWA(Damn Vulnerable Web App)是一个基于PHP/MySql搭建的Web应用程序,旨在为安全专业人员测试自己的专业技能和工具提供合法的 环境,帮助Web开发者更好的理解Web应用安全防范的过程。
【相关图片】
【源码结构】
.
├── DVWA-master
│ ├── CHANGELOG.md
│ ├── COPYING.txt
│ ├── README.md
│ ├── about.php
│ ├── config
│ │ └── config.inc.php
│ ├── docs
│ │ ├── DVWA_v1.3.pdf
│ │ └── pdf.html
│ ├── dvwa
│ │ ├── css
│ │ │ ├── help.css
│ │ │ ├── login.css
│ │ │ ├── main.css
│ │ │ └── source.css
│ │ ├── images
│ │ │ ├── RandomStorm.png
│ │ │ ├── dollar.png
│ │ │ ├── lock.png
│ │ │ ├── login_logo.png
│ │ │ ├── logo.png
│ │ │ ├── spanner.png
│ │ │ └── warning.png
│ │ ├── includes
│ │ │ ├── DBMS
│ │ │ │ ├── MySQL.php
│ │ │ │ └── PGSQL.php
│ │ │ ├── dvwaPage.inc.php
│ │ │ └── dvwaPhpIds.inc.php
│ │ └── js
│ │ ├── add_event_listeners.js
│ │ └── dvwaPage.js
│ ├── external
│ │ ├── phpids
│ │ │ └── 0.6
│ │ │ ├── LICENSE
│ │ │ ├── build.xml
│ │ │ ├── docs
│ │ │ │ ├── examples
│ │ │ │ │ ├── cakephp
│ │ │ │ │ │ ├── README
│ │ │ │ │ │ ├── ids.php
│ │ │ │ │ │ └── intrusion.php
│ │ │ │ │ └── example.php
│ │ │ │ └── phpdocumentor
│ │ │ │ ├── PHPIDS
│ │ │ │ │ ├── IDS_Caching.html
│ │ │ │ │ ├── IDS_Caching_Database.html
│ │ │ │ │ ├── IDS_Caching_File.html
│ │ │ │ │ ├── IDS_Caching_Interface.html
│ │ │ │ │ ├── IDS_Caching_Memcached.html
│ │ │ │ │ ├── IDS_Caching_Session.html
│ │ │ │ │ ├── IDS_Converter.html
│ │ │ │ │ ├── IDS_Event.html
│ │ │ │ │ ├── IDS_Filter.html
│ │ │ │ │ ├── IDS_Filter_Storage.html
│ │ │ │ │ ├── IDS_Filter_Storage_Abstract.html
│ │ │ │ │ ├── IDS_Init.html
│ │ │ │ │ ├── IDS_Log_Composite.html
│ │ │ │ │ ├── IDS_Log_Database.html
│ │ │ │ │ ├── IDS_Log_Email.html
│ │ │ │ │ ├── IDS_Log_File.html
│ │ │ │ │ ├── IDS_Log_Interface.html
│ │ │ │ │ ├── IDS_Monitor.html
│ │ │ │ │ ├── IDS_Report.html
│ │ │ │ │ ├── _Caching---Database.php.html
│ │ │ │ │ ├── _Caching---Factory.php.html
│ │ │ │ │ ├── _Caching---File.php.html
│ │ │ │ │ ├── _Caching---Interface.php.html
│ │ │ │ │ ├── _Caching---Memcached.php.html
│ │ │ │ │ ├── _Caching---Session.php.html
│ │ │ │ │ ├── _Converter.php.html
│ │ │ │ │ ├── _Event.php.html
│ │ │ │ │ ├── _Filter---Filter.php.html
│ │ │ │ │ ├── _Filter---Storage---Abstract.php.html
│ │ │ │ │ ├── _Filter---Storage.php.html
│ │ │ │ │ ├── _Filter.php.html
│ │ │ │ │ ├── _Init.php.html
│ │ │ │ │ ├── _Log---Composite.php.html
│ │ │ │ │ ├── _Log---Database.php.html
│ │ │ │ │ ├── _Log---Email.php.html
│ │ │ │ │ ├── _Log---File.php.html
│ │ │ │ │ ├── _Log---Interface.php.html
│ │ │ │ │ ├── _Monitor.php.html
│ │ │ │ │ └── _Report.php.html
│ │ │ │ ├── blank.html
│ │ │ │ ├── classtrees_PHPIDS.html
│ │ │ │ ├── elementindex.html
│ │ │ │ ├── elementindex_PHPIDS.html
│ │ │ │ ├── errors.html
│ │ │ │ ├── index.html
│ │ │ │ ├── li_PHPIDS.html
│ │ │ │ ├── media
│ │ │ │ │ ├── banner.css
│ │ │ │ │ └── stylesheet.css
│ │ │ │ └── packages.html
│ │ │ ├── lib
│ │ │ │ └── IDS
│ │ │ │ ├── Caching
│ │ │ │ │ ├── Database.php
│ │ │ │ │ ├── Factory.php
│ │ │ │ │ ├── File.php
│ │ │ │ │ ├── Interface.php
│ │ │ │ │ ├── Memcached.php
│ │ │ │ │ └── Session.php
│ │ │ │ ├── Config
│ │ │ │ │ └── Config.ini
│ │ │ │ ├── Converter.php
│ │ │ │ ├── Event.php
│ │ │ │ ├── Filter
│ │ │ │ │ └── Storage.php
│ │ │ │ ├── Filter.php
│ │ │ │ ├── Init.php
│ │ │ │ ├── Log
│ │ │ │ │ ├── Composite.php
│ │ │ │ │ ├── Database.php
│ │ │ │ │ ├── Email.php
│ │ │ │ │ ├── File.php
│ │ │ │ │ └── Interface.php
│ │ │ │ ├── Monitor.php
│ │ │ │ ├── Report.php
│ │ │ │ ├── default_filter.json
│ │ │ │ ├── default_filter.xml
│ │ │ │ ├── tmp
│ │ │ │ │ └── phpids_log.txt
│ │ │ │ └── vendors
│ │ │ │ └── htmlpurifier
│ │ │ │ ├── HTMLPurifier
│ │ │ │ │ ├── AttrCollections.php
│ │ │ │ │ ├── AttrDef
│ │ │ │ │ │ ├── CSS
│ │ │ │ │ │ │ ├── AlphaValue.php
│ │ │ │ │ │ │ ├── Background.php
│ │ │ │ │ │ │ ├── BackgroundPosition.php
│ │ │ │ │ │ │ ├── Border.php
│ │ │ │ │ │ │ ├── Color.php
│ │ │ │ │ │ │ ├── Composite.php
│ │ │ │ │ │ │ ├── DenyElementDecorator.php
│ │ │ │ │ │ │ ├── Filter.php
│ │ │ │ │ │ │ ├── Font.php
│ │ │ │ │ │ │ ├── FontFamily.php
│ │ │ │ │ │ │ ├── ImportantDecorator.php
│ │ │ │ │ │ │ ├── Length.php
│ │ │ │ │ │ │ ├── ListStyle.php
│ │ │ │ │ │ │ ├── Multiple.php
│ │ │ │ │ │ │ ├── Number.php
│ │ │ │ │ │ │ ├── Percentage.php
│ │ │ │ │ │ │ ├── TextDecoration.php
│ │ │ │ │ │ │ └── URI.php
│ │ │ │ │ │ ├── CSS.php
│ │ │ │ │ │ ├── Enum.php
│ │ │ │ │ │ ├── HTML
│ │ │ │ │ │ │ ├── Bool.php
│ │ │ │ │ │ │ ├── Color.php
│ │ │ │ │ │ │ ├── FrameTarget.php
│ │ │ │ │ │ │ ├── ID.php
│ │ │ │ │ │ │ ├── Length.php
│ │ │ │ │ │ │ ├── LinkTypes.php
│ │ │ │ │ │ │ ├── MultiLength.php
│ │ │ │ │ │ │ ├── Nmtokens.php
│ │ │ │ │ │ │ └── Pixels.php
│ │ │ │ │ │ ├── Integer.php
│ │ │ │ │ │ ├── Lang.php
│ │ │ │ │ │ ├── Switch.php
│ │ │ │ │ │ ├── Text.php
│ │ │ │ │ │ ├── URI
│ │ │ │ │ │ │ ├── Email
│ │ │ │ │ │ │ │ └── SimpleCheck.php
│ │ │ │ │ │ │ ├── Email.php
│ │ │ │ │ │ │ ├── Host.php
│ │ │ │ │ │ │ ├── IPv4.php
│ │ │ │ │ │ │ └── IPv6.php
│ │ │ │ │ │ └── URI.php
│ │ │ │ │ ├── AttrDef.php
│ │ │ │ │ ├── AttrTransform
│ │ │ │ │ │ ├── Background.php
│ │ │ │ │ │ ├── BdoDir.php
│ │ │ │ │ │ ├── BgColor.php
│ │ │ │ │ │ ├── BoolToCSS.php
│ │ │ │ │ │ ├── Border.php
│ │ │ │ │ │ ├── EnumToCSS.php
│ │ │ │ │ │ ├── ImgRequired.php
│ │ │ │ │ │ ├── ImgSpace.php
│ │ │ │ │ │ ├── Input.php
│ │ │ │ │ │ ├── Lang.php
│ │ │ │ │ │ ├── Length.php
│ │ │ │ │ │ ├── Name.php
│ │ │ │ │ │ ├── SafeEmbed.php
│ │ │ │ │ │ ├── SafeObject.php
│ │ │ │ │ │ ├── SafeParam.php
│ │ │ │ │ │ ├── ScriptRequired.php
│ │ │ │ │ │ └── Textarea.php
│ │ │ │ │ ├── AttrTransform.php
│ │ │ │ │ ├── AttrTypes.php
│ │ │ │ │ ├── AttrValidator.php
│ │ │ │ │ ├── Bootstrap.php
│ │ │ │ │ ├── CSSDefinition.php
│ │ │ │ │ ├── ChildDef
│ │ │ │ │ │ ├── Chameleon.php
│ │ │ │ │ │ ├── Custom.php
│ │ │ │ │ │ ├── Empty.php
│ │ │ │ │ │ ├── Optional.php
│ │ │ │ │ │ ├── Required.php
│ │ │ │ │ │ ├── StrictBlockquote.php
│ │ │ │ │ │ └── Table.php
│ │ │ │ │ ├── ChildDef.php
│ │ │ │ │ ├── Config.php
│ │ │ │ │ ├── ConfigDef
│ │ │ │ │ │ ├── Directive.php
│ │ │ │ │ │ ├── DirectiveAlias.php
│ │ │ │ │ │ └── Namespace.php
│ │ │ │ │ ├── ConfigDef.php
│ │ │ │ │ ├── ConfigSchema
│ │ │ │ │ │ ├── Builder
│ │ │ │ │ │ │ ├── ConfigSchema.php
│ │ │ │ │ │ │ └── Xml.php
│ │ │ │ │ │ ├── Exception.php
│ │ │ │ │ │ ├── Interchange
│ │ │ │ │ │ │ ├── Directive.php
│ │ │ │ │ │ │ ├── Id.php
│ │ │ │ │ │ │ └── Namespace.php
│ │ │ │ │ │ ├── Interchange.php
│ │ │ │ │ │ ├── InterchangeBuilder.php
│ │ │ │ │ │ ├── Validator.php
│ │ │ │ │ │ ├── ValidatorAtom.php
│ │ │ │ │ │ ├── schema
│ │ │ │ │ │ │ ├── Attr.AllowedFrameTargets.txt
│ │ │ │ │ │ │ ├── Attr.AllowedRel.txt
│ │ │ │ │ │ │ ├── Attr.AllowedRev.txt
│ │ │ │ │ │ │ ├── Attr.DefaultImageAlt.txt
│ │ │ │ │ │ │ ├── Attr.DefaultInvalidImage.txt
│ │ │ │ │ │ │ ├── Attr.DefaultInvalidImageAlt.txt
│ │ │ │ │ │ │ ├── Attr.DefaultTextDir.txt
│ │ │ │ │ │ │ ├── Attr.EnableID.txt
│ │ │ │ │ │ │ ├── Attr.IDBlacklist.txt
│ │ │ │ │ │ │ ├── Attr.IDBlacklistRegexp.txt
│ │ │ │ │ │ │ ├── Attr.IDPrefix.txt
│ │ │ │ │ │ │ ├── Attr.IDPrefixLocal.txt
│ │ │ │ │ │ │ ├── Attr.txt
│ │ │ │ │ │ │ ├── AutoFormat.AutoParagraph.txt
│ │ │ │ │ │ │ ├── AutoFormat.Custom.txt
│ │ │ │ │ │ │ ├── AutoFormat.DisplayLinkURI.txt
│ │ │ │ │ │ │ ├── AutoFormat.Linkify.txt
│ │ │ │ │ │ │ ├── AutoFormat.PurifierLinkify.txt
│ │ │ │ │ │ │ ├── AutoFormat.RemoveEmpty.txt
│ │ │ │ │ │ │ ├── AutoFormat.txt
│ │ │ │ │ │ │ ├── AutoFormatParam.PurifierLinkifyDocURL.txt
│ │ │ │ │ │ │ ├── AutoFormatParam.txt
│ │ │ │ │ │ │ ├── CSS.AllowImportant.txt
│ │ │ │ │ │ │ ├── CSS.AllowTricky.txt
│ │ │ │ │ │ │ ├── CSS.AllowedProperties.txt
│ │ │ │ │ │ │ ├── CSS.DefinitionRev.txt
│ │ │ │ │ │ │ ├── CSS.MaxImgLength.txt
│ │ │ │ │ │ │ ├── CSS.Proprietary.txt
│ │ │ │ │ │ │ ├── CSS.txt
│ │ │ │ │ │ │ ├── Cache.DefinitionImpl.txt
│ │ │ │ │ │ │ ├── Cache.SerializerPath.txt
│ │ │ │ │ │ │ ├── Cache.txt
│ │ │ │ │ │ │ ├── Core.AggressivelyFixLt.txt
│ │ │ │ │ │ │ ├── Core.CollectErrors.txt
│ │ │ │ │ │ │ ├── Core.ColorKeywords.txt
│ │ │ │ │ │ │ ├── Core.ConvertDocumentToFragment.txt
│ │ │ │ │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt
│ │ │ │ │ │ │ ├── Core.Encoding.txt
│ │ │ │ │ │ │ ├── Core.EscapeInvalidChildren.txt
│ │ │ │ │ │ │ ├── Core.EscapeInvalidTags.txt
│ │ │ │ │ │ │ ├── Core.EscapeNonASCIICharacters.txt
│ │ │ │ │ │ │ ├── Core.HiddenElements.txt
│ │ │ │ │ │ │ ├── Core.Language.txt
│ │ │ │ │ │ │ ├── Core.LexerImpl.txt
│ │ │ │ │ │ │ ├── Core.MaintainLineNumbers.txt
│ │ │ │ │ │ │ ├── Core.RemoveInvalidImg.txt
│ │ │ │ │ │ │ ├── Core.RemoveScriptContents.txt
│ │ │ │ │ │ │ ├── Core.txt
│ │ │ │ │ │ │ ├── Filter.Custom.txt
│ │ │ │ │ │ │ ├── Filter.ExtractStyleBlocks.txt
│ │ │ │ │ │ │ ├── Filter.YouTube.txt
│ │ │ │ │ │ │ ├── Filter.txt
│ │ │ │ │ │ │ ├── FilterParam.ExtractStyleBlocksEscaping.txt
│ │ │ │ │ │ │ ├── FilterParam.ExtractStyleBlocksScope.txt
│ │ │ │ │ │ │ ├── FilterParam.ExtractStyleBlocksTidyImpl.txt
│ │ │ │ │ │ │ ├── FilterParam.txt
│ │ │ │ │ │ │ ├── HTML.Allowed.txt
│ │ │ │ │ │ │ ├── HTML.AllowedAttributes.txt
│ │ │ │ │ │ │ ├── HTML.AllowedElements.txt
│ │ │ │ │ │ │ ├── HTML.AllowedModules.txt
│ │ │ │ │ │ │ ├── HTML.BlockWrapper.txt
│ │ │ │ │ │ │ ├── HTML.CoreModules.txt
│ │ │ │ │ │ │ ├── HTML.CustomDoctype.txt
│ │ │ │ │ │ │ ├── HTML.DefinitionID.txt
│ │ │ │ │ │ │ ├── HTML.DefinitionRev.txt
│ │ │ │ │ │ │ ├── HTML.Doctype.txt
│ │ │ │ │ │ │ ├── HTML.ForbiddenAttributes.txt
│ │ │ │ │ │ │ ├── HTML.ForbiddenElements.txt
│ │ │ │ │ │ │ ├── HTML.MaxImgLength.txt
│ │ │ │ │ │ │ ├── HTML.Parent.txt
│ │ │ │ │ │ │ ├── HTML.Proprietary.txt
│ │ │ │ │ │ │ ├── HTML.SafeEmbed.txt
│ │ │ │ │ │ │ ├── HTML.SafeObject.txt
│ │ │ │ │ │ │ ├── HTML.Strict.txt
│ │ │ │ │ │ │ ├── HTML.TidyAdd.txt
│ │ │ │ │ │ │ ├── HTML.TidyLevel.txt
│ │ │ │ │ │ │ ├── HTML.TidyRemove.txt
│ │ │ │ │ │ │ ├── HTML.Trusted.txt
│ │ │ │ │ │ │ ├── HTML.XHTML.txt
│ │ │ │ │ │ │ ├── HTML.txt
│ │ │ │ │ │ │ ├── Output.CommentScriptContents.txt
│ │ │ │ │ │ │ ├── Output.Newline.txt
│ │ │ │ │ │ │ ├── Output.SortAttr.txt
│ │ │ │ │ │ │ ├── Output.TidyFormat.txt
│ │ │ │ │ │ │ ├── Output.txt
│ │ │ │ │ │ │ ├── Test.ForceNoIconv.txt
│ │ │ │ │ │ │ ├── Test.txt
│ │ │ │ │ │ │ ├── URI.AllowedSchemes.txt
│ │ │ │ │ │ │ ├── URI.Base.txt
│ │ │ │ │ │ │ ├── URI.DefaultScheme.txt
│ │ │ │ │ │ │ ├── URI.DefinitionID.txt
│ │ │ │ │ │ │ ├── URI.DefinitionRev.txt
│ │ │ │ │ │ │ ├── URI.Disable.txt
│ │ │ │ │ │ │ ├── URI.DisableExternal.txt
│ │ │ │ │ │ │ ├── URI.DisableExternalResources.txt
│ │ │ │ │ │ │ ├── URI.DisableResources.txt
│ │ │ │ │ │ │ ├── URI.Host.txt
│ │ │ │ │ │ │ ├── URI.HostBlacklist.txt
│ │ │ │ │ │ │ ├── URI.MakeAbsolute.txt
│ │ │ │ │ │ │ ├── URI.Munge.txt
│ │ │ │ │ │ │ ├── URI.MungeResources.txt
│ │ │ │ │ │ │ ├── URI.MungeSecretKey.txt
│ │ │ │ │ │ │ ├── URI.OverrideAllowedSchemes.txt
│ │ │ │ │ │ │ ├── URI.txt
│ │ │ │ │ │ │ └── info.ini
│ │ │ │ │ │ └── schema.ser
│ │ │ │ │ ├── ConfigSchema.php
│ │ │ │ │ ├── ContentSets.php
│ │ │ │ │ ├── Context.php
│ │ │ │ │ ├── Definition.php
│ │ │ │ │ ├── DefinitionCache
│ │ │ │ │ │ ├── Decorator
│ │ │ │ │ │ │ ├── Cleanup.php
│ │ │ │ │ │ │ ├── Memory.php
│ │ │ │ │ │ │ └── Template.php.in
│ │ │ │ │ │ ├── Decorator.php
│ │ │ │ │ │ ├── Null.php
│ │ │ │ │ │ ├── Serializer
│ │ │ │ │ │ │ └── README
│ │ │ │ │ │ └── Serializer.php
│ │ │ │ │ ├── DefinitionCache.php
│ │ │ │ │ ├── DefinitionCacheFactory.php
│ │ │ │ │ ├── Doctype.php
│ │ │ │ │ ├── DoctypeRegistry.php
│ │ │ │ │ ├── ElementDef.php
│ │ │ │ │ ├── Encoder.php
│ │ │ │ │ ├── EntityLookup
│ │ │ │ │ │ └── entities.ser
│ │ │ │ │ ├── EntityLookup.php
│ │ │ │ │ ├── EntityParser.php
│ │ │ │ │ ├── ErrorCollector.php
│ │ │ │ │ ├── ErrorStruct.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── Filter
│ │ │ │ │ │ ├── ExtractStyleBlocks.php
│ │ │ │ │ │ └── YouTube.php
│ │ │ │ │ ├── Filter.php
│ │ │ │ │ ├── Generator.php
│ │ │ │ │ ├── HTMLDefinition.php
│ │ │ │ │ ├── HTMLModule
│ │ │ │ │ │ ├── Bdo.php
│ │ │ │ │ │ ├── CommonAttributes.php
│ │ │ │ │ │ ├── Edit.php
│ │ │ │ │ │ ├── Forms.php
│ │ │ │ │ │ ├── Hypertext.php
│ │ │ │ │ │ ├── Image.php
│ │ │ │ │ │ ├── Legacy.php
│ │ │ │ │ │ ├── List.php
│ │ │ │ │ │ ├── Name.php
│ │ │ │ │ │ ├── NonXMLCommonAttributes.php
│ │ │ │ │ │ ├── Object.php
│ │ │ │ │ │ ├── Presentation.php
│ │ │ │ │ │ ├── Proprietary.php
│ │ │ │ │ │ ├── Ruby.php
│ │ │ │ │ │ ├── SafeEmbed.php
│ │ │ │ │ │ ├── SafeObject.php
│ │ │ │ │ │ ├── Scripting.php
│ │ │ │ │ │ ├── StyleAttribute.php
│ │ │ │ │ │ ├── Tables.php
│ │ │ │ │ │ ├── Target.php
│ │ │ │ │ │ ├── Text.php
│ │ │ │ │ │ ├── Tidy
│ │ │ │ │ │ │ ├── Name.php
│ │ │ │ │ │ │ ├── Proprietary.php
│ │ │ │ │ │ │ ├── Strict.php
│ │ │ │ │ │ │ ├── Transitional.php
│ │ │ │ │ │ │ ├── XHTML.php
│ │ │ │ │ │ │ └── XHTMLAndHTML4.php
│ │ │ │ │ │ ├── Tidy.php
│ │ │ │ │ │ └── XMLCommonAttributes.php
│ │ │ │ │ ├── HTMLModule.php
│ │ │ │ │ ├── HTMLModuleManager.php
│ │ │ │ │ ├── IDAccumulator.php
│ │ │ │ │ ├── Injector
│ │ │ │ │ │ ├── AutoParagraph.php
│ │ │ │ │ │ ├── DisplayLinkURI.php
│ │ │ │ │ │ ├── Linkify.php
│ │ │ │ │ │ ├── PurifierLinkify.php
│ │ │ │ │ │ ├── RemoveEmpty.php
│ │ │ │ │ │ └── SafeObject.php
│ │ │ │ │ ├── Injector.php
│ │ │ │ │ ├── Language
│ │ │ │ │ │ ├── classes
│ │ │ │ │ │ │ └── en-x-test.php
│ │ │ │ │ │ └── messages
│ │ │ │ │ │ ├── en-x-test.php
│ │ │ │ │ │ ├── en-x-testmini.php
│ │ │ │ │ │ └── en.php
│ │ │ │ │ ├── Language.php
│ │ │ │ │ ├── LanguageFactory.php
│ │ │ │ │ ├── Length.php
│ │ │ │ │ ├── Lexer
│ │ │ │ │ │ ├── DOMLex.php
│ │ │ │ │ │ ├── DirectLex.php
│ │ │ │ │ │ ├── PEARSax3.php
│ │ │ │ │ │ └── PH5P.php
│ │ │ │ │ ├── Lexer.php
│ │ │ │ │ ├── PercentEncoder.php
│ │ │ │ │ ├── Printer
│ │ │ │ │ │ ├── CSSDefinition.php
│ │ │ │ │ │ ├── ConfigForm.css
│ │ │ │ │ │ ├── ConfigForm.js
│ │ │ │ │ │ ├── ConfigForm.php
│ │ │ │ │ │ └── HTMLDefinition.php
│ │ │ │ │ ├── Printer.php
│ │ │ │ │ ├── Strategy
│ │ │ │ │ │ ├── Composite.php
│ │ │ │ │ │ ├── Core.php
│ │ │ │ │ │ ├── FixNesting.php
│ │ │ │ │ │ ├── MakeWellFormed.php
│ │ │ │ │ │ ├── RemoveForeignElements.php
│ │ │ │ │ │ └── ValidateAttributes.php
│ │ │ │ │ ├── Strategy.php
│ │ │ │ │ ├── StringHash.php
│ │ │ │ │ ├── StringHashParser.php
│ │ │ │ │ ├── TagTransform
│ │ │ │ │ │ ├── Font.php
│ │ │ │ │ │ └── Simple.php
│ │ │ │ │ ├── TagTransform.php
│ │ │ │ │ ├── Token
│ │ │ │ │ │ ├── Comment.php
│ │ │ │ │ │ ├── Empty.php
│ │ │ │ │ │ ├── End.php
│ │ │ │ │ │ ├── Start.php
│ │ │ │ │ │ ├── Tag.php
│ │ │ │ │ │ └── Text.php
│ │ │ │ │ ├── Token.php
│ │ │ │ │ ├── TokenFactory.php
│ │ │ │ │ ├── URI.php
│ │ │ │ │ ├── URIDefinition.php
│ │ │ │ │ ├── URIFilter
│ │ │ │ │ │ ├── DisableExternal.php
│ │ │ │ │ │ ├── DisableExternalResources.php
│ │ │ │ │ │ ├── HostBlacklist.php
│ │ │ │ │ │ ├── MakeAbsolute.php
│ │ │ │ │ │ └── Munge.php
│ │ │ │ │ ├── URIFilter.php
│ │ │ │ │ ├── URIParser.php
│ │ │ │ │ ├── URIScheme
│ │ │ │ │ │ ├── ftp.php
│ │ │ │ │ │ ├── http.php
│ │ │ │ │ │ ├── https.php
│ │ │ │ │ │ ├── mailto.php
│ │ │ │ │ │ ├── news.php
│ │ │ │ │ │ └── nntp.php
│ │ │ │ │ ├── URIScheme.php
│ │ │ │ │ ├── URISchemeRegistry.php
│ │ │ │ │ ├── UnitConverter.php
│ │ │ │ │ ├── VarParser
│ │ │ │ │ │ ├── Flexible.php
│ │ │ │ │ │ └── Native.php
│ │ │ │ │ ├── VarParser.php
│ │ │ │ │ └── VarParserException.php
│ │ │ │ ├── HTMLPurifier.auto.php
│ │ │ │ ├── HTMLPurifier.autoload.php
│ │ │ │ ├── HTMLPurifier.func.php
│ │ │ │ ├── HTMLPurifier.includes.php
│ │ │ │ ├── HTMLPurifier.kses.php
│ │ │ │ ├── HTMLPurifier.path.php
│ │ │ │ ├── HTMLPurifier.php
│ │ │ │ └── HTMLPurifier.safe-includes.php
│ │ │ └── tests
│ │ │ ├── IDS
│ │ │ │ ├── CachingTest.php
│ │ │ │ ├── EventTest.php
│ │ │ │ ├── ExceptionTest.php
│ │ │ │ ├── FilterTest.php
│ │ │ │ ├── InitTest.php
│ │ │ │ ├── MonitorTest.php
│ │ │ │ └── ReportTest.php
│ │ │ ├── allTests.php
│ │ │ └── coverage
│ │ │ ├── Caching.html
│ │ │ ├── Caching_Factory.php.html
│ │ │ ├── Caching_File.php.html
│ │ │ ├── Caching_Interface.php.html
│ │ │ ├── Caching_Session.php.html
│ │ │ ├── Converter.php.html
│ │ │ ├── Event.php.html
│ │ │ ├── Filter.html
│ │ │ ├── Filter.php.html
│ │ │ ├── Filter_Storage.php.html
│ │ │ ├── Init.php.html
│ │ │ ├── Monitor.php.html
│ │ │ ├── Report.php.html
│ │ │ ├── butter.png
│ │ │ ├── chameleon.png
│ │ │ ├── close12_1.gif
│ │ │ ├── container-min.js
│ │ │ ├── container.css
│ │ │ ├── glass.png
│ │ │ ├── index.html
│ │ │ ├── scarlet_red.png
│ │ │ ├── snow.png
│ │ │ ├── style.css
│ │ │ └── yahoo-dom-event.js
│ │ └── recaptcha
│ │ └── recaptchalib.php
│ ├── favicon.ico
│ ├── hackable
│ │ ├── flags
│ │ │ └── fi.php
│ │ ├── uploads
│ │ │ └── dvwa_email.png
│ │ └── users
│ │ ├── 1337.jpg
│ │ ├── admin.jpg
│ │ ├── gordonb.jpg
│ │ ├── pablo.jpg
│ │ └── smithy.jpg
│ ├── ids_log.php
│ ├── index.php
│ ├── instructions.php
│ ├── login.php
│ ├── logout.php
│ ├── php.ini
│ ├── phpinfo.php
│ ├── robots.txt
│ ├── security.php
│ ├── setup.php
│ └── vulnerabilities
│ ├── brute
│ │ ├── help
│ │ │ └── help.php
│ │ ├── index.php
│ │ └── source
│ │ ├── high.php
│ │ ├── impossible.php
│ │ ├── low.php
│ │ └── medium.php
│ ├── captcha
│ │ ├── help
│ │ │ └── help.php
│ │ ├── index.php
│ │ └── source
│ │ ├── high.php
│ │ ├── impossible.php
│ │ ├── low.php
│ │ └── medium.php
│ ├── csp
│ │ ├── help
│ │ │ └── help.php
│ │ ├── index.php
│ │ └── source
│ │ ├── high.js
│ │ ├── high.php
│ │ ├── impossible.js
│ │ ├── impossible.php
│ │ ├── jsonp.php
│ │ ├── jsonp_impossible.php
│ │ ├── low.php
│ │ └── medium.php
│ ├── csrf
│ │ ├── help
│ │ │ └── help.php
│ │ ├── index.php
│ │ └── source
│ │ ├── high.php
│ │ ├── impossible.php
│ │ ├── low.php
│ │ └── medium.php
│ ├── exec
│ │ ├── help
│ │ │ └── help.php
│ │ ├── index.php
│ │ └── source
│ │ ├── high.php
│ │ ├── impossible.php
│ │ ├── low.php
│ │ └── medium.php
│ ├── fi
│ │ ├── file1.php
│ │ ├── file2.php
│ │ ├── file3.php
│ │ ├── file4.php
│ │ ├── help
│ │ │ └── help.php
│ │ ├── include.php
│ │ ├── index.php
│ │ └── source
│ │ ├── high.php
│ │ ├── impossible.php
│ │ ├── low.php
│ │ └── medium.php
│ ├── javascript
│ │ ├── help
│ │ │ └── help.php
│ │ ├── index.php
│ │ └── source
│ │ ├── high.js
│ │ ├── high.php
│ │ ├── high_unobfuscated.js
│ │ ├── impossible.php
│ │ ├── low.php
│ │ ├── medium.js
│ │ └── medium.php
│ ├── sqli
│ │ ├── help
│ │ │ └── help.php
│ │ ├── index.php
│ │ ├── session-input.php
│ │ └── source
│ │ ├── high.php
│ │ ├── impossible.php
│ │ ├── low.php
│ │ └── medium.php
│ ├── sqli_blind
│ │ ├── cookie-input.php
│ │ ├── help
│ │ │ └── help.php
│ │ ├── index.php
│ │ └── source
│ │ ├── high.php
│ │ ├── impossible.php
│ │ ├── low.php
│ │ └── medium.php
│ ├── upload
│ │ ├── help
│ │ │ └── help.php
│ │ ├── index.php
│ │ └── source
│ │ ├── high.php
│ │ ├── impossible.php
│ │ ├── low.php
│ │ └── medium.php
│ ├── view_help.php
│ ├── view_source.php
│ ├── view_source_all.php
│ ├── weak_id
│ │ ├── help
│ │ │ └── help.php
│ │ ├── index.php
│ │ └── source
│ │ ├── high.php
│ │ ├── impossible.php
│ │ ├── low.php
│ │ └── medium.php
│ ├── xss_d
│ │ ├── help
│ │ │ └── help.php
│ │ ├── index.php
│ │ └── source
│ │ ├── high.php
│ │ ├── impossible.php
│ │ ├── low.php
│ │ └── medium.php
│ ├── xss_r
│ │ ├── help
│ │ │ └── help.php
│ │ ├── index.php
│ │ └── source
│ │ ├── high.php
│ │ ├── impossible.php
│ │ ├── low.php
│ │ └── medium.php
│ └── xss_s
│ ├── help
│ │ └── help.php
│ ├── index.php
│ └── source
│ ├── high.php
│ ├── impossible.php
│ ├── low.php
│ └── medium.php
└── 5t6t网_DVWA-master.rar
110 directories, 582 files
评论