├── .gitattributes ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── py3webfuzz ├── __init__.py ├── __main__.py ├── encoderFuncs.py ├── fuzzdb.py ├── info │ ├── __init__.py │ ├── encode_functions.gif │ ├── encode_functions.jpg │ ├── python.svg │ ├── sqli-code test-out.jpg │ ├── sqli-code-test.gif │ └── sqli-code-test.jpg ├── server.pem ├── test_examples │ ├── CodecsTest.py │ └── test_sqli-1.py ├── utils.py └── web │ ├── __init__.py │ └── data │ ├── __init__.py │ ├── extended │ ├── SSTI │ │ └── ssti-payloads.txt │ ├── __init__.py │ └── nosqlinjection_wordlists │ │ └── mongodb_nosqli.txt │ └── fuzzdb │ ├── attack │ ├── README.md │ ├── all-attacks │ │ ├── all-attacks-unix.txt │ │ ├── all-attacks-win.txt │ │ └── all-attacks-xplatform.txt │ ├── business-logic │ │ ├── CommonDebugParamNames.txt │ │ ├── CommonMethodNames.txt │ │ └── DebugParams.Json.fuzz.txt │ ├── control-chars │ │ ├── HexValsAllBytes.txt │ │ ├── NullByteRepresentations.txt │ │ ├── imessage.txt │ │ └── terminal-escape-codes.txt │ ├── disclosure-directory │ │ └── directory-indexing-generic.txt │ ├── disclosure-localpaths │ │ └── unix │ │ │ └── common-unix-httpd-log-locations.txt │ ├── disclosure-source │ │ ├── README.md │ │ ├── source-disc-cmd-exec-traversal.txt │ │ ├── source-disclosure-generic.txt │ │ └── source-disclosure-microsoft.txt │ ├── email │ │ ├── invalid-email-addresses.txt │ │ └── valid-email-addresses.txt │ ├── file-upload │ │ ├── README.md │ │ ├── alt-extensions-asp.txt │ │ ├── alt-extensions-coldfusion.txt │ │ ├── alt-extensions-jsp.txt │ │ ├── alt-extensions-perl.txt │ │ ├── alt-extensions-php.txt │ │ ├── file-ul-filter-bypass-commonly-writable-directories.txt │ │ ├── file-ul-filter-bypass-microsoft-asp-filetype-bf.txt │ │ ├── file-ul-filter-bypass-microsoft-asp.txt │ │ ├── file-ul-filter-bypass-ms-php.txt │ │ ├── file-ul-filter-bypass-x-platform-generic.txt │ │ ├── file-ul-filter-bypass-x-platform-php.txt │ │ ├── invalid-filenames-linux.txt │ │ ├── invalid-filenames-microsoft.txt │ │ ├── invalid-filesystem-chars-microsoft.txt │ │ ├── invalid-filesystem-chars-osx.txt │ │ └── malicious-images │ │ │ ├── POC_img_phpinfo-CR.gif │ │ │ ├── POC_img_phpinfo-LF-CR.gif │ │ │ ├── POC_phpinfo-metadata.gif │ │ │ ├── POC_phpinfo-metadata.jpg │ │ │ ├── README.md │ │ │ ├── eicar.com.txt │ │ │ ├── lottapixel.jpg │ │ │ ├── uber.gif │ │ │ └── xssproject.swf │ ├── format-strings │ │ └── format-strings.txt │ ├── html_js_fuzz │ │ ├── HTML5sec_Injections.txt │ │ ├── html_attributes.txt │ │ ├── html_tags.txt │ │ ├── javascript_events.txt │ │ ├── js_inject.txt │ │ └── quotationmarks.txt │ ├── http-protocol │ │ ├── README.md │ │ ├── crlf-injection.txt │ │ ├── docs.http-method-defs.html │ │ ├── hpp.txt │ │ ├── http-header-cache-poison.txt │ │ ├── http-protocol-methods.txt │ │ ├── http-request-header-field-names.txt │ │ ├── http-response-header-field-names.txt │ │ ├── known-uri-types.txt │ │ └── user-agents.txt │ ├── integer-overflow │ │ └── integer-overflows.txt │ ├── ip │ │ └── localhost.txt │ ├── json │ │ └── JSON_Fuzzing.txt │ ├── ldap │ │ ├── README.md │ │ └── ldap-injection.txt │ ├── lfi │ │ ├── JHADDIX_LFI.txt │ │ ├── README.md │ │ ├── common-ms-httpd-log-locations.txt │ │ └── common-unix-httpd-log-locations.txt │ ├── mimetypes │ │ └── MimeTypes.txt │ ├── no-sql-injection │ │ ├── Readme.md │ │ └── mongodb.txt │ ├── os-cmd-execution │ │ ├── Commands-Linux.txt │ │ ├── Commands-OSX.txt │ │ ├── Commands-Windows.txt │ │ ├── Commands-WindowsPowershell.txt │ │ ├── OSCommandInject.Windows.txt │ │ ├── README.md │ │ ├── command-execution-unix.txt │ │ ├── command-injection-template.txt │ │ ├── shell-delimiters.txt │ │ ├── shell-operators.txt │ │ ├── source-disc-cmd-exec-traversal.txt │ │ ├── useful-commands-unix.txt │ │ └── useful-commands-windows.txt │ ├── os-dir-indexing │ │ └── directory-indexing.txt │ ├── path-traversal │ │ ├── README.md │ │ ├── path-traversal-windows.txt │ │ └── traversals-8-deep-exotic-encoding.txt │ ├── redirect │ │ ├── README.md │ │ ├── redirect-injection-template.txt │ │ └── redirect-urls-template.txt │ ├── rfi │ │ ├── README.md │ │ └── rfi.txt │ ├── server-side-include │ │ └── server-side-includes-generic.txt │ ├── sql-injection │ │ ├── detect │ │ │ ├── GenericBlind.txt │ │ │ ├── Generic_SQLI.txt │ │ │ ├── MSSQL.txt │ │ │ ├── MSSQL_blind.txt │ │ │ ├── MySQL.txt │ │ │ ├── MySQL_MSSQL.txt │ │ │ ├── README.md │ │ │ ├── oracle.txt │ │ │ └── xplatform.txt │ │ ├── exploit │ │ │ ├── README.md │ │ │ ├── db2-enumeration.txt │ │ │ ├── ms-sql-enumeration.txt │ │ │ ├── mysql-injection-login-bypass.txt │ │ │ ├── mysql-read-local-files.txt │ │ │ └── postgres-enumeration.txt │ │ └── payloads-sql-blind │ │ │ ├── README.md │ │ │ ├── payloads-sql-blind-MSSQL-INSERT.txt │ │ │ ├── payloads-sql-blind-MSSQL-WHERE.txt │ │ │ ├── payloads-sql-blind-MySQL-INSERT.txt │ │ │ ├── payloads-sql-blind-MySQL-ORDER_BY.txt │ │ │ └── payloads-sql-blind-MySQL-WHERE.txt │ ├── string-expansion │ │ └── shell-expansion.txt │ ├── unicode │ │ ├── README.md │ │ ├── corrupted.txt │ │ ├── emoji.txt │ │ ├── japanese-emoticon.txt │ │ ├── naughty-unicode.txt │ │ ├── regionalindicators.txt │ │ ├── right-to-left.txt │ │ ├── specialchars.txt │ │ ├── two-byte-chars.txt │ │ └── upsidedown.txt │ ├── xml │ │ └── xml-attacks.txt │ ├── xpath │ │ ├── README.md │ │ └── xpath-injection.txt │ └── xss │ │ ├── JHADDIX_XSS_WITH_CONTEXT.doc.txt │ │ ├── README.md │ │ ├── XSSPolyglot.txt │ │ ├── all-encodings-of-lt.txt │ │ ├── default-javascript-event-attributes.txt │ │ ├── html-event-attributes.txt │ │ ├── test.xxe │ │ ├── xss-other.txt │ │ ├── xss-rsnake.txt │ │ └── xss-uri.txt │ ├── discovery │ ├── UserAgent │ │ ├── UserAgentListCommon.txt │ │ ├── UserAgentListLarge.txt │ │ └── UserAgents.txt │ ├── dns │ │ ├── CcTLD.txt │ │ ├── alexaTop1mAXFRcommonSubdomains.txt │ │ ├── dnsmapCommonSubdomains.txt │ │ └── gTLD.txt │ └── predictable-filepaths │ │ ├── KitchensinkDirectories.txt │ │ ├── Randomfiles.txt │ │ ├── UnixDotfiles.txt │ │ ├── backdoors │ │ ├── ASP_CommonBackdoors.txt │ │ ├── bot_control_panels.txt │ │ └── shells.txt │ │ ├── cgi │ │ ├── CGI_HTTP_POST.txt │ │ ├── CGI_HTTP_POST_Windows.txt │ │ ├── CGI_Microsoft.txt │ │ └── CGI_XPlatform.txt │ │ ├── cms │ │ ├── README.md │ │ ├── drupal_plugins.txt │ │ ├── drupal_themes.txt │ │ ├── joomla_plugins.txt │ │ ├── joomla_themes.txt │ │ ├── php-nuke.txt │ │ ├── wordpress.txt │ │ ├── wp_common_theme_files.txt │ │ ├── wp_plugins.txt │ │ ├── wp_plugins_top225.txt │ │ ├── wp_themes.readme │ │ └── wp_themes.txt │ │ ├── filename-dirname-bruteforce │ │ ├── 3CharExtBrute.txt │ │ ├── CommonWebExtensions.txt │ │ ├── Extensions.Backup.txt │ │ ├── Extensions.Common.txt │ │ ├── Extensions.Compressed.txt │ │ ├── Extensions.Mostcommon.txt │ │ ├── Extensions.Skipfish.txt │ │ ├── WordlistSkipfish.txt │ │ ├── copy_of.txt │ │ ├── raft-large-directories-lowercase.txt │ │ ├── raft-large-directories.txt │ │ ├── raft-large-extensions-lowercase.txt │ │ ├── raft-large-extensions.txt │ │ ├── raft-large-files-lowercase.txt │ │ ├── raft-large-files.txt │ │ ├── raft-large-words-lowercase.txt │ │ ├── raft-large-words.txt │ │ ├── raft-medium-directories-lowercase.txt │ │ ├── raft-medium-directories.txt │ │ ├── raft-medium-extensions-lowercase.txt │ │ ├── raft-medium-extensions.txt │ │ ├── raft-medium-files-lowercase.txt │ │ ├── raft-medium-files.txt │ │ ├── raft-medium-words-lowercase.txt │ │ ├── raft-medium-words.txt │ │ ├── raft-small-directories-lowercase.txt │ │ ├── raft-small-directories.txt │ │ ├── raft-small-extensions-lowercase.txt │ │ ├── raft-small-extensions.txt │ │ ├── raft-small-files-lowercase.txt │ │ ├── raft-small-files.txt │ │ ├── raft-small-words-lowercase.txt │ │ ├── raft-small-words.txt │ │ ├── spanish.txt │ │ ├── test_demo.txt │ │ └── upload_variants.txt │ │ ├── login-file-locations │ │ ├── Logins.txt │ │ ├── cfm.txt │ │ ├── html.txt │ │ ├── jsp.txt │ │ ├── php.txt │ │ ├── windows-asp.txt │ │ └── windows-aspx.txt │ │ ├── password-file-locations │ │ └── Passwords.txt │ │ ├── php │ │ ├── PHP.txt │ │ └── PHP_CommonBackdoors.txt │ │ ├── proxy-conf.txt │ │ ├── tftp.txt │ │ ├── webservers-appservers │ │ ├── ADFS.txt │ │ ├── AdobeXML.txt │ │ ├── Apache.txt │ │ ├── ApacheTomcat.txt │ │ ├── Apache_Axis.txt │ │ ├── ColdFusion.txt │ │ ├── FatwireCMS.txt │ │ ├── Frontpage.txt │ │ ├── HP_System_Mgmt_Homepage.txt │ │ ├── HTTP_POST_Microsoft.txt │ │ ├── Hyperion.txt │ │ ├── IIS.txt │ │ ├── JBoss.txt │ │ ├── JRun.txt │ │ ├── JavaServlets_Common.txt │ │ ├── Joomla_exploitable.txt │ │ ├── LotusNotes.txt │ │ ├── Netware.txt │ │ ├── Oracle9i.txt │ │ ├── OracleAppServer.txt │ │ ├── README.md │ │ ├── Ruby_Rails.txt │ │ ├── SAP.txt │ │ ├── Sharepoint.txt │ │ ├── SiteMinder.txt │ │ ├── SunAppServerGlassfish.txt │ │ ├── SuniPlanet.txt │ │ ├── Vignette.txt │ │ ├── Weblogic.txt │ │ └── Websphere.txt │ │ └── wellknown-rfc5785.txt │ ├── docs │ ├── attack-docs │ │ ├── remote-cmd-exfiltration │ │ │ ├── Web-Shells-rev2.pdf │ │ │ ├── netcat_cheat_sheet_v1.pdf │ │ │ └── windows_command_line_sheet_v1.pdf │ │ ├── rfi-cheatsheet.html │ │ ├── source-directory-file-indexing-cheatsheet.html │ │ ├── sqli │ │ │ ├── docs.oracle_cheat.pdf │ │ │ └── docs.sql_injection_cheatsheet.html │ │ ├── waf-bypass │ │ │ └── regexp-security-cheatsheet.md │ │ └── xss │ │ │ └── docs.wasc-scriptmapping │ │ │ ├── ScriptMapping_Release_26Nov2007.html │ │ │ ├── images │ │ │ ├── ff2.png │ │ │ ├── ie7.png │ │ │ └── safari3.png │ │ │ └── license.txt │ └── misc │ │ ├── KL0209LIT_fffap.html │ │ ├── Web-Shells-rev2.pdf │ │ ├── Wireshark_Display_Filters.pdf │ │ └── htmlcodes-cheatsheet.htm │ ├── regex │ ├── README.md │ ├── amazon.txt │ ├── breakpoint-ignores.txt │ ├── errors.txt │ ├── nsa-wordlist.txt │ ├── pii.readme.txt │ ├── pii.txt │ └── sessionid.txt │ ├── web-backdoors │ ├── README.md │ ├── asp │ │ ├── cmd-asp-5.1.asp │ │ ├── cmd.asp │ │ ├── cmd.aspx │ │ ├── cmdasp.asp │ │ ├── cmdasp.aspx │ │ ├── dns.asp │ │ ├── file.asp │ │ ├── list.asp │ │ ├── list.txt │ │ ├── ntdaddy.asp │ │ ├── proxy.asp │ │ ├── shell.asp │ │ ├── shell.aspx │ │ └── up.asp │ ├── c │ │ └── cmd.c │ ├── cfm │ │ ├── cfExec.cfm │ │ ├── cfSQL.cfm │ │ ├── cmd.cfm │ │ └── shell.cfm │ ├── exe │ │ └── nc.exe │ ├── jsp │ │ ├── CmdServlet.class │ │ ├── CmdServlet.java │ │ ├── ListServlet.class │ │ ├── ListServlet.java │ │ ├── UpServlet.class │ │ ├── UpServlet.java │ │ ├── browser.jsp │ │ ├── cmd.jsp │ │ ├── cmdjsp.jsp │ │ ├── jsp-reverse.jsp │ │ ├── laudanum │ │ │ ├── cmd.war │ │ │ ├── makewar.sh │ │ │ └── warfiles │ │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ │ ├── WEB-INF │ │ │ │ └── web.xml │ │ │ │ └── cmd.jsp │ │ ├── list.jsp │ │ ├── simple.jsp │ │ ├── up.jsp │ │ └── win32 │ │ │ ├── cmd_win32.jsp │ │ │ └── up_win32.jsp │ ├── php │ │ ├── cmd.php │ │ ├── dns.php │ │ ├── file.php │ │ ├── host.php │ │ ├── killnc.php │ │ ├── list.php │ │ ├── php-backdoor.php │ │ ├── php-reverse-shell.php │ │ ├── proxy.php │ │ ├── shell.php │ │ ├── simple-backdoor.php │ │ ├── tiny.php │ │ └── up.php │ ├── pl-cgi │ │ ├── cmd.pl │ │ ├── list.pl │ │ ├── perlcmd.cgi │ │ └── up.pl │ ├── servlet │ │ ├── CmdServlet.java │ │ ├── ListServlet.java │ │ └── UpServlet.java │ ├── sh │ │ ├── cmd.sh │ │ ├── list.sh │ │ └── up.sh │ └── wordpress │ │ ├── laudanum.php │ │ └── templates │ │ ├── README.md │ │ ├── dns.php │ │ ├── file.php │ │ ├── host.php │ │ ├── ipcheck.php │ │ ├── killnc.php │ │ ├── php-reverse-shell.php │ │ ├── proxy.php │ │ ├── settings.php │ │ └── shell.php │ ├── wordlists-misc │ ├── accidental_profanity.txt │ ├── common-http-ports.txt │ ├── numeric.txt │ ├── us_cities.txt │ ├── wordlist-alphanumeric-case.txt │ ├── wordlist-common-snmp-community-strings.txt │ └── wordlist-dna.txt │ └── wordlists-user-passwd │ ├── db2 │ ├── db2_default_pass.txt │ ├── db2_default_user.txt │ └── db2_default_userpass.txt │ ├── faithwriters.txt │ ├── generic-listpairs │ ├── http_default_pass.txt │ ├── http_default_userpass.txt │ └── http_default_users.txt │ ├── names │ └── namelist.txt │ ├── oracle │ ├── _hci_oracle_passwords.txt │ ├── _oracle_default_passwords.txt │ ├── oracle_login_password.txt │ ├── oracle_logins.txt │ └── oracle_passwords.txt │ ├── passwds │ ├── john.txt │ ├── phpbb.txt │ ├── twitter.txt │ └── weaksauce.txt │ ├── postgres │ ├── postgres_default_pass.txt │ ├── postgres_default_user.txt │ └── postgres_default_userpass.txt │ ├── readme.txt │ ├── tomcat │ ├── tomcat_mgr_default_pass.txt │ ├── tomcat_mgr_default_userpass.txt │ └── tomcat_mgr_default_users.txt │ └── unix-os │ ├── unix_passwords.txt │ └── unix_users.txt ├── requirements.txt ├── setup.cfg └── setup.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/README.md -------------------------------------------------------------------------------- /py3webfuzz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/__init__.py -------------------------------------------------------------------------------- /py3webfuzz/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/__main__.py -------------------------------------------------------------------------------- /py3webfuzz/encoderFuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/encoderFuncs.py -------------------------------------------------------------------------------- /py3webfuzz/fuzzdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/fuzzdb.py -------------------------------------------------------------------------------- /py3webfuzz/info/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py3webfuzz/info/encode_functions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/info/encode_functions.gif -------------------------------------------------------------------------------- /py3webfuzz/info/encode_functions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/info/encode_functions.jpg -------------------------------------------------------------------------------- /py3webfuzz/info/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/info/python.svg -------------------------------------------------------------------------------- /py3webfuzz/info/sqli-code test-out.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/info/sqli-code test-out.jpg -------------------------------------------------------------------------------- /py3webfuzz/info/sqli-code-test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/info/sqli-code-test.gif -------------------------------------------------------------------------------- /py3webfuzz/info/sqli-code-test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/info/sqli-code-test.jpg -------------------------------------------------------------------------------- /py3webfuzz/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/server.pem -------------------------------------------------------------------------------- /py3webfuzz/test_examples/CodecsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/test_examples/CodecsTest.py -------------------------------------------------------------------------------- /py3webfuzz/test_examples/test_sqli-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/test_examples/test_sqli-1.py -------------------------------------------------------------------------------- /py3webfuzz/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/utils.py -------------------------------------------------------------------------------- /py3webfuzz/web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py3webfuzz/web/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py3webfuzz/web/data/extended/SSTI/ssti-payloads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/extended/SSTI/ssti-payloads.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/extended/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py3webfuzz/web/data/extended/nosqlinjection_wordlists/mongodb_nosqli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/extended/nosqlinjection_wordlists/mongodb_nosqli.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/all-attacks/all-attacks-unix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/all-attacks/all-attacks-unix.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/all-attacks/all-attacks-win.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/all-attacks/all-attacks-win.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/all-attacks/all-attacks-xplatform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/all-attacks/all-attacks-xplatform.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/business-logic/CommonDebugParamNames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/business-logic/CommonDebugParamNames.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/business-logic/CommonMethodNames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/business-logic/CommonMethodNames.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/business-logic/DebugParams.Json.fuzz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/business-logic/DebugParams.Json.fuzz.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/control-chars/HexValsAllBytes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/control-chars/HexValsAllBytes.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/control-chars/NullByteRepresentations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/control-chars/NullByteRepresentations.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/control-chars/imessage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/control-chars/imessage.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/control-chars/terminal-escape-codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/control-chars/terminal-escape-codes.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/disclosure-directory/directory-indexing-generic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/disclosure-directory/directory-indexing-generic.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/disclosure-localpaths/unix/common-unix-httpd-log-locations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/disclosure-localpaths/unix/common-unix-httpd-log-locations.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/disclosure-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/disclosure-source/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/disclosure-source/source-disc-cmd-exec-traversal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/disclosure-source/source-disc-cmd-exec-traversal.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/disclosure-source/source-disclosure-generic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/disclosure-source/source-disclosure-generic.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/disclosure-source/source-disclosure-microsoft.txt: -------------------------------------------------------------------------------- 1 | # microsoft-specific appends - try the generic list, too 2 | +.htr 3 | ::DATA$ 4 | -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/email/invalid-email-addresses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/email/invalid-email-addresses.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/email/valid-email-addresses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/email/valid-email-addresses.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/alt-extensions-asp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/alt-extensions-asp.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/alt-extensions-coldfusion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/alt-extensions-coldfusion.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/alt-extensions-jsp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/alt-extensions-jsp.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/alt-extensions-perl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/alt-extensions-perl.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/alt-extensions-php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/alt-extensions-php.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/file-ul-filter-bypass-commonly-writable-directories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/file-ul-filter-bypass-commonly-writable-directories.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/file-ul-filter-bypass-microsoft-asp-filetype-bf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/file-ul-filter-bypass-microsoft-asp-filetype-bf.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/file-ul-filter-bypass-microsoft-asp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/file-ul-filter-bypass-microsoft-asp.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/file-ul-filter-bypass-ms-php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/file-ul-filter-bypass-ms-php.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/file-ul-filter-bypass-x-platform-generic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/file-ul-filter-bypass-x-platform-generic.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/file-ul-filter-bypass-x-platform-php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/file-ul-filter-bypass-x-platform-php.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/invalid-filenames-linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/invalid-filenames-linux.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/invalid-filenames-microsoft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/invalid-filenames-microsoft.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/invalid-filesystem-chars-microsoft.txt: -------------------------------------------------------------------------------- 1 | * 2 | . 3 | " 4 | / 5 | \ 6 | [ 7 | ] 8 | : 9 | ; 10 | | 11 | = 12 | , 13 | -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/invalid-filesystem-chars-osx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/invalid-filesystem-chars-osx.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/malicious-images/POC_img_phpinfo-CR.gif: -------------------------------------------------------------------------------- 1 | GIF89a1 2 | -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/malicious-images/POC_img_phpinfo-LF-CR.gif: -------------------------------------------------------------------------------- 1 | GIF89a1 2 | 3 | -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/malicious-images/POC_phpinfo-metadata.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/malicious-images/POC_phpinfo-metadata.gif -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/malicious-images/POC_phpinfo-metadata.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/malicious-images/POC_phpinfo-metadata.jpg -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/malicious-images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/malicious-images/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/malicious-images/eicar.com.txt: -------------------------------------------------------------------------------- 1 | X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H* -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/malicious-images/lottapixel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/malicious-images/lottapixel.jpg -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/malicious-images/uber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/malicious-images/uber.gif -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/file-upload/malicious-images/xssproject.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/file-upload/malicious-images/xssproject.swf -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/format-strings/format-strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/format-strings/format-strings.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/html_js_fuzz/HTML5sec_Injections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/html_js_fuzz/HTML5sec_Injections.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/html_js_fuzz/html_attributes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/html_js_fuzz/html_attributes.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/html_js_fuzz/html_tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/html_js_fuzz/html_tags.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/html_js_fuzz/javascript_events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/html_js_fuzz/javascript_events.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/html_js_fuzz/js_inject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/html_js_fuzz/js_inject.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/html_js_fuzz/quotationmarks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/html_js_fuzz/quotationmarks.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/http-protocol/README.md: -------------------------------------------------------------------------------- 1 | References: 2 | 3 | http://ha.ckers.org/response-splitting.html 4 | 5 | -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/http-protocol/crlf-injection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/http-protocol/crlf-injection.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/http-protocol/docs.http-method-defs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/http-protocol/docs.http-method-defs.html -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/http-protocol/hpp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/http-protocol/hpp.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/http-protocol/http-header-cache-poison.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/http-protocol/http-header-cache-poison.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/http-protocol/http-protocol-methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/http-protocol/http-protocol-methods.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/http-protocol/http-request-header-field-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/http-protocol/http-request-header-field-names.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/http-protocol/http-response-header-field-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/http-protocol/http-response-header-field-names.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/http-protocol/known-uri-types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/http-protocol/known-uri-types.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/http-protocol/user-agents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/http-protocol/user-agents.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/integer-overflow/integer-overflows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/integer-overflow/integer-overflows.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/ip/localhost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/ip/localhost.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/json/JSON_Fuzzing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/json/JSON_Fuzzing.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/ldap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/ldap/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/ldap/ldap-injection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/ldap/ldap-injection.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/lfi/JHADDIX_LFI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/lfi/JHADDIX_LFI.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/lfi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/lfi/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/lfi/common-ms-httpd-log-locations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/lfi/common-ms-httpd-log-locations.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/lfi/common-unix-httpd-log-locations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/lfi/common-unix-httpd-log-locations.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/mimetypes/MimeTypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/mimetypes/MimeTypes.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/no-sql-injection/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/no-sql-injection/Readme.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/no-sql-injection/mongodb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/no-sql-injection/mongodb.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/Commands-Linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/Commands-Linux.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/Commands-OSX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/Commands-OSX.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/Commands-Windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/Commands-Windows.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/Commands-WindowsPowershell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/Commands-WindowsPowershell.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/OSCommandInject.Windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/OSCommandInject.Windows.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/command-execution-unix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/command-execution-unix.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/command-injection-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/command-injection-template.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/shell-delimiters.txt: -------------------------------------------------------------------------------- 1 | ; 2 | ^ 3 | & 4 | && 5 | | 6 | || 7 | %0D 8 | %0A 9 | \n 10 | < 11 | -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/shell-operators.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/shell-operators.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/source-disc-cmd-exec-traversal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/source-disc-cmd-exec-traversal.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/useful-commands-unix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/useful-commands-unix.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/os-cmd-execution/useful-commands-windows.txt: -------------------------------------------------------------------------------- 1 | ver 2 | chdir 3 | echo %USERNAME% 4 | -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/os-dir-indexing/directory-indexing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/os-dir-indexing/directory-indexing.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/path-traversal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/path-traversal/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/path-traversal/path-traversal-windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/path-traversal/path-traversal-windows.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/path-traversal/traversals-8-deep-exotic-encoding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/path-traversal/traversals-8-deep-exotic-encoding.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/redirect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/redirect/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/redirect/redirect-injection-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/redirect/redirect-injection-template.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/redirect/redirect-urls-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/redirect/redirect-urls-template.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/rfi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/rfi/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/rfi/rfi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/rfi/rfi.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/server-side-include/server-side-includes-generic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/server-side-include/server-side-includes-generic.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/detect/GenericBlind.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/detect/GenericBlind.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/detect/Generic_SQLI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/detect/Generic_SQLI.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/detect/MSSQL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/detect/MSSQL.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/detect/MSSQL_blind.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/detect/MSSQL_blind.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/detect/MySQL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/detect/MySQL.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/detect/MySQL_MSSQL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/detect/MySQL_MSSQL.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/detect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/detect/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/detect/oracle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/detect/oracle.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/detect/xplatform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/detect/xplatform.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/exploit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/exploit/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/exploit/db2-enumeration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/exploit/db2-enumeration.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/exploit/ms-sql-enumeration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/exploit/ms-sql-enumeration.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/exploit/mysql-injection-login-bypass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/exploit/mysql-injection-login-bypass.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/exploit/mysql-read-local-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/exploit/mysql-read-local-files.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/exploit/postgres-enumeration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/exploit/postgres-enumeration.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/payloads-sql-blind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/payloads-sql-blind/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/payloads-sql-blind/payloads-sql-blind-MSSQL-INSERT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/payloads-sql-blind/payloads-sql-blind-MSSQL-INSERT.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/payloads-sql-blind/payloads-sql-blind-MSSQL-WHERE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/payloads-sql-blind/payloads-sql-blind-MSSQL-WHERE.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/payloads-sql-blind/payloads-sql-blind-MySQL-INSERT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/payloads-sql-blind/payloads-sql-blind-MySQL-INSERT.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/payloads-sql-blind/payloads-sql-blind-MySQL-ORDER_BY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/payloads-sql-blind/payloads-sql-blind-MySQL-ORDER_BY.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/sql-injection/payloads-sql-blind/payloads-sql-blind-MySQL-WHERE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/sql-injection/payloads-sql-blind/payloads-sql-blind-MySQL-WHERE.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/string-expansion/shell-expansion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/string-expansion/shell-expansion.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/unicode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/unicode/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/unicode/corrupted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/unicode/corrupted.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/unicode/emoji.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/unicode/emoji.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/unicode/japanese-emoticon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/unicode/japanese-emoticon.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/unicode/naughty-unicode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/unicode/naughty-unicode.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/unicode/regionalindicators.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/unicode/regionalindicators.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/unicode/right-to-left.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/unicode/right-to-left.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/unicode/specialchars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/unicode/specialchars.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/unicode/two-byte-chars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/unicode/two-byte-chars.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/unicode/upsidedown.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/unicode/upsidedown.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/xml/xml-attacks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/xml/xml-attacks.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/xpath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/xpath/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/xpath/xpath-injection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/xpath/xpath-injection.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/xss/JHADDIX_XSS_WITH_CONTEXT.doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/xss/JHADDIX_XSS_WITH_CONTEXT.doc.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/xss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/xss/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/xss/XSSPolyglot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/xss/XSSPolyglot.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/xss/all-encodings-of-lt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/xss/all-encodings-of-lt.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/xss/default-javascript-event-attributes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/xss/default-javascript-event-attributes.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/xss/html-event-attributes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/xss/html-event-attributes.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/xss/test.xxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/xss/test.xxe -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/xss/xss-other.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/xss/xss-other.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/xss/xss-rsnake.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/xss/xss-rsnake.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/attack/xss/xss-uri.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/attack/xss/xss-uri.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/UserAgent/UserAgentListCommon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/UserAgent/UserAgentListCommon.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/UserAgent/UserAgentListLarge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/UserAgent/UserAgentListLarge.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/UserAgent/UserAgents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/UserAgent/UserAgents.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/dns/CcTLD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/dns/CcTLD.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/dns/alexaTop1mAXFRcommonSubdomains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/dns/alexaTop1mAXFRcommonSubdomains.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/dns/dnsmapCommonSubdomains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/dns/dnsmapCommonSubdomains.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/dns/gTLD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/dns/gTLD.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/KitchensinkDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/KitchensinkDirectories.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/Randomfiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/Randomfiles.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/UnixDotfiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/UnixDotfiles.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/backdoors/ASP_CommonBackdoors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/backdoors/ASP_CommonBackdoors.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/backdoors/bot_control_panels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/backdoors/bot_control_panels.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/backdoors/shells.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/backdoors/shells.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cgi/CGI_HTTP_POST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cgi/CGI_HTTP_POST.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cgi/CGI_HTTP_POST_Windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cgi/CGI_HTTP_POST_Windows.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cgi/CGI_Microsoft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cgi/CGI_Microsoft.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cgi/CGI_XPlatform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cgi/CGI_XPlatform.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/drupal_plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/drupal_plugins.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/drupal_themes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/drupal_themes.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/joomla_plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/joomla_plugins.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/joomla_themes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/joomla_themes.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/php-nuke.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/php-nuke.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/wordpress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/wordpress.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/wp_common_theme_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/wp_common_theme_files.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/wp_plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/wp_plugins.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/wp_plugins_top225.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/wp_plugins_top225.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/wp_themes.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/wp_themes.readme -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/wp_themes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/cms/wp_themes.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/3CharExtBrute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/3CharExtBrute.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/CommonWebExtensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/CommonWebExtensions.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/Extensions.Backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/Extensions.Backup.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/Extensions.Common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/Extensions.Common.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/Extensions.Compressed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/Extensions.Compressed.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/Extensions.Mostcommon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/Extensions.Mostcommon.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/Extensions.Skipfish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/Extensions.Skipfish.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/WordlistSkipfish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/WordlistSkipfish.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/copy_of.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/copy_of.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-large-directories-lowercase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-large-directories-lowercase.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-large-directories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-large-directories.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-large-extensions-lowercase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-large-extensions-lowercase.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-large-extensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-large-extensions.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-large-files-lowercase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-large-files-lowercase.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-large-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-large-files.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-large-words-lowercase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-large-words-lowercase.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-large-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-large-words.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-medium-directories-lowercase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-medium-directories-lowercase.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-medium-directories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-medium-directories.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-medium-extensions-lowercase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-medium-extensions-lowercase.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-medium-extensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-medium-extensions.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-medium-files-lowercase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-medium-files-lowercase.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-medium-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-medium-files.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-medium-words-lowercase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-medium-words-lowercase.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-medium-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-medium-words.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-small-directories-lowercase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-small-directories-lowercase.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-small-directories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-small-directories.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-small-extensions-lowercase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-small-extensions-lowercase.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-small-extensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-small-extensions.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-small-files-lowercase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-small-files-lowercase.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-small-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-small-files.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-small-words-lowercase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-small-words-lowercase.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-small-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/raft-small-words.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/spanish.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/test_demo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/test_demo.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/upload_variants.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/filename-dirname-bruteforce/upload_variants.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/login-file-locations/Logins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/login-file-locations/Logins.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/login-file-locations/cfm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/login-file-locations/cfm.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/login-file-locations/html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/login-file-locations/html.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/login-file-locations/jsp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/login-file-locations/jsp.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/login-file-locations/php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/login-file-locations/php.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/login-file-locations/windows-asp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/login-file-locations/windows-asp.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/login-file-locations/windows-aspx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/login-file-locations/windows-aspx.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/password-file-locations/Passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/password-file-locations/Passwords.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/php/PHP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/php/PHP.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/php/PHP_CommonBackdoors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/php/PHP_CommonBackdoors.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/proxy-conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/proxy-conf.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/tftp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/tftp.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/ADFS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/ADFS.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/AdobeXML.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/AdobeXML.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Apache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Apache.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/ApacheTomcat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/ApacheTomcat.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Apache_Axis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Apache_Axis.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/ColdFusion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/ColdFusion.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/FatwireCMS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/FatwireCMS.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Frontpage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Frontpage.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/HP_System_Mgmt_Homepage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/HP_System_Mgmt_Homepage.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/HTTP_POST_Microsoft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/HTTP_POST_Microsoft.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Hyperion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Hyperion.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/IIS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/IIS.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/JBoss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/JBoss.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/JRun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/JRun.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/JavaServlets_Common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/JavaServlets_Common.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Joomla_exploitable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Joomla_exploitable.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/LotusNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/LotusNotes.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Netware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Netware.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Oracle9i.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Oracle9i.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/OracleAppServer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/OracleAppServer.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Ruby_Rails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Ruby_Rails.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/SAP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/SAP.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Sharepoint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Sharepoint.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/SiteMinder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/SiteMinder.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/SunAppServerGlassfish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/SunAppServerGlassfish.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/SuniPlanet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/SuniPlanet.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Vignette.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Vignette.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Weblogic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Weblogic.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Websphere.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/webservers-appservers/Websphere.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/wellknown-rfc5785.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/discovery/predictable-filepaths/wellknown-rfc5785.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/docs/attack-docs/remote-cmd-exfiltration/Web-Shells-rev2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/docs/attack-docs/remote-cmd-exfiltration/Web-Shells-rev2.pdf -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/docs/attack-docs/remote-cmd-exfiltration/netcat_cheat_sheet_v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/docs/attack-docs/remote-cmd-exfiltration/netcat_cheat_sheet_v1.pdf -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/docs/attack-docs/remote-cmd-exfiltration/windows_command_line_sheet_v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/docs/attack-docs/remote-cmd-exfiltration/windows_command_line_sheet_v1.pdf -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/docs/attack-docs/rfi-cheatsheet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/docs/attack-docs/rfi-cheatsheet.html -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/docs/attack-docs/source-directory-file-indexing-cheatsheet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/docs/attack-docs/source-directory-file-indexing-cheatsheet.html -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/docs/attack-docs/sqli/docs.oracle_cheat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/docs/attack-docs/sqli/docs.oracle_cheat.pdf -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/docs/attack-docs/sqli/docs.sql_injection_cheatsheet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/docs/attack-docs/sqli/docs.sql_injection_cheatsheet.html -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/docs/attack-docs/waf-bypass/regexp-security-cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/docs/attack-docs/waf-bypass/regexp-security-cheatsheet.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/docs/attack-docs/xss/docs.wasc-scriptmapping/ScriptMapping_Release_26Nov2007.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/docs/attack-docs/xss/docs.wasc-scriptmapping/ScriptMapping_Release_26Nov2007.html -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/docs/attack-docs/xss/docs.wasc-scriptmapping/images/ff2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/docs/attack-docs/xss/docs.wasc-scriptmapping/images/ff2.png -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/docs/attack-docs/xss/docs.wasc-scriptmapping/images/ie7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/docs/attack-docs/xss/docs.wasc-scriptmapping/images/ie7.png -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/docs/attack-docs/xss/docs.wasc-scriptmapping/images/safari3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/docs/attack-docs/xss/docs.wasc-scriptmapping/images/safari3.png -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/docs/attack-docs/xss/docs.wasc-scriptmapping/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/docs/attack-docs/xss/docs.wasc-scriptmapping/license.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/docs/misc/KL0209LIT_fffap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/docs/misc/KL0209LIT_fffap.html -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/docs/misc/Web-Shells-rev2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/docs/misc/Web-Shells-rev2.pdf -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/docs/misc/Wireshark_Display_Filters.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/docs/misc/Wireshark_Display_Filters.pdf -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/docs/misc/htmlcodes-cheatsheet.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/docs/misc/htmlcodes-cheatsheet.htm -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/regex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/regex/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/regex/amazon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/regex/amazon.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/regex/breakpoint-ignores.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/regex/breakpoint-ignores.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/regex/errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/regex/errors.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/regex/nsa-wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/regex/nsa-wordlist.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/regex/pii.readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/regex/pii.readme.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/regex/pii.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/regex/pii.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/regex/sessionid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/regex/sessionid.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/README.md -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/asp/cmd-asp-5.1.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/asp/cmd-asp-5.1.asp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/asp/cmd.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/asp/cmd.asp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/asp/cmd.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/asp/cmd.aspx -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/asp/cmdasp.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/asp/cmdasp.asp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/asp/cmdasp.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/asp/cmdasp.aspx -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/asp/dns.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/asp/dns.asp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/asp/file.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/asp/file.asp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/asp/list.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/asp/list.asp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/asp/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/asp/list.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/asp/ntdaddy.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/asp/ntdaddy.asp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/asp/proxy.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/asp/proxy.asp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/asp/shell.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/asp/shell.asp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/asp/shell.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/asp/shell.aspx -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/asp/up.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/asp/up.asp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/c/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/c/cmd.c -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/cfm/cfExec.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/cfm/cfExec.cfm -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/cfm/cfSQL.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/cfm/cfSQL.cfm -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/cfm/cmd.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/cfm/cmd.cfm -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/cfm/shell.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/cfm/shell.cfm -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/exe/nc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/exe/nc.exe -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/CmdServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/CmdServlet.class -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/CmdServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/CmdServlet.java -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/ListServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/ListServlet.class -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/ListServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/ListServlet.java -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/UpServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/UpServlet.class -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/UpServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/UpServlet.java -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/browser.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/browser.jsp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/cmd.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/cmd.jsp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/cmdjsp.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/cmdjsp.jsp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/jsp-reverse.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/jsp-reverse.jsp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/laudanum/cmd.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/laudanum/cmd.war -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/laudanum/makewar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/laudanum/makewar.sh -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/laudanum/warfiles/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/laudanum/warfiles/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/laudanum/warfiles/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/laudanum/warfiles/WEB-INF/web.xml -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/laudanum/warfiles/cmd.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/laudanum/warfiles/cmd.jsp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/list.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/list.jsp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/simple.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/simple.jsp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/up.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/up.jsp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/win32/cmd_win32.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/win32/cmd_win32.jsp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/win32/up_win32.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/jsp/win32/up_win32.jsp -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/php/cmd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/php/cmd.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/php/dns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/php/dns.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/php/file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/php/file.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/php/host.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/php/host.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/php/killnc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/php/killnc.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/php/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/php/list.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/php/php-backdoor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/php/php-backdoor.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/php/php-reverse-shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/php/php-reverse-shell.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/php/proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/php/proxy.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/php/shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/php/shell.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/php/simple-backdoor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/php/simple-backdoor.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/php/tiny.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/php/tiny.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/php/up.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/php/up.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/pl-cgi/cmd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/pl-cgi/cmd.pl -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/pl-cgi/list.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/pl-cgi/list.pl -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/pl-cgi/perlcmd.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/pl-cgi/perlcmd.cgi -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/pl-cgi/up.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/pl-cgi/up.pl -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/servlet/CmdServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/servlet/CmdServlet.java -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/servlet/ListServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/servlet/ListServlet.java -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/servlet/UpServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/servlet/UpServlet.java -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/sh/cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/sh/cmd.sh -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/sh/list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/sh/list.sh -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/sh/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/sh/up.sh -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/laudanum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/laudanum.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/templates/README.md: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/templates/dns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/templates/dns.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/templates/file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/templates/file.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/templates/host.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/templates/host.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/templates/ipcheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/templates/ipcheck.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/templates/killnc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/templates/killnc.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/templates/php-reverse-shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/templates/php-reverse-shell.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/templates/proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/templates/proxy.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/templates/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/templates/settings.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/templates/shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/web-backdoors/wordpress/templates/shell.php -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-misc/accidental_profanity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-misc/accidental_profanity.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-misc/common-http-ports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-misc/common-http-ports.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-misc/numeric.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-misc/numeric.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-misc/us_cities.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-misc/us_cities.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-misc/wordlist-alphanumeric-case.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-misc/wordlist-alphanumeric-case.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-misc/wordlist-common-snmp-community-strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-misc/wordlist-common-snmp-community-strings.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-misc/wordlist-dna.txt: -------------------------------------------------------------------------------- 1 | a 2 | t 3 | c 4 | g 5 | -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/db2/db2_default_pass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/db2/db2_default_pass.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/db2/db2_default_user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/db2/db2_default_user.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/db2/db2_default_userpass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/db2/db2_default_userpass.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/faithwriters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/faithwriters.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/generic-listpairs/http_default_pass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/generic-listpairs/http_default_pass.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/generic-listpairs/http_default_userpass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/generic-listpairs/http_default_userpass.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/generic-listpairs/http_default_users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/generic-listpairs/http_default_users.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/names/namelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/names/namelist.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/oracle/_hci_oracle_passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/oracle/_hci_oracle_passwords.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/oracle/_oracle_default_passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/oracle/_oracle_default_passwords.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/oracle/oracle_login_password.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/oracle/oracle_login_password.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/oracle/oracle_logins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/oracle/oracle_logins.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/oracle/oracle_passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/oracle/oracle_passwords.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/passwds/john.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/passwds/john.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/passwds/phpbb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/passwds/phpbb.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/passwds/twitter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/passwds/twitter.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/passwds/weaksauce.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/passwds/weaksauce.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/postgres/postgres_default_pass.txt: -------------------------------------------------------------------------------- 1 | 2 | tiger 3 | postgres 4 | password 5 | admin 6 | -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/postgres/postgres_default_user.txt: -------------------------------------------------------------------------------- 1 | postgres 2 | scott 3 | admin 4 | -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/postgres/postgres_default_userpass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/postgres/postgres_default_userpass.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/readme.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/tomcat/tomcat_mgr_default_pass.txt: -------------------------------------------------------------------------------- 1 | admin 2 | manager 3 | role1 4 | root 5 | tomcat 6 | -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/tomcat/tomcat_mgr_default_userpass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/tomcat/tomcat_mgr_default_userpass.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/tomcat/tomcat_mgr_default_users.txt: -------------------------------------------------------------------------------- 1 | admin 2 | manager 3 | role1 4 | root 5 | tomcat 6 | both 7 | -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/unix-os/unix_passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/unix-os/unix_passwords.txt -------------------------------------------------------------------------------- /py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/unix-os/unix_users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/py3webfuzz/web/data/fuzzdb/wordlists-user-passwd/unix-os/unix_users.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangelesg/py3webfuzz/HEAD/setup.py --------------------------------------------------------------------------------