├── .dockerignore
├── .gitignore
├── Dockerfile
├── README.md
├── apache2config
├── apache2.conf
├── conf.d
│ ├── charset
│ ├── localized-error-pages
│ ├── other-vhosts-access-log
│ └── security
├── envvars
├── httpd.conf
├── magic
├── mods-available
│ ├── actions.conf
│ ├── actions.load
│ ├── alias.conf
│ ├── alias.load
│ ├── asis.load
│ ├── auth_basic.load
│ ├── auth_digest.load
│ ├── authn_alias.load
│ ├── authn_anon.load
│ ├── authn_dbd.load
│ ├── authn_dbm.load
│ ├── authn_default.load
│ ├── authn_file.load
│ ├── authnz_ldap.load
│ ├── authz_dbm.load
│ ├── authz_default.load
│ ├── authz_groupfile.load
│ ├── authz_host.load
│ ├── authz_owner.load
│ ├── authz_user.load
│ ├── autoindex.conf
│ ├── autoindex.load
│ ├── cache.load
│ ├── cern_meta.load
│ ├── cgi.load
│ ├── cgid.conf
│ ├── cgid.load
│ ├── charset_lite.load
│ ├── dav.load
│ ├── dav_fs.conf
│ ├── dav_fs.load
│ ├── dav_lock.load
│ ├── dbd.load
│ ├── deflate.conf
│ ├── deflate.load
│ ├── dir.conf
│ ├── dir.load
│ ├── disk_cache.conf
│ ├── disk_cache.load
│ ├── dump_io.load
│ ├── env.load
│ ├── expires.load
│ ├── ext_filter.load
│ ├── file_cache.load
│ ├── filter.load
│ ├── headers.load
│ ├── ident.load
│ ├── imagemap.load
│ ├── include.load
│ ├── info.conf
│ ├── info.load
│ ├── jk.conf
│ ├── jk.load
│ ├── ldap.conf
│ ├── ldap.load
│ ├── log_forensic.load
│ ├── mem_cache.conf
│ ├── mem_cache.load
│ ├── mime.conf
│ ├── mime.load
│ ├── mime_magic.conf
│ ├── mime_magic.load
│ ├── mod-security.conf
│ ├── mod-security.load
│ ├── negotiation.conf
│ ├── negotiation.load
│ ├── php5.conf
│ ├── php5.load
│ ├── proxy.conf
│ ├── proxy.load
│ ├── proxy_ajp.load
│ ├── proxy_balancer.conf
│ ├── proxy_balancer.load
│ ├── proxy_connect.load
│ ├── proxy_ftp.conf
│ ├── proxy_ftp.load
│ ├── proxy_http.load
│ ├── proxy_scgi.load
│ ├── python.load
│ ├── reqtimeout.conf
│ ├── reqtimeout.load
│ ├── rewrite.load
│ ├── setenvif.conf
│ ├── setenvif.load
│ ├── speling.load
│ ├── ssl.conf
│ ├── ssl.load
│ ├── status.conf
│ ├── status.load
│ ├── substitute.load
│ ├── suexec.load
│ ├── unique_id.load
│ ├── userdir.conf
│ ├── userdir.load
│ ├── usertrack.load
│ ├── version.load
│ └── vhost_alias.load
├── mods-enabled
│ ├── alias.conf
│ ├── alias.load
│ ├── auth_basic.load
│ ├── authn_file.load
│ ├── authz_default.load
│ ├── authz_groupfile.load
│ ├── authz_host.load
│ ├── authz_user.load
│ ├── autoindex.conf
│ ├── autoindex.load
│ ├── cgi.load
│ ├── dav.load
│ ├── dav_fs.conf
│ ├── dav_fs.load
│ ├── deflate.conf
│ ├── deflate.load
│ ├── dir.conf
│ ├── dir.load
│ ├── env.load
│ ├── include.load
│ ├── jk.conf
│ ├── jk.load
│ ├── mime.conf
│ ├── mime.load
│ ├── mod-security.conf
│ ├── mod-security.load
│ ├── negotiation.conf
│ ├── negotiation.load
│ ├── php5.conf
│ ├── php5.load
│ ├── python.load
│ ├── reqtimeout.conf
│ ├── reqtimeout.load
│ ├── rewrite.load
│ ├── setenvif.conf
│ ├── setenvif.load
│ ├── ssl.conf
│ ├── ssl.load
│ ├── status.conf
│ ├── status.load
│ └── unique_id.load
├── ports.conf
├── sites-available
│ ├── 000-default
│ ├── intranet
│ ├── modsecurity
│ ├── moth
│ ├── moth-ssl
│ ├── wivet
│ └── wordpress
└── sites-enabled
│ ├── 000-default
│ ├── intranet
│ ├── modsecurity
│ ├── moth
│ ├── moth-ssl
│ ├── wivet
│ └── wordpress
├── docker
├── my.cnf
├── mysqld_charset.cnf
├── run
└── supervisord.conf
└── webroot
├── .htaccess
├── default
└── index.php
├── intranet
└── index.html
└── moth
├── _vti_inf.html
├── clean_unittest_generated_data.sh
├── crossdomain.xml
├── favicon.ico
├── header.php
├── hidden
├── index.html
└── super
│ └── index.html
├── icons
└── readme.txt
├── images
├── bonsai_tiny_75x75.png
└── w3af.png
├── index.php
├── invoker
└── JMXInvokerServlet
├── mod_sec_log.php
├── mod_security
├── php-ids
├── phpids-0.5.4
├── LICENSE
├── build.xml
├── docs
│ ├── examples
│ │ ├── cakephp
│ │ │ ├── README
│ │ │ ├── ids.php
│ │ │ ├── intrusion.php
│ │ │ └── intrusions.sql
│ │ └── 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.php
│ │ ├── Filter
│ │ └── Storage.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.auto.php
│ │ ├── HTMLPurifier.autoload.php
│ │ ├── HTMLPurifier.func.php
│ │ ├── HTMLPurifier.includes.php
│ │ ├── HTMLPurifier.kses.php
│ │ ├── HTMLPurifier.path.php
│ │ ├── HTMLPurifier.php
│ │ ├── HTMLPurifier.safe-includes.php
│ │ └── HTMLPurifier
│ │ ├── AttrCollections.php
│ │ ├── AttrDef.php
│ │ ├── AttrDef
│ │ ├── CSS.php
│ │ ├── 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
│ │ ├── 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.php
│ │ └── URI
│ │ │ ├── Email.php
│ │ │ ├── Email
│ │ │ └── SimpleCheck.php
│ │ │ ├── Host.php
│ │ │ ├── IPv4.php
│ │ │ └── IPv6.php
│ │ ├── AttrTransform.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
│ │ ├── AttrTypes.php
│ │ ├── AttrValidator.php
│ │ ├── Bootstrap.php
│ │ ├── CSSDefinition.php
│ │ ├── ChildDef.php
│ │ ├── ChildDef
│ │ ├── Chameleon.php
│ │ ├── Custom.php
│ │ ├── Empty.php
│ │ ├── Optional.php
│ │ ├── Required.php
│ │ ├── StrictBlockquote.php
│ │ └── Table.php
│ │ ├── Config.php
│ │ ├── ConfigDef.php
│ │ ├── ConfigDef
│ │ ├── Directive.php
│ │ ├── DirectiveAlias.php
│ │ └── Namespace.php
│ │ ├── ConfigSchema.php
│ │ ├── ConfigSchema
│ │ ├── Builder
│ │ │ ├── ConfigSchema.php
│ │ │ └── Xml.php
│ │ ├── Exception.php
│ │ ├── Interchange.php
│ │ ├── Interchange
│ │ │ ├── Directive.php
│ │ │ ├── Id.php
│ │ │ └── Namespace.php
│ │ ├── InterchangeBuilder.php
│ │ ├── Validator.php
│ │ ├── ValidatorAtom.php
│ │ ├── schema.ser
│ │ └── 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
│ │ ├── ContentSets.php
│ │ ├── Context.php
│ │ ├── Definition.php
│ │ ├── DefinitionCache.php
│ │ ├── DefinitionCache
│ │ ├── Decorator.php
│ │ ├── Decorator
│ │ │ ├── Cleanup.php
│ │ │ ├── Memory.php
│ │ │ └── Template.php.in
│ │ ├── Null.php
│ │ ├── Serializer.php
│ │ └── Serializer
│ │ │ └── README
│ │ ├── DefinitionCacheFactory.php
│ │ ├── Doctype.php
│ │ ├── DoctypeRegistry.php
│ │ ├── ElementDef.php
│ │ ├── Encoder.php
│ │ ├── EntityLookup.php
│ │ ├── EntityLookup
│ │ └── entities.ser
│ │ ├── EntityParser.php
│ │ ├── ErrorCollector.php
│ │ ├── ErrorStruct.php
│ │ ├── Exception.php
│ │ ├── Filter.php
│ │ ├── Filter
│ │ ├── ExtractStyleBlocks.php
│ │ └── YouTube.php
│ │ ├── Generator.php
│ │ ├── HTMLDefinition.php
│ │ ├── HTMLModule.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.php
│ │ ├── Tidy
│ │ │ ├── Name.php
│ │ │ ├── Proprietary.php
│ │ │ ├── Strict.php
│ │ │ ├── Transitional.php
│ │ │ ├── XHTML.php
│ │ │ └── XHTMLAndHTML4.php
│ │ └── XMLCommonAttributes.php
│ │ ├── HTMLModuleManager.php
│ │ ├── IDAccumulator.php
│ │ ├── Injector.php
│ │ ├── Injector
│ │ ├── AutoParagraph.php
│ │ ├── DisplayLinkURI.php
│ │ ├── Linkify.php
│ │ ├── PurifierLinkify.php
│ │ ├── RemoveEmpty.php
│ │ └── SafeObject.php
│ │ ├── Language.php
│ │ ├── Language
│ │ ├── classes
│ │ │ └── en-x-test.php
│ │ └── messages
│ │ │ ├── en-x-test.php
│ │ │ ├── en-x-testmini.php
│ │ │ └── en.php
│ │ ├── LanguageFactory.php
│ │ ├── Length.php
│ │ ├── Lexer.php
│ │ ├── Lexer
│ │ ├── DOMLex.php
│ │ ├── DirectLex.php
│ │ ├── PEARSax3.php
│ │ └── PH5P.php
│ │ ├── PercentEncoder.php
│ │ ├── Printer.php
│ │ ├── Printer
│ │ ├── CSSDefinition.php
│ │ ├── ConfigForm.css
│ │ ├── ConfigForm.js
│ │ ├── ConfigForm.php
│ │ └── HTMLDefinition.php
│ │ ├── Strategy.php
│ │ ├── Strategy
│ │ ├── Composite.php
│ │ ├── Core.php
│ │ ├── FixNesting.php
│ │ ├── MakeWellFormed.php
│ │ ├── RemoveForeignElements.php
│ │ └── ValidateAttributes.php
│ │ ├── StringHash.php
│ │ ├── StringHashParser.php
│ │ ├── TagTransform.php
│ │ ├── TagTransform
│ │ ├── Font.php
│ │ └── Simple.php
│ │ ├── Token.php
│ │ ├── Token
│ │ ├── Comment.php
│ │ ├── Empty.php
│ │ ├── End.php
│ │ ├── Start.php
│ │ ├── Tag.php
│ │ └── Text.php
│ │ ├── TokenFactory.php
│ │ ├── URI.php
│ │ ├── URIDefinition.php
│ │ ├── URIFilter.php
│ │ ├── URIFilter
│ │ ├── DisableExternal.php
│ │ ├── DisableExternalResources.php
│ │ ├── HostBlacklist.php
│ │ ├── MakeAbsolute.php
│ │ └── Munge.php
│ │ ├── URIParser.php
│ │ ├── URIScheme.php
│ │ ├── URIScheme
│ │ ├── ftp.php
│ │ ├── http.php
│ │ ├── https.php
│ │ ├── mailto.php
│ │ ├── news.php
│ │ └── nntp.php
│ │ ├── URISchemeRegistry.php
│ │ ├── UnitConverter.php
│ │ ├── VarParser.php
│ │ ├── VarParser
│ │ ├── Flexible.php
│ │ └── Native.php
│ │ └── VarParserException.php
├── phpids.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
│ ├── lib.html
│ ├── lib_IDS.html
│ ├── lib_IDS_Caching.html
│ ├── lib_IDS_Caching_Factory.php.html
│ ├── lib_IDS_Caching_File.php.html
│ ├── lib_IDS_Caching_Interface.php.html
│ ├── lib_IDS_Caching_Session.php.html
│ ├── lib_IDS_Converter.php.html
│ ├── lib_IDS_Event.php.html
│ ├── lib_IDS_Filter.html
│ ├── lib_IDS_Filter.php.html
│ ├── lib_IDS_Filter_Storage.php.html
│ ├── lib_IDS_Init.php.html
│ ├── lib_IDS_Monitor.php.html
│ ├── lib_IDS_Report.php.html
│ ├── lib_IDS_vendors.html
│ ├── lib_IDS_vendors_htmlpurifier.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier.auto.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier.autoload.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrCollections.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_CSS.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_CSS.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_CSS_Background.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_CSS_BackgroundPosition.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_CSS_Border.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_CSS_Color.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_CSS_Composite.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_CSS_DenyElementDecorator.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_CSS_Font.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_CSS_FontFamily.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_CSS_ImportantDecorator.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_CSS_Length.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_CSS_ListStyle.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_CSS_Multiple.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_CSS_Number.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_CSS_Percentage.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_CSS_TextDecoration.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_CSS_URI.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_Enum.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_HTML.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_HTML_Bool.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_HTML_Color.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_HTML_FrameTarget.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_HTML_ID.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_HTML_Length.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_HTML_LinkTypes.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_HTML_MultiLength.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_HTML_Nmtokens.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_HTML_Pixels.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_Integer.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_Lang.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_Switch.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_Text.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_URI.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_URI.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_URI_Host.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_URI_IPv4.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrDef_URI_IPv6.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrTransform.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrTransform.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrTransform_BdoDir.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrTransform_BgColor.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrTransform_BoolToCSS.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrTransform_Border.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrTransform_EnumToCSS.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrTransform_ImgRequired.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrTransform_ImgSpace.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrTransform_Lang.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrTransform_Length.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrTransform_Name.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrTransform_ScriptRequired.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrTypes.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_AttrValidator.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Bootstrap.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_CSSDefinition.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_ChildDef.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_ChildDef.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_ChildDef_Chameleon.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_ChildDef_Empty.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_ChildDef_Optional.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_ChildDef_Required.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_ChildDef_Table.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Config.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_ConfigDef.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_ConfigDef.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_ConfigDef_Directive.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_ConfigDef_DirectiveAlias.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_ConfigSchema.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_ContentSets.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Context.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Definition.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_DefinitionCache.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_DefinitionCache.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_DefinitionCacheFactory.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_DefinitionCache_Decorator.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_DefinitionCache_Decorator.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_DefinitionCache_Decorator_Cleanup.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_DefinitionCache_Serializer.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Doctype.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_DoctypeRegistry.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_ElementDef.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Encoder.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_EntityLookup.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_EntityParser.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Generator.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLDefinition.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModuleManager.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_Bdo.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_CommonAttributes.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_Edit.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_Hypertext.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_Image.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_Legacy.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_List.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_NonXMLCommonAttributes.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_Object.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_Presentation.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_Scripting.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_StyleAttribute.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_Tables.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_Target.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_Text.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_Tidy.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_Tidy.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_Tidy_Proprietary.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_Tidy_Transitional.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_Tidy_XHTML.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_HTMLModule_XMLCommonAttributes.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_IDAccumulator.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Length.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Lexer.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Lexer.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Lexer_DOMLex.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_PercentEncoder.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Strategy.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Strategy.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Strategy_Composite.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Strategy_Core.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Strategy_FixNesting.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Strategy_MakeWellFormed.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Strategy_RemoveForeignElements.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Strategy_ValidateAttributes.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_TagTransform.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_TagTransform.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_TagTransform_Font.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_TagTransform_Simple.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Token.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Token.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_TokenFactory.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Token_Comment.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Token_Empty.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Token_End.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Token_Start.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Token_Tag.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_Token_Text.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_URI.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_URIDefinition.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_URIFilter.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_URIFilter.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_URIFilter_DisableExternal.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_URIFilter_DisableExternalResources.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_URIFilter_HostBlacklist.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_URIFilter_MakeAbsolute.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_URIParser.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_URIScheme.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_URIScheme.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_URISchemeRegistry.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_URIScheme_http.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_VarParser.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_VarParser.php.html
│ ├── lib_IDS_vendors_htmlpurifier_HTMLPurifier_VarParser_Flexible.php.html
│ ├── scarlet_red.png
│ ├── snow.png
│ ├── style.css
│ ├── tests.html
│ ├── tests_allTests.php.html
│ └── yahoo-dom-event.js
├── phpinfo.php
├── portal
└── page
├── python_test
└── test.py
├── robots.txt
├── setup
├── README
└── w3af_test.sql
├── show_source.php
├── sitemap.xml
├── urllist.txt
├── w3af
├── agent
│ └── agent.php
├── audit
│ ├── LDAP
│ │ ├── index.html
│ │ └── simple_ldap.php
│ ├── MX_injection
│ │ └── mxi.php
│ ├── blind_sql_injection
│ │ ├── bsqli_integer.php
│ │ ├── bsqli_string.php
│ │ ├── bsqli_string_rnd.php
│ │ ├── completely_bsqli_double.php
│ │ ├── completely_bsqli_integer.php
│ │ ├── completely_bsqli_single.php
│ │ ├── delay_random.php
│ │ ├── forms
│ │ │ ├── data_receptor.php
│ │ │ └── test_forms.html
│ │ ├── index.html
│ │ ├── random.php
│ │ ├── random_500_lines.php
│ │ ├── random_500_lines_static.php
│ │ ├── random_50_lines.php
│ │ ├── random_50_lines_static.php
│ │ ├── random_5_lines.php
│ │ └── random_5_lines_static.php
│ ├── buffer_overflow
│ │ └── index.php
│ ├── cgic
│ │ ├── .htaccess
│ │ ├── Makefile
│ │ ├── buffOverflow.c
│ │ ├── buffOverflow.cgi
│ │ ├── capture
│ │ ├── capture.c
│ │ ├── capture.cgi
│ │ ├── cgic.c
│ │ ├── cgic.h
│ │ ├── cgic.html
│ │ ├── cgictest.c
│ │ ├── cgictest.cgi
│ │ ├── formatString.c
│ │ ├── formatString.cgi
│ │ ├── libcgic.a
│ │ ├── license.txt
│ │ ├── readme.txt
│ │ └── support.txt
│ ├── cors
│ │ ├── cors_origin_1.php
│ │ ├── cors_origin_2.php
│ │ ├── cors_origin_3.php
│ │ ├── cors_origin_4.php
│ │ └── index.html
│ ├── csrf
│ │ ├── link-vote
│ │ │ ├── README.txt
│ │ │ ├── backend.json
│ │ │ ├── countlib.php
│ │ │ ├── footer.php
│ │ │ ├── header.php
│ │ │ ├── images
│ │ │ │ ├── avatar1.png
│ │ │ │ ├── avatar2.png
│ │ │ │ ├── clean.png
│ │ │ │ ├── green.png
│ │ │ │ └── logo.png
│ │ │ ├── index.php
│ │ │ └── vote.php
│ │ ├── referer-rnd
│ │ │ ├── buy.php
│ │ │ └── index.php
│ │ ├── referer
│ │ │ ├── buy.php
│ │ │ └── index.php
│ │ ├── referer_lib.php
│ │ ├── rnd_lib.php
│ │ ├── secure-no-replay-rnd
│ │ │ ├── buy.php
│ │ │ └── index.php
│ │ ├── secure-no-replay
│ │ │ ├── buy.php
│ │ │ └── index.php
│ │ ├── secure-replay-allowed-rnd
│ │ │ ├── buy.php
│ │ │ └── index.php
│ │ ├── secure-replay-allowed
│ │ │ ├── buy.php
│ │ │ └── index.php
│ │ ├── vulnerable-rnd
│ │ │ ├── buy.php
│ │ │ └── index.php
│ │ ├── vulnerable-token-ignored
│ │ │ ├── buy.php
│ │ │ └── index.php
│ │ └── vulnerable
│ │ │ ├── buy.php
│ │ │ └── index.php
│ ├── dav
│ │ ├── .gitignore
│ │ ├── no-privileges
│ │ │ └── .gitignore
│ │ └── write-all
│ │ │ └── .gitignore
│ ├── eval
│ │ ├── .htaccess
│ │ ├── eval-blind.php
│ │ ├── eval.php
│ │ ├── eval.pl
│ │ ├── exec.py
│ │ └── index.html
│ ├── file_upload
│ │ ├── index.html
│ │ ├── uploader.php
│ │ └── uploads
│ │ │ └── .gitignore
│ ├── format_string
│ │ ├── format_string.php
│ │ └── index.html
│ ├── global_redirect
│ │ ├── 302-filtered.php
│ │ ├── 302.php
│ │ ├── index.html
│ │ ├── java.php
│ │ ├── meta.php
│ │ ├── refresh-header.php
│ │ └── test-xss.php
│ ├── hpp
│ │ ├── election.php
│ │ ├── footer.php
│ │ ├── header.php
│ │ ├── html5reset.css
│ │ ├── html5simple.css
│ │ ├── index.php
│ │ ├── self_url.php
│ │ ├── vote-log.php
│ │ └── vote.php
│ ├── htaccess_methods
│ │ ├── index.html
│ │ └── restricted
│ │ │ └── index.php
│ ├── index.html
│ ├── local_file_inclusion
│ │ ├── false_positive.php
│ │ ├── includes
│ │ │ └── index.html
│ │ ├── index.html
│ │ ├── index2.html
│ │ ├── lfi_1.php
│ │ ├── lfi_2.php
│ │ └── trivial_lfi.php
│ ├── local_file_read
│ │ ├── local_file_read.php
│ │ └── section.txt
│ ├── mailer
│ │ ├── dataReceptor.php
│ │ └── index.html
│ ├── os_commanding
│ │ ├── blind_osc.php
│ │ ├── index.html
│ │ ├── param_osc.php
│ │ ├── passthru.php
│ │ ├── simple_osc.php
│ │ ├── vulnerable.php
│ │ └── vulnerable2.php
│ ├── phishing_vector
│ │ ├── frame_phishing.php
│ │ ├── http_blacklist_phishing.php
│ │ ├── iframe_phishing.php
│ │ └── index.html
│ ├── preg_replace
│ │ ├── index.html
│ │ ├── preg_all_regex.php
│ │ └── preg_section_regex.php
│ ├── response_splitting
│ │ ├── index.html
│ │ ├── response_splitting.asp
│ │ ├── response_splitting.php
│ │ └── response_splitting_err.php
│ ├── rfi
│ │ ├── section.php
│ │ ├── toBeIncluded.txt
│ │ └── vulnerable.php
│ ├── sql_injection
│ │ ├── index.html
│ │ ├── recreate_tables.php
│ │ ├── select
│ │ │ ├── form_sql_injection.html
│ │ │ ├── form_sql_injection.php
│ │ │ ├── sql_injection_integer.php
│ │ │ ├── sql_injection_no_results.php
│ │ │ ├── sql_injection_string.php
│ │ │ └── sql_injection_table.php
│ │ └── sql_injection_false_positive.php
│ ├── ssi
│ │ ├── date.shtml
│ │ ├── index.html
│ │ ├── messages.shtml
│ │ ├── ssi-lfr.php
│ │ └── view-messages.shtml
│ ├── xpath
│ │ ├── funcs.php
│ │ ├── index.html
│ │ ├── xpath-attr-double.php
│ │ ├── xpath-attr-single.php
│ │ ├── xpath-echo.php
│ │ ├── xpath-empty.php
│ │ ├── xpath-or.php
│ │ ├── xpath-random500.php
│ │ ├── xpath-tag.php
│ │ └── xpath.xml
│ ├── xss
│ │ ├── 302
│ │ │ ├── 302.php
│ │ │ ├── index.html
│ │ │ └── printer.php
│ │ ├── .htaccess
│ │ ├── data_receptor.php
│ │ ├── data_receptor2.php
│ │ ├── data_receptor3.php
│ │ ├── index.html
│ │ ├── no_tag_xss.php
│ │ ├── repeated_params
│ │ │ ├── index.php
│ │ │ ├── qs_repeat.php
│ │ │ └── qs_repeat_all.php
│ │ ├── security-4ad0fd86e8.php
│ │ ├── simple_xss.php
│ │ ├── simple_xss_no_js.php
│ │ ├── simple_xss_no_quotes.php
│ │ ├── simple_xss_no_script.php
│ │ ├── simple_xss_no_script_2.php
│ │ ├── stored
│ │ │ ├── data.txt
│ │ │ ├── index.html
│ │ │ ├── reader.php
│ │ │ └── writer.php
│ │ ├── test-forms.html
│ │ ├── test-forms2.html
│ │ ├── test-forms3.html
│ │ ├── xss_filter.php
│ │ ├── xss_filter_2.php
│ │ ├── xss_filter_3.php
│ │ ├── xss_filter_4.php
│ │ ├── xss_filter_5.php
│ │ ├── xss_filter_6.php
│ │ ├── xss_filter_7.php
│ │ ├── xss_with_safe_csp.php
│ │ └── xss_with_weak_csp.php
│ └── xxe
│ │ ├── test.xml
│ │ └── xxe-basic.php
├── auth
│ ├── detailed
│ │ ├── auth.php
│ │ ├── config.php
│ │ ├── home.php
│ │ └── index.php
│ └── generic
│ │ ├── auth.php
│ │ ├── config.php
│ │ ├── home.php
│ │ └── index.php
├── bruteforce
│ ├── basic_auth
│ │ ├── easy_guess
│ │ │ ├── .htpasswd
│ │ │ ├── abc
│ │ │ │ ├── index.html
│ │ │ │ ├── index2.html
│ │ │ │ └── index3.html
│ │ │ └── index.html
│ │ └── impossible_guess
│ │ │ └── .htpasswd
│ ├── digest_auth
│ │ ├── easy_guess
│ │ │ ├── .htpasswd
│ │ │ ├── abc
│ │ │ │ ├── index.html
│ │ │ │ ├── index2.html
│ │ │ │ └── index3.html
│ │ │ └── index.html
│ │ └── impossible_guess
│ │ │ └── .htpasswd
│ ├── form_login
│ │ ├── hidden-section.html
│ │ ├── impossible_login.html
│ │ ├── impossible_login.php
│ │ ├── index.html
│ │ ├── login-password-only.php
│ │ ├── login.php
│ │ ├── only-password.html
│ │ ├── only-users.php
│ │ ├── with_get.html
│ │ └── with_post.html
│ └── index.html
├── core
│ ├── 404
│ │ ├── exists.html
│ │ ├── index.html
│ │ └── simple_test.html
│ ├── ajax
│ │ ├── GetCustomerData.php
│ │ ├── customers.sql
│ │ └── index.html
│ ├── base_false_positive
│ │ ├── delay_empty.php
│ │ ├── delay_empty_html.php
│ │ ├── delay_random.php
│ │ ├── delay_random_500_lines.php
│ │ ├── delay_random_500_lines_static.php
│ │ ├── delay_random_50_lines.php
│ │ ├── delay_random_50_lines_static.php
│ │ ├── delay_random_5_lines.php
│ │ ├── delay_random_5_lines_static.php
│ │ ├── empty.php
│ │ ├── empty_html.php
│ │ ├── footer.php
│ │ ├── header.php
│ │ ├── index.html
│ │ ├── lorem.php
│ │ ├── php_error.php
│ │ ├── php_error_2.php
│ │ ├── random.php
│ │ ├── random_1_byte.php
│ │ ├── random_500_lines.php
│ │ ├── random_500_lines_static.php
│ │ ├── random_50_lines.php
│ │ ├── random_50_lines_static.php
│ │ ├── random_5_lines.php
│ │ └── random_5_lines_static.php
│ ├── code_coverage
│ │ └── coverage.php
│ ├── cookieFuzzing
│ │ └── cf.php
│ ├── cookie_handler
│ │ ├── has-cookie.php
│ │ └── set-cookie.php
│ ├── echo
│ │ └── post.php
│ ├── encoding
│ │ ├── euc-jp
│ │ │ ├── index.php
│ │ │ ├── jap1.php
│ │ │ ├── jap2.php
│ │ │ ├── vúlnerable.php
│ │ │ ├── é.html
│ │ │ └── ファイルの.html
│ │ ├── index.html
│ │ ├── spaces
│ │ │ ├── foo.html
│ │ │ ├── form_input_plus_GET.html
│ │ │ ├── form_input_plus_POST.html
│ │ │ ├── index.html
│ │ │ ├── queryxpath.php
│ │ │ └── start end.html
│ │ ├── utf-8
│ │ │ ├── index.html
│ │ │ ├── russian.html
│ │ │ ├── vúlnerable.php
│ │ │ ├── é.html
│ │ │ └── 改.php
│ │ └── windows-1255
│ │ │ ├── heb1.php
│ │ │ ├── heb2.php
│ │ │ ├── index.html
│ │ │ ├── readme.txt
│ │ │ └── קובץ.html
│ ├── flash
│ │ └── login.swf
│ ├── fuzzFileContent
│ │ ├── index.html
│ │ └── uploader.php
│ ├── fuzzFileName
│ │ ├── .htaccess
│ │ └── f00.php
│ ├── fuzzURLParts
│ │ ├── .htaccess
│ │ ├── config.php
│ │ ├── index.php
│ │ ├── news.db
│ │ └── news.php
│ ├── header_fuzzing
│ │ ├── cookie_echo.php
│ │ └── index.php
│ ├── htmlParser
│ │ ├── abc.php
│ │ ├── input_out_of_form_1.html
│ │ ├── input_out_of_form_2.html
│ │ ├── input_out_of_form_3.html
│ │ ├── login.html
│ │ ├── login_files
│ │ │ ├── bg_encabe.jpg
│ │ │ ├── cenco_style.css
│ │ │ ├── logo_cenco.jpg
│ │ │ ├── logo_easy.jpg
│ │ │ ├── pie_bg_ctro.gif
│ │ │ ├── pie_esquina_der.gif
│ │ │ ├── pie_esquina_izq.gif
│ │ │ ├── solapa_der.gif
│ │ │ └── solapa_izq.gif
│ │ ├── repeated.html
│ │ ├── repeated.php
│ │ ├── simple_form.html
│ │ ├── test.html
│ │ ├── textarea.html
│ │ ├── textarea_out_of_form_1.html
│ │ ├── textarea_out_of_form_2.html
│ │ ├── textarea_out_of_form_3.html
│ │ ├── two_simple_forms.html
│ │ ├── urlRegex.html
│ │ └── urlRegexWorked.html
│ ├── huge_phantom
│ │ └── huge_phantom.php
│ ├── json
│ │ ├── GetCustomerData.php
│ │ ├── customers.sql
│ │ ├── index.html
│ │ └── prototype.js
│ ├── maxFileSize
│ │ └── maxFileSize.tgz
│ ├── mod404error
│ │ ├── .htaccess
│ │ ├── README
│ │ └── error.php
│ ├── ntlm_auth
│ │ ├── ntlm_v1
│ │ │ └── index.php
│ │ └── ntlm_v2
│ │ │ ├── index.php
│ │ │ └── ntlm.php
│ ├── pdfParser
│ │ ├── 1.pdf
│ │ └── pepe!.html
│ ├── repeated_parameter_names
│ │ └── repeated_parameter_names.php
│ ├── strange-html
│ │ ├── s3.html
│ │ ├── s4.html
│ │ └── strange-html.html
│ ├── time_analysis
│ │ └── analyze.php
│ ├── unicode_header
│ │ └── index.php
│ └── wml_parser
│ │ ├── form_sql_injection.php
│ │ ├── index.html
│ │ ├── link.wml
│ │ ├── sql_injection_string.php
│ │ ├── test_form.wml
│ │ └── test_form_2.wml
├── crawl
│ ├── ajax
│ │ ├── ajaxContact
│ │ │ ├── ajaxContact.zip
│ │ │ ├── img
│ │ │ │ └── loading.gif
│ │ │ ├── index.php
│ │ │ ├── js
│ │ │ │ ├── contact.js
│ │ │ │ ├── functionAddEvent.js
│ │ │ │ └── xmlHttp.js
│ │ │ └── scripts
│ │ │ │ ├── contact.php
│ │ │ │ └── xmlHttpRequest.php
│ │ ├── ajaxdomainsearch
│ │ │ ├── License.txt
│ │ │ ├── add_bookmark.js
│ │ │ ├── ajax-css.css
│ │ │ ├── ajaxdomainsearch1.1.zip
│ │ │ ├── ajaxforms.js
│ │ │ ├── config.inc.php
│ │ │ ├── favicon.ico
│ │ │ ├── get.php
│ │ │ ├── images
│ │ │ │ ├── ajax-logo-2.gif
│ │ │ │ ├── loading.gif
│ │ │ │ ├── logo.gif
│ │ │ │ └── strip.gif
│ │ │ └── index.htm
│ │ └── username-ajax.php
│ ├── backdoors
│ │ ├── cmd.php
│ │ └── f00.html
│ ├── content_negotiation
│ │ ├── backup.gz
│ │ ├── backup.php
│ │ ├── backup.tar
│ │ ├── backup.zip
│ │ └── index.html
│ ├── digit_sum
│ │ ├── index-2-1.html
│ │ ├── index-3-1.html
│ │ ├── index1.html
│ │ ├── index1.php
│ │ ├── index2.html
│ │ └── login.php
│ ├── dir_file_bruter
│ │ ├── iamhidden.txt
│ │ ├── index.html
│ │ ├── spameggs
│ │ │ └── portal
│ │ │ │ └── andres
│ │ │ │ └── index.html
│ │ └── test
│ │ │ └── index.html
│ ├── dot_listing
│ │ ├── .listing
│ │ ├── hidden.txt
│ │ └── index.html
│ ├── find_backdoor
│ │ └── c99shell.php
│ ├── find_captcha
│ │ ├── LICENSE.txt
│ │ ├── README.txt
│ │ ├── elephant.ttf
│ │ ├── gdfonts
│ │ │ ├── automatic.gdf
│ │ │ ├── bubblebath.gdf
│ │ │ ├── caveman.gdf
│ │ │ └── crass.gdf
│ │ ├── images
│ │ │ ├── audio_icon.gif
│ │ │ └── refresh.gif
│ │ ├── index.php
│ │ ├── securimage.php
│ │ ├── securimage_example.php
│ │ ├── securimage_play.php
│ │ └── securimage_show.php
│ ├── find_dvcs
│ │ ├── bzr
│ │ │ ├── .bzr
│ │ │ │ ├── README
│ │ │ │ ├── branch-format
│ │ │ │ ├── branch
│ │ │ │ │ ├── branch.conf
│ │ │ │ │ ├── format
│ │ │ │ │ ├── last-revision
│ │ │ │ │ └── tags
│ │ │ │ ├── checkout
│ │ │ │ │ ├── conflicts
│ │ │ │ │ ├── dirstate
│ │ │ │ │ ├── format
│ │ │ │ │ └── views
│ │ │ │ └── repository
│ │ │ │ │ ├── format
│ │ │ │ │ ├── indices
│ │ │ │ │ ├── e3ec3d0e9167012df466b6a43f45991e.cix
│ │ │ │ │ ├── e3ec3d0e9167012df466b6a43f45991e.iix
│ │ │ │ │ ├── e3ec3d0e9167012df466b6a43f45991e.rix
│ │ │ │ │ ├── e3ec3d0e9167012df466b6a43f45991e.six
│ │ │ │ │ └── e3ec3d0e9167012df466b6a43f45991e.tix
│ │ │ │ │ ├── pack-names
│ │ │ │ │ ├── packs
│ │ │ │ │ └── e3ec3d0e9167012df466b6a43f45991e.pack
│ │ │ │ │ └── shared-storage
│ │ │ └── index.html
│ │ ├── cvs
│ │ │ ├── CVS
│ │ │ │ ├── Entries
│ │ │ │ ├── Repository
│ │ │ │ └── Root
│ │ │ └── trunk
│ │ │ │ ├── CVS
│ │ │ │ ├── Entries
│ │ │ │ ├── Repository
│ │ │ │ └── Root
│ │ │ │ └── index.html
│ │ ├── git
│ │ │ └── index.html
│ │ ├── hg
│ │ │ ├── .hg
│ │ │ │ ├── 00changelog.i
│ │ │ │ ├── dirstate
│ │ │ │ ├── last-message.txt
│ │ │ │ ├── requires
│ │ │ │ ├── store
│ │ │ │ │ ├── 00changelog.i
│ │ │ │ │ ├── 00manifest.i
│ │ │ │ │ ├── data
│ │ │ │ │ │ └── index.html.i
│ │ │ │ │ ├── fncache
│ │ │ │ │ └── undo
│ │ │ │ ├── undo.bookmarks
│ │ │ │ ├── undo.branch
│ │ │ │ ├── undo.desc
│ │ │ │ └── undo.dirstate
│ │ │ └── index.html
│ │ ├── index.html
│ │ └── svn
│ │ │ └── index.html
│ ├── spider_man
│ │ ├── data_receptor_js.php
│ │ ├── index.html
│ │ └── javascriptredirect.html
│ ├── url_fuzzer.tgz
│ ├── url_fuzzer
│ │ ├── index.html
│ │ ├── index.html.zip
│ │ └── index.html~
│ ├── web20Spider
│ │ ├── 1.html
│ │ ├── 2-2.html
│ │ ├── 2.html
│ │ ├── 3.html
│ │ └── combinedhooks.js
│ ├── web_diff
│ │ ├── 123.html
│ │ ├── 456.html
│ │ ├── exclude.php
│ │ └── index.html
│ ├── web_spider
│ │ ├── 1.gz
│ │ ├── 2.tgz
│ │ ├── a
│ │ │ ├── b
│ │ │ │ ├── c
│ │ │ │ │ ├── d
│ │ │ │ │ │ └── index.html
│ │ │ │ │ └── index.html
│ │ │ │ └── index.html
│ │ │ └── index.html
│ │ ├── follow_links
│ │ │ ├── 1.html
│ │ │ ├── 2.html
│ │ │ ├── 3.html
│ │ │ ├── 4.html
│ │ │ ├── a b.html
│ │ │ ├── a.gif
│ │ │ ├── d f
│ │ │ │ └── index.html
│ │ │ └── index.html
│ │ ├── ignore_regex
│ │ │ ├── 1.html
│ │ │ ├── 2.html
│ │ │ ├── a.html
│ │ │ └── index.html
│ │ ├── index.html
│ │ ├── relativeRegex.html
│ │ └── variants
│ │ │ ├── article.php
│ │ │ └── index.php
│ ├── wordnet
│ │ ├── azure.html
│ │ ├── blue.html
│ │ ├── green.html
│ │ ├── hide.php
│ │ ├── index.html
│ │ ├── red.html
│ │ └── show.php
│ └── wsdl_finder
│ │ ├── lib
│ │ ├── class.nusoap_base.php
│ │ ├── class.soap_fault.php
│ │ ├── class.soap_parser.php
│ │ ├── class.soap_server.php
│ │ ├── class.soap_transport_http.php
│ │ ├── class.soap_val.php
│ │ ├── class.soapclient.php
│ │ ├── class.wsdl.php
│ │ ├── class.wsdlcache.php
│ │ ├── class.xmlschema.php
│ │ ├── nusoap.php
│ │ └── nusoapmime.php
│ │ ├── samples
│ │ ├── client1.php
│ │ ├── client2.php
│ │ ├── client3.php
│ │ ├── getfile1client.php
│ │ ├── getfile2client.php
│ │ ├── index.html
│ │ ├── mimeclient.php
│ │ ├── sslclient.php
│ │ ├── wsdlclient1.php
│ │ ├── wsdlclient10.php
│ │ ├── wsdlclient11.php
│ │ ├── wsdlclient12.php
│ │ ├── wsdlclient13.php
│ │ ├── wsdlclient14.php
│ │ ├── wsdlclient15.php
│ │ ├── wsdlclient2.php
│ │ ├── wsdlclient3.php
│ │ ├── wsdlclient3b.php
│ │ ├── wsdlclient3c.php
│ │ ├── wsdlclient4.php
│ │ ├── wsdlclient5.php
│ │ ├── wsdlclient6.php
│ │ ├── wsdlclient7.php
│ │ ├── wsdlclient8.php
│ │ └── wsdlclient9.php
│ │ ├── web_service_client.php
│ │ └── web_service_server.php
├── default.css
├── grep
│ ├── ajax
│ │ ├── ajax_info.txt
│ │ └── index.html
│ ├── clamav
│ │ ├── eicar.com
│ │ ├── eicar.com.txt
│ │ ├── eicar_com.zip
│ │ ├── eicarcom2.zip
│ │ ├── index.html
│ │ └── not-eicar
│ ├── click_jacking
│ │ ├── index.php
│ │ ├── with_header.php
│ │ └── without_protection.php
│ ├── code_disclosure
│ │ ├── cd.html
│ │ ├── index.html
│ │ └── not_cd.html
│ ├── credit_cards.html
│ ├── cross_domain_js
│ │ ├── cross_domain_script.html
│ │ ├── cross_domain_script_mixed.html
│ │ ├── cross_domain_script_with_type.html
│ │ ├── index.html
│ │ └── local_script.html
│ ├── csp
│ │ ├── csp_with_error_1.php
│ │ ├── csp_with_error_2.php
│ │ ├── csp_with_error_3.php
│ │ ├── csp_without_error.php
│ │ └── index.php
│ ├── directory_indexing
│ │ └── index.html
│ ├── dom_xss
│ │ ├── dom_xss_false_positive.html
│ │ ├── dom_xss_trivial.html
│ │ └── index.html
│ ├── error_500
│ │ ├── 500.php
│ │ └── index.html
│ ├── error_pages
│ │ ├── error_page.html
│ │ └── index.html
│ ├── event_validation
│ │ ├── event_validation.html
│ │ ├── index.html
│ │ └── without_event_validation.html
│ ├── feeds.html
│ ├── form_autocomplete
│ │ ├── index-field-off.html
│ │ ├── index-form-default.html
│ │ ├── index-form-off-field-on.html
│ │ ├── index-form-off-no-pass-on.html
│ │ ├── index-form-off.html
│ │ ├── index-form-on-field-off.html
│ │ ├── index-form-on-field-on.html
│ │ ├── index-form-on.html
│ │ ├── index-form-two-fields.html
│ │ └── index.html
│ ├── get_emails
│ │ ├── emails.html
│ │ └── index.html
│ ├── grep_empty
│ │ └── index.html
│ ├── hash_find
│ │ ├── hash.html
│ │ ├── index.html
│ │ └── no_hash.html
│ ├── html_comments
│ │ ├── html_in_comment.html
│ │ ├── index.html
│ │ └── simple_comment.html
│ ├── http_in_body
│ │ ├── http_request.html
│ │ ├── http_response.html
│ │ └── index.html
│ ├── index.html
│ ├── lang
│ │ ├── en.html
│ │ ├── es.html
│ │ └── index.html
│ ├── meta_tags
│ │ ├── google_sitemap.html
│ │ ├── index.html
│ │ └── linux_meta.html
│ ├── motw
│ │ ├── index.html
│ │ ├── invalid_MOTW.html
│ │ └── valid_MOTW.html
│ ├── newline
│ │ └── index.html
│ ├── objects
│ │ ├── applet.html
│ │ ├── index.html
│ │ └── object.html
│ ├── oracle
│ │ ├── index.html
│ │ └── oracle.html
│ ├── password_profiling
│ │ ├── error_page.html
│ │ └── index.html
│ ├── private_ip.html
│ ├── ssn
│ │ ├── index.html
│ │ ├── ssn.html
│ │ ├── with_ssn.html
│ │ └── without_ssn.html
│ ├── strange_headers
│ │ ├── index.html
│ │ └── strange_header.php
│ ├── strange_http_code
│ │ ├── index.html
│ │ ├── strange_http_code.php
│ │ └── strange_http_code_2.php
│ ├── strange_parameters
│ │ └── index.html
│ ├── svn_users
│ │ ├── index.html
│ │ └── svn_user.html
│ └── wsdl_greper
│ │ ├── index.html
│ │ └── wsdl.html
├── img
│ └── w3af_webShell.php
├── index.html
├── infrastructure
│ ├── detect_reverse_proxy
│ │ └── index.php
│ ├── dot_net_errors
│ │ ├── index.html
│ │ ├── sample.aspx
│ │ └── sample~.aspx
│ ├── find_vhost
│ │ └── internal_domain.html
│ └── halberd
│ │ └── halberd.php
└── mangle
│ ├── index.html
│ └── sed
│ └── index.html
├── writable
└── index.html
└── ~www
└── index.html
/.dockerignore:
--------------------------------------------------------------------------------
1 | .git
2 |
--------------------------------------------------------------------------------
/apache2config/conf.d/charset:
--------------------------------------------------------------------------------
1 | # Read the documentation before enabling AddDefaultCharset.
2 | # In general, it is only a good idea if you know that all your files
3 | # have this encoding. It will override any encoding given in the files
4 | # in meta http-equiv or xml encoding tags.
5 |
6 | #AddDefaultCharset UTF-8
7 |
--------------------------------------------------------------------------------
/apache2config/conf.d/other-vhosts-access-log:
--------------------------------------------------------------------------------
1 | # Define an access log for VirtualHosts that don't define their own logfile
2 | CustomLog ${APACHE_LOG_DIR}/other_vhosts_access.log vhost_combined
3 |
--------------------------------------------------------------------------------
/apache2config/httpd.conf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andresriancho/w3af-moth/244ff19a6c4a1fb392975a5037490d72a4538722/apache2config/httpd.conf
--------------------------------------------------------------------------------
/apache2config/mods-available/actions.conf:
--------------------------------------------------------------------------------
1 | # a2enmod-note: needs-configuration
2 |
3 | #
4 | # Action lets you define media types that will execute a script whenever
5 | # a matching file is called. This eliminates the need for repeated URL
6 | # pathnames for oft-used CGI file processors.
7 | # Format: Action media/type /cgi-script/location
8 | # Format: Action handler-name /cgi-script/location
9 | #
10 |
11 |
--------------------------------------------------------------------------------
/apache2config/mods-available/actions.load:
--------------------------------------------------------------------------------
1 | LoadModule actions_module /usr/lib/apache2/modules/mod_actions.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/alias.load:
--------------------------------------------------------------------------------
1 | LoadModule alias_module /usr/lib/apache2/modules/mod_alias.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/asis.load:
--------------------------------------------------------------------------------
1 | LoadModule asis_module /usr/lib/apache2/modules/mod_asis.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/auth_basic.load:
--------------------------------------------------------------------------------
1 | LoadModule auth_basic_module /usr/lib/apache2/modules/mod_auth_basic.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/auth_digest.load:
--------------------------------------------------------------------------------
1 | LoadModule auth_digest_module /usr/lib/apache2/modules/mod_auth_digest.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/authn_alias.load:
--------------------------------------------------------------------------------
1 | LoadModule authn_alias_module /usr/lib/apache2/modules/mod_authn_alias.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/authn_anon.load:
--------------------------------------------------------------------------------
1 | LoadModule authn_anon_module /usr/lib/apache2/modules/mod_authn_anon.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/authn_dbd.load:
--------------------------------------------------------------------------------
1 | # Depends: dbd
2 | LoadModule authn_dbd_module /usr/lib/apache2/modules/mod_authn_dbd.so
3 |
--------------------------------------------------------------------------------
/apache2config/mods-available/authn_dbm.load:
--------------------------------------------------------------------------------
1 | LoadModule authn_dbm_module /usr/lib/apache2/modules/mod_authn_dbm.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/authn_default.load:
--------------------------------------------------------------------------------
1 | LoadModule authn_default_module /usr/lib/apache2/modules/mod_authn_default.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/authn_file.load:
--------------------------------------------------------------------------------
1 | LoadModule authn_file_module /usr/lib/apache2/modules/mod_authn_file.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/authnz_ldap.load:
--------------------------------------------------------------------------------
1 | # Depends: ldap
2 | LoadModule authnz_ldap_module /usr/lib/apache2/modules/mod_authnz_ldap.so
3 |
--------------------------------------------------------------------------------
/apache2config/mods-available/authz_dbm.load:
--------------------------------------------------------------------------------
1 | LoadModule authz_dbm_module /usr/lib/apache2/modules/mod_authz_dbm.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/authz_default.load:
--------------------------------------------------------------------------------
1 | LoadModule authz_default_module /usr/lib/apache2/modules/mod_authz_default.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/authz_groupfile.load:
--------------------------------------------------------------------------------
1 | LoadModule authz_groupfile_module /usr/lib/apache2/modules/mod_authz_groupfile.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/authz_host.load:
--------------------------------------------------------------------------------
1 | LoadModule authz_host_module /usr/lib/apache2/modules/mod_authz_host.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/authz_owner.load:
--------------------------------------------------------------------------------
1 | LoadModule authz_owner_module /usr/lib/apache2/modules/mod_authz_owner.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/authz_user.load:
--------------------------------------------------------------------------------
1 | LoadModule authz_user_module /usr/lib/apache2/modules/mod_authz_user.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/autoindex.load:
--------------------------------------------------------------------------------
1 | LoadModule autoindex_module /usr/lib/apache2/modules/mod_autoindex.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/cache.load:
--------------------------------------------------------------------------------
1 | LoadModule cache_module /usr/lib/apache2/modules/mod_cache.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/cern_meta.load:
--------------------------------------------------------------------------------
1 | LoadModule cern_meta_module /usr/lib/apache2/modules/mod_cern_meta.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/cgi.load:
--------------------------------------------------------------------------------
1 | LoadModule cgi_module /usr/lib/apache2/modules/mod_cgi.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/cgid.conf:
--------------------------------------------------------------------------------
1 | # Socket for cgid communication
2 | ScriptSock ${APACHE_RUN_DIR}/cgisock
3 |
--------------------------------------------------------------------------------
/apache2config/mods-available/cgid.load:
--------------------------------------------------------------------------------
1 | LoadModule cgid_module /usr/lib/apache2/modules/mod_cgid.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/charset_lite.load:
--------------------------------------------------------------------------------
1 | LoadModule charset_lite_module /usr/lib/apache2/modules/mod_charset_lite.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/dav.load:
--------------------------------------------------------------------------------
1 | LoadModule dav_module /usr/lib/apache2/modules/mod_dav.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/dav_fs.conf:
--------------------------------------------------------------------------------
1 | DAVLockDB ${APACHE_LOCK_DIR}/DAVLock
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/dav_fs.load:
--------------------------------------------------------------------------------
1 | # Depends: dav
2 | LoadModule dav_fs_module /usr/lib/apache2/modules/mod_dav_fs.so
3 |
--------------------------------------------------------------------------------
/apache2config/mods-available/dav_lock.load:
--------------------------------------------------------------------------------
1 | LoadModule dav_lock_module /usr/lib/apache2/modules/mod_dav_lock.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/dbd.load:
--------------------------------------------------------------------------------
1 | LoadModule dbd_module /usr/lib/apache2/modules/mod_dbd.so
2 |
--------------------------------------------------------------------------------
/apache2config/mods-available/deflate.conf:
--------------------------------------------------------------------------------
1 |
7 | This directive turns on the in-text display of URIs in <a> tags, and disables 8 | those links. For example, example becomes 9 | example (http://example.com). 10 |
11 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.Linkify.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.Linkify 2 | TYPE: bool 3 | VERSION: 2.0.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |
8 | This directive turns on linkification, auto-linking http, ftp and
9 | https URLs. a
tags with the href
attribute
10 | must be allowed.
11 |
8 | Internal auto-formatter that converts configuration directives in
9 | syntax %Namespace.Directive to links. a
tags
10 | with the href
attribute must be allowed.
11 |
Injector
s)
3 |
--------------------------------------------------------------------------------
/webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/AutoFormatParam.PurifierLinkifyDocURL.txt:
--------------------------------------------------------------------------------
1 | AutoFormatParam.PurifierLinkifyDocURL
2 | TYPE: string
3 | VERSION: 2.0.1
4 | DEFAULT: '#%s'
5 | --DESCRIPTION--
6 |
7 | 8 | Location of configuration documentation to link to, let %s substitute 9 | into the configuration's namespace and directive names sans the percent 10 | sign. 11 |
12 | 13 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/AutoFormatParam.txt: -------------------------------------------------------------------------------- 1 | AutoFormatParam 2 | DESCRIPTION: Configuration for customizing auto-formatting functionality 3 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/CSS.AllowImportant.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowImportant 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 3.1.0 5 | --DESCRIPTION-- 6 | This parameter determines whether or not !important cascade modifiers should 7 | be allowed in user CSS. If false, !important will stripped. 8 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/CSS.DefinitionRev.txt: -------------------------------------------------------------------------------- 1 | CSS.DefinitionRev 2 | TYPE: int 3 | VERSION: 2.0.0 4 | DEFAULT: 1 5 | --DESCRIPTION-- 6 | 7 |8 | Revision identifier for your custom definition. See 9 | %HTML.DefinitionRev for details. 10 |
11 | 12 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/CSS.Proprietary.txt: -------------------------------------------------------------------------------- 1 | CSS.Proprietary 2 | TYPE: bool 3 | VERSION: 3.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |8 | Whether or not to allow safe, proprietary CSS values. 9 |
10 | 11 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/CSS.txt: -------------------------------------------------------------------------------- 1 | CSS 2 | DESCRIPTION: Configuration regarding allowed CSS. 3 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPath.txt: -------------------------------------------------------------------------------- 1 | Cache.SerializerPath 2 | TYPE: string/null 3 | VERSION: 2.0.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |8 | Absolute path with no trailing slash to store serialized definitions in. 9 | Default is within the 10 | HTML Purifier library inside DefinitionCache/Serializer. This 11 | path must be writable by the webserver. 12 |
13 | 14 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Cache.txt: -------------------------------------------------------------------------------- 1 | Cache 2 | DESCRIPTION: Configuration for DefinitionCache and related subclasses. 3 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidTags.txt: -------------------------------------------------------------------------------- 1 | Core.EscapeInvalidTags 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 | When true, invalid tags will be written back to the document as plain text. 6 | Otherwise, they are silently dropped. 7 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Core.Language.txt: -------------------------------------------------------------------------------- 1 | Core.Language 2 | TYPE: string 3 | VERSION: 2.0.0 4 | DEFAULT: 'en' 5 | --DESCRIPTION-- 6 | 7 | ISO 639 language code for localizable things in HTML Purifier to use, 8 | which is mainly error reporting. There is currently only an English (en) 9 | translation, so this directive is currently useless. 10 | 11 | 12 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveInvalidImg 2 | TYPE: bool 3 | DEFAULT: true 4 | VERSION: 1.3.0 5 | --DESCRIPTION-- 6 | 7 |
8 | This directive enables pre-emptive URI checking in img
9 | tags, as the attribute validation strategy is not authorized to
10 | remove elements from the document. Revert to pre-1.3.0 behavior by setting to false.
11 |
9 | This directive enables HTML Purifier to remove not only script tags 10 | but all of their contents. 11 |
12 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Core.txt: -------------------------------------------------------------------------------- 1 | Core 2 | DESCRIPTION: Core features that are always available. 3 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Filter.Custom.txt: -------------------------------------------------------------------------------- 1 | Filter.Custom 2 | TYPE: list 3 | VERSION: 3.1.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 |
7 | This directive can be used to add custom filters; it is nearly the
8 | equivalent of the now deprecated HTMLPurifier->addFilter()
9 | method. Specify an array of concrete implementations.
10 |
7 | This directive enables YouTube video embedding in HTML Purifier. Check 8 | this document 9 | on embedding videos for more information on what this filter does. 10 |
11 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Filter.txt: -------------------------------------------------------------------------------- 1 | Filter 2 | DESCRIPTION: Directives for turning filters on and off, or specifying custom filters. 3 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/FilterParam.txt: -------------------------------------------------------------------------------- 1 | FilterParam 2 | DESCRIPTION: Configuration for filters. 3 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.CustomDoctype.txt: -------------------------------------------------------------------------------- 1 | HTML.CustomDoctype 2 | TYPE: string/null 3 | VERSION: 2.0.1 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 | A custom doctype for power-users who defined there own document 8 | type. This directive only applies when %HTML.Doctype is blank. 9 | 10 | 11 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.Parent.txt: -------------------------------------------------------------------------------- 1 | HTML.Parent 2 | TYPE: string 3 | VERSION: 1.3.0 4 | DEFAULT: 'div' 5 | --DESCRIPTION-- 6 | 7 |8 | String name of element that HTML fragment passed to library will be 9 | inserted in. An interesting variation would be using span as the 10 | parent element, meaning that only inline tags would be allowed. 11 |
12 | 13 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.Proprietary.txt: -------------------------------------------------------------------------------- 1 | HTML.Proprietary 2 | TYPE: bool 3 | VERSION: 3.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |
7 | Whether or not to allow proprietary elements and attributes in your
8 | documents, as per HTMLPurifier_HTMLModule_Proprietary
.
9 | Warning: This can cause your documents to stop
10 | validating!
11 |
8 | Newline string to format final output with. If left null, HTML Purifier 9 | will auto-detect the default newline type of the system and use that; 10 | you can manually override it here. Remember, \r\n is Windows, \r 11 | is Mac, and \n is Unix. 12 |
13 | 14 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Output.txt: -------------------------------------------------------------------------------- 1 | Output 2 | DESCRIPTION: Configuration relating to the generation of (X)HTML. 3 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Test.ForceNoIconv.txt: -------------------------------------------------------------------------------- 1 | Test.ForceNoIconv 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 | When set to true, HTMLPurifier_Encoder will act as if iconv does not exist 6 | and use only pure PHP implementations. 7 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Test.txt: -------------------------------------------------------------------------------- 1 | Test 2 | DESCRIPTION: Developer testing configuration for our unit tests. 3 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.AllowedSchemes.txt: -------------------------------------------------------------------------------- 1 | URI.AllowedSchemes 2 | TYPE: lookup 3 | --DEFAULT-- 4 | array ( 5 | 'http' => true, 6 | 'https' => true, 7 | 'mailto' => true, 8 | 'ftp' => true, 9 | 'nntp' => true, 10 | 'news' => true, 11 | ) 12 | --DESCRIPTION-- 13 | Whitelist that defines the schemes that a URI is allowed to have. This 14 | prevents XSS attacks from using pseudo-schemes like javascript or mocha. 15 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.DefaultScheme.txt: -------------------------------------------------------------------------------- 1 | URI.DefaultScheme 2 | TYPE: string 3 | DEFAULT: 'http' 4 | --DESCRIPTION-- 5 | 6 |7 | Defines through what scheme the output will be served, in order to 8 | select the proper object validator when no scheme information is present. 9 |
10 | 11 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.DefinitionID.txt: -------------------------------------------------------------------------------- 1 | URI.DefinitionID 2 | TYPE: string/null 3 | VERSION: 2.1.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |8 | Unique identifier for a custom-built URI definition. If you want 9 | to add custom URIFilters, you must specify this value. 10 |
11 | 12 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.DefinitionRev.txt: -------------------------------------------------------------------------------- 1 | URI.DefinitionRev 2 | TYPE: int 3 | VERSION: 2.1.0 4 | DEFAULT: 1 5 | --DESCRIPTION-- 6 | 7 |8 | Revision identifier for your custom definition. See 9 | %HTML.DefinitionRev for details. 10 |
11 | 12 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.Disable.txt: -------------------------------------------------------------------------------- 1 | URI.Disable 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |8 | Disables all URIs in all forms. Not sure why you'd want to do that 9 | (after all, the Internet's founded on the notion of a hyperlink). 10 |
11 | 12 | --ALIASES-- 13 | Attr.DisableURI 14 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.DisableResources.txt: -------------------------------------------------------------------------------- 1 | URI.DisableResources 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |8 | Disables embedding resources, essentially meaning no pictures. You can 9 | still link to them though. See %URI.DisableExternalResources for why 10 | this might be a good idea. 11 |
12 | 13 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.HostBlacklist.txt: -------------------------------------------------------------------------------- 1 | URI.HostBlacklist 2 | TYPE: list 3 | VERSION: 1.3.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of strings that are forbidden in the host of any URI. Use it to kill 7 | domain names of spam, etc. Note that it will catch anything in the domain, 8 | so moo.com will catch moo.com.example.com. 9 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.OverrideAllowedSchemes.txt: -------------------------------------------------------------------------------- 1 | URI.OverrideAllowedSchemes 2 | TYPE: bool 3 | DEFAULT: true 4 | --DESCRIPTION-- 5 | If this is set to true (which it is by default), you can override 6 | %URI.AllowedSchemes by simply registering a HTMLPurifier_URIScheme to the 7 | registry. If false, you will also have to update that directive in order 8 | to add more schemes. 9 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.txt: -------------------------------------------------------------------------------- 1 | URI 2 | DESCRIPTION: Features regarding Uniform Resource Identifiers. 3 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/ConfigSchema/schema/info.ini: -------------------------------------------------------------------------------- 1 | name = "HTML Purifier" 2 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/DefinitionCache/Serializer/README: -------------------------------------------------------------------------------- 1 | This is a dummy file to prevent Git from ignoring this empty directory. 2 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/Exception.php: -------------------------------------------------------------------------------- 1 | array( 9 | 'lang' => 'LanguageCode', 10 | ) 11 | ); 12 | } 13 | 14 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/HTMLModule/Tidy/Transitional.php: -------------------------------------------------------------------------------- 1 | array( 9 | 'xml:lang' => 'LanguageCode', 10 | ) 11 | ); 12 | } 13 | 14 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/Language/classes/en-x-test.php: -------------------------------------------------------------------------------- 1 | 'HTML Purifier X' 9 | ); 10 | 11 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/Language/messages/en-x-testmini.php: -------------------------------------------------------------------------------- 1 | 'HTML Purifier XNone' 10 | ); 11 | 12 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/Printer/ConfigForm.css: -------------------------------------------------------------------------------- 1 | 2 | .hp-config {} 3 | 4 | .hp-config tbody th {text-align:right; padding-right:0.5em;} 5 | .hp-config thead, .hp-config .namespace {background:#3C578C; color:#FFF;} 6 | .hp-config .namespace th {text-align:center;} 7 | .hp-config .verbose {display:none;} 8 | .hp-config .controls {text-align:center;} 9 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/Printer/ConfigForm.js: -------------------------------------------------------------------------------- 1 | function toggleWriteability(id_of_patient, checked) { 2 | document.getElementById(id_of_patient).disabled = checked; 3 | } -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/Token/Empty.php: -------------------------------------------------------------------------------- 1 | get('EmbeddedURI', true)) return true; 8 | return parent::filter($uri, $config, $context); 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /webroot/moth/phpids-0.5.4/lib/IDS/vendors/htmlpurifier/HTMLPurifier/URIScheme/https.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /webroot/moth/portal/page: -------------------------------------------------------------------------------- 1 |