gitextract_3mysnl5m/ ├── .deepsource.toml ├── .github/ │ └── FUNDING.yml ├── README.md ├── nikto/ │ ├── .dockerignore │ ├── .editorconfig │ ├── .gitattributes │ ├── .github/ │ │ ├── FUNDING.yml │ │ └── ISSUE_TEMPLATE/ │ │ ├── FeatureRequest.md │ │ ├── TestRequest.md │ │ ├── bug_report.md │ │ ├── config.yml │ │ └── false_positive_negative_report.md │ ├── .gitignore │ ├── COPYING │ ├── Dockerfile │ ├── README.md │ ├── devdocs/ │ │ ├── documentation_notes.txt │ │ └── perltidyrc │ ├── documentation/ │ │ ├── config.xsl │ │ ├── doc.css │ │ ├── manpage.xml │ │ └── nikto.1 │ └── program/ │ ├── databases/ │ │ ├── db_404_strings │ │ ├── db_content_search │ │ ├── db_dictionary │ │ ├── db_dir_traversal │ │ ├── db_domino │ │ ├── db_drupal │ │ ├── db_embedded │ │ ├── db_favicon │ │ ├── db_headers │ │ ├── db_httpoptions │ │ ├── db_multiple_index │ │ ├── db_outdated │ │ ├── db_parked_strings │ │ ├── db_realms │ │ ├── db_server_msgs │ │ ├── db_tests │ │ └── db_variables │ ├── docs/ │ │ ├── nikto.1 │ │ ├── nikto.dtd │ │ ├── nikto_manual.html │ │ └── nikto_schema.sql │ ├── nikto.conf.default │ ├── nikto.pl │ ├── plugins/ │ │ ├── LW2.pm │ │ ├── nikto_apache_expect_xss.plugin │ │ ├── nikto_apacheusers.plugin │ │ ├── nikto_auth.plugin │ │ ├── nikto_cgi.plugin │ │ ├── nikto_clientaccesspolicy.plugin │ │ ├── nikto_content_search.plugin │ │ ├── nikto_cookies.plugin │ │ ├── nikto_core.plugin │ │ ├── nikto_dictionary_attack.plugin │ │ ├── nikto_dir_traversal.plugin │ │ ├── nikto_dishwasher.plugin │ │ ├── nikto_docker_registry.plugin │ │ ├── nikto_domino.plugin │ │ ├── nikto_drupal.plugin │ │ ├── nikto_embedded.plugin │ │ ├── nikto_favicon.plugin │ │ ├── nikto_fileops.plugin │ │ ├── nikto_headers.plugin │ │ ├── nikto_httpoptions.plugin │ │ ├── nikto_ms10_070.plugin │ │ ├── nikto_msgs.plugin │ │ ├── nikto_multiple_index.plugin │ │ ├── nikto_negotiate.plugin │ │ ├── nikto_origin_reflection.plugin │ │ ├── nikto_outdated.plugin │ │ ├── nikto_parked.plugin │ │ ├── nikto_paths.plugin │ │ ├── nikto_put_del_test.plugin │ │ ├── nikto_report_csv.plugin │ │ ├── nikto_report_html.plugin │ │ ├── nikto_report_json.plugin │ │ ├── nikto_report_nbe.plugin │ │ ├── nikto_report_sqlg.plugin │ │ ├── nikto_report_text.plugin │ │ ├── nikto_report_xml.plugin │ │ ├── nikto_robots.plugin │ │ ├── nikto_shellshock.plugin │ │ ├── nikto_siebel.plugin │ │ ├── nikto_sitefiles.plugin │ │ ├── nikto_ssl.plugin │ │ ├── nikto_strutshock.plugin │ │ └── nikto_tests.plugin │ ├── replay.pl │ └── templates/ │ ├── htm_close.tmpl │ ├── htm_end.tmpl │ ├── htm_host_head.tmpl │ ├── htm_host_im.tmpl │ ├── htm_host_item.tmpl │ ├── htm_start.tmpl │ ├── htm_stop.tmpl │ ├── htm_summary.tmpl │ ├── xml_close.tmpl │ ├── xml_end.tmpl │ ├── xml_host_head.tmpl │ ├── xml_host_im.tmpl │ ├── xml_host_item.tmpl │ ├── xml_start.tmpl │ └── xml_summary.tmpl ├── req_solos/ │ ├── anew │ ├── gau │ ├── gauplus │ ├── httpx │ ├── pv │ └── waybackurls ├── sqlmap/ │ ├── .gitattributes │ ├── .github/ │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── FUNDING.yml │ │ ├── ISSUE_TEMPLATE/ │ │ │ ├── bug_report.md │ │ │ └── feature_request.md │ │ └── workflows/ │ │ └── tests.yml │ ├── .gitignore │ ├── .pylintrc │ ├── LICENSE │ ├── README.md │ ├── data/ │ │ ├── html/ │ │ │ └── index.html │ │ ├── procs/ │ │ │ ├── README.txt │ │ │ ├── mssqlserver/ │ │ │ │ ├── activate_sp_oacreate.sql │ │ │ │ ├── configure_openrowset.sql │ │ │ │ ├── configure_xp_cmdshell.sql │ │ │ │ ├── create_new_xp_cmdshell.sql │ │ │ │ ├── disable_xp_cmdshell_2000.sql │ │ │ │ ├── dns_request.sql │ │ │ │ ├── enable_xp_cmdshell_2000.sql │ │ │ │ └── run_statement_as_user.sql │ │ │ ├── mysql/ │ │ │ │ ├── dns_request.sql │ │ │ │ └── write_file_limit.sql │ │ │ ├── oracle/ │ │ │ │ ├── dns_request.sql │ │ │ │ └── read_file_export_extension.sql │ │ │ └── postgresql/ │ │ │ └── dns_request.sql │ │ ├── shell/ │ │ │ ├── README.txt │ │ │ ├── backdoors/ │ │ │ │ ├── backdoor.asp_ │ │ │ │ ├── backdoor.aspx_ │ │ │ │ ├── backdoor.jsp_ │ │ │ │ └── backdoor.php_ │ │ │ └── stagers/ │ │ │ ├── stager.asp_ │ │ │ ├── stager.aspx_ │ │ │ ├── stager.jsp_ │ │ │ └── stager.php_ │ │ ├── txt/ │ │ │ ├── common-columns.txt │ │ │ ├── common-files.txt │ │ │ ├── common-outputs.txt │ │ │ ├── common-tables.txt │ │ │ ├── keywords.txt │ │ │ ├── smalldict.txt │ │ │ ├── user-agents.txt │ │ │ └── wordlist.tx_ │ │ ├── udf/ │ │ │ ├── README.txt │ │ │ ├── mysql/ │ │ │ │ ├── linux/ │ │ │ │ │ ├── 32/ │ │ │ │ │ │ └── lib_mysqludf_sys.so_ │ │ │ │ │ └── 64/ │ │ │ │ │ └── lib_mysqludf_sys.so_ │ │ │ │ └── windows/ │ │ │ │ ├── 32/ │ │ │ │ │ └── lib_mysqludf_sys.dll_ │ │ │ │ └── 64/ │ │ │ │ └── lib_mysqludf_sys.dll_ │ │ │ └── postgresql/ │ │ │ ├── linux/ │ │ │ │ ├── 32/ │ │ │ │ │ ├── 10/ │ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ │ ├── 11/ │ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ │ ├── 8.2/ │ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ │ ├── 8.3/ │ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ │ ├── 8.4/ │ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ │ ├── 9.0/ │ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ │ ├── 9.1/ │ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ │ ├── 9.2/ │ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ │ ├── 9.3/ │ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ │ ├── 9.4/ │ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ │ ├── 9.5/ │ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ │ └── 9.6/ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ └── 64/ │ │ │ │ ├── 10/ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ ├── 11/ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ ├── 12/ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ ├── 8.2/ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ ├── 8.3/ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ ├── 8.4/ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ ├── 9.0/ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ ├── 9.1/ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ ├── 9.2/ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ ├── 9.3/ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ ├── 9.4/ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ ├── 9.5/ │ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ │ └── 9.6/ │ │ │ │ └── lib_postgresqludf_sys.so_ │ │ │ └── windows/ │ │ │ └── 32/ │ │ │ ├── 8.2/ │ │ │ │ └── lib_postgresqludf_sys.dll_ │ │ │ ├── 8.3/ │ │ │ │ └── lib_postgresqludf_sys.dll_ │ │ │ ├── 8.4/ │ │ │ │ └── lib_postgresqludf_sys.dll_ │ │ │ └── 9.0/ │ │ │ └── lib_postgresqludf_sys.dll_ │ │ └── xml/ │ │ ├── banner/ │ │ │ ├── generic.xml │ │ │ ├── mssql.xml │ │ │ ├── mysql.xml │ │ │ ├── oracle.xml │ │ │ ├── postgresql.xml │ │ │ ├── server.xml │ │ │ ├── servlet-engine.xml │ │ │ ├── set-cookie.xml │ │ │ ├── sharepoint.xml │ │ │ ├── x-aspnet-version.xml │ │ │ └── x-powered-by.xml │ │ ├── boundaries.xml │ │ ├── errors.xml │ │ ├── payloads/ │ │ │ ├── boolean_blind.xml │ │ │ ├── error_based.xml │ │ │ ├── inline_query.xml │ │ │ ├── stacked_queries.xml │ │ │ ├── time_blind.xml │ │ │ └── union_query.xml │ │ └── queries.xml │ ├── doc/ │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── THANKS.md │ │ ├── THIRD-PARTY.md │ │ └── translations/ │ │ ├── README-bg-BG.md │ │ ├── README-de-GER.md │ │ ├── README-es-MX.md │ │ ├── README-fa-IR.md │ │ ├── README-fr-FR.md │ │ ├── README-gr-GR.md │ │ ├── README-hr-HR.md │ │ ├── README-id-ID.md │ │ ├── README-it-IT.md │ │ ├── README-ja-JP.md │ │ ├── README-ka-GE.md │ │ ├── README-ko-KR.md │ │ ├── README-nl-NL.md │ │ ├── README-pl-PL.md │ │ ├── README-pt-BR.md │ │ ├── README-rs-RS.md │ │ ├── README-ru-RUS.md │ │ ├── README-tr-TR.md │ │ ├── README-uk-UA.md │ │ ├── README-vi-VN.md │ │ └── README-zh-CN.md │ ├── extra/ │ │ ├── __init__.py │ │ ├── beep/ │ │ │ ├── __init__.py │ │ │ └── beep.py │ │ ├── cloak/ │ │ │ ├── README.txt │ │ │ ├── __init__.py │ │ │ └── cloak.py │ │ ├── dbgtool/ │ │ │ ├── README.txt │ │ │ ├── __init__.py │ │ │ └── dbgtool.py │ │ ├── icmpsh/ │ │ │ ├── README.txt │ │ │ ├── __init__.py │ │ │ ├── icmpsh-m.c │ │ │ ├── icmpsh-m.pl │ │ │ ├── icmpsh-s.c │ │ │ ├── icmpsh.exe_ │ │ │ └── icmpsh_m.py │ │ ├── runcmd/ │ │ │ ├── README.txt │ │ │ ├── runcmd.exe_ │ │ │ └── src/ │ │ │ ├── README.txt │ │ │ ├── runcmd/ │ │ │ │ ├── runcmd.cpp │ │ │ │ ├── runcmd.vcproj │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ └── runcmd.sln │ │ ├── shellcodeexec/ │ │ │ ├── README.txt │ │ │ ├── linux/ │ │ │ │ ├── shellcodeexec.x32_ │ │ │ │ └── shellcodeexec.x64_ │ │ │ └── windows/ │ │ │ └── shellcodeexec.x32.exe_ │ │ ├── shutils/ │ │ │ ├── autocompletion.sh │ │ │ ├── blanks.sh │ │ │ ├── drei.sh │ │ │ ├── duplicates.py │ │ │ ├── junk.sh │ │ │ ├── modernize.sh │ │ │ ├── newlines.py │ │ │ ├── postcommit-hook.sh │ │ │ ├── precommit-hook.sh │ │ │ ├── pycodestyle.sh │ │ │ ├── pydiatra.sh │ │ │ ├── pyflakes.sh │ │ │ ├── pylint.sh │ │ │ ├── pypi.sh │ │ │ ├── recloak.sh │ │ │ └── strip.sh │ │ └── vulnserver/ │ │ ├── __init__.py │ │ └── vulnserver.py │ ├── lib/ │ │ ├── __init__.py │ │ ├── controller/ │ │ │ ├── __init__.py │ │ │ ├── action.py │ │ │ ├── checks.py │ │ │ ├── controller.py │ │ │ └── handler.py │ │ ├── core/ │ │ │ ├── __init__.py │ │ │ ├── agent.py │ │ │ ├── bigarray.py │ │ │ ├── common.py │ │ │ ├── compat.py │ │ │ ├── convert.py │ │ │ ├── data.py │ │ │ ├── datatype.py │ │ │ ├── decorators.py │ │ │ ├── defaults.py │ │ │ ├── dicts.py │ │ │ ├── dump.py │ │ │ ├── enums.py │ │ │ ├── exception.py │ │ │ ├── gui.py │ │ │ ├── log.py │ │ │ ├── option.py │ │ │ ├── optiondict.py │ │ │ ├── patch.py │ │ │ ├── profiling.py │ │ │ ├── readlineng.py │ │ │ ├── replication.py │ │ │ ├── revision.py │ │ │ ├── session.py │ │ │ ├── settings.py │ │ │ ├── shell.py │ │ │ ├── subprocessng.py │ │ │ ├── target.py │ │ │ ├── testing.py │ │ │ ├── threads.py │ │ │ ├── unescaper.py │ │ │ ├── update.py │ │ │ └── wordlist.py │ │ ├── parse/ │ │ │ ├── __init__.py │ │ │ ├── banner.py │ │ │ ├── cmdline.py │ │ │ ├── configfile.py │ │ │ ├── handler.py │ │ │ ├── headers.py │ │ │ ├── html.py │ │ │ ├── payloads.py │ │ │ └── sitemap.py │ │ ├── request/ │ │ │ ├── __init__.py │ │ │ ├── basic.py │ │ │ ├── basicauthhandler.py │ │ │ ├── chunkedhandler.py │ │ │ ├── comparison.py │ │ │ ├── connect.py │ │ │ ├── direct.py │ │ │ ├── dns.py │ │ │ ├── httpshandler.py │ │ │ ├── inject.py │ │ │ ├── methodrequest.py │ │ │ ├── pkihandler.py │ │ │ ├── rangehandler.py │ │ │ ├── redirecthandler.py │ │ │ └── templates.py │ │ ├── takeover/ │ │ │ ├── __init__.py │ │ │ ├── abstraction.py │ │ │ ├── icmpsh.py │ │ │ ├── metasploit.py │ │ │ ├── registry.py │ │ │ ├── udf.py │ │ │ ├── web.py │ │ │ └── xp_cmdshell.py │ │ ├── techniques/ │ │ │ ├── __init__.py │ │ │ ├── blind/ │ │ │ │ ├── __init__.py │ │ │ │ └── inference.py │ │ │ ├── dns/ │ │ │ │ ├── __init__.py │ │ │ │ ├── test.py │ │ │ │ └── use.py │ │ │ ├── error/ │ │ │ │ ├── __init__.py │ │ │ │ └── use.py │ │ │ └── union/ │ │ │ ├── __init__.py │ │ │ ├── test.py │ │ │ └── use.py │ │ └── utils/ │ │ ├── __init__.py │ │ ├── api.py │ │ ├── brute.py │ │ ├── crawler.py │ │ ├── deps.py │ │ ├── getch.py │ │ ├── har.py │ │ ├── hash.py │ │ ├── hashdb.py │ │ ├── httpd.py │ │ ├── pivotdumptable.py │ │ ├── progress.py │ │ ├── purge.py │ │ ├── safe2bin.py │ │ ├── search.py │ │ ├── sgmllib.py │ │ ├── sqlalchemy.py │ │ ├── timeout.py │ │ ├── versioncheck.py │ │ └── xrange.py │ ├── plugins/ │ │ ├── __init__.py │ │ ├── dbms/ │ │ │ ├── __init__.py │ │ │ ├── access/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── altibase/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── cache/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── cratedb/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── cubrid/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── db2/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── derby/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── extremedb/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── firebird/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── frontbase/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── h2/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── hsqldb/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── informix/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── maxdb/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── mckoi/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── mimersql/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── monetdb/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── mssqlserver/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── mysql/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── oracle/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── postgresql/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── presto/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── raima/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── sqlite/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── sybase/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ ├── vertica/ │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── enumeration.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── fingerprint.py │ │ │ │ ├── syntax.py │ │ │ │ └── takeover.py │ │ │ └── virtuoso/ │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ ├── enumeration.py │ │ │ ├── filesystem.py │ │ │ ├── fingerprint.py │ │ │ ├── syntax.py │ │ │ └── takeover.py │ │ └── generic/ │ │ ├── __init__.py │ │ ├── connector.py │ │ ├── custom.py │ │ ├── databases.py │ │ ├── entries.py │ │ ├── enumeration.py │ │ ├── filesystem.py │ │ ├── fingerprint.py │ │ ├── misc.py │ │ ├── search.py │ │ ├── syntax.py │ │ ├── takeover.py │ │ └── users.py │ ├── sqlmap │ ├── sqlmap.conf │ ├── sqlmap.py │ ├── sqlmapapi.py │ ├── sqlmapapi.yaml │ ├── tamper/ │ │ ├── 0eunion.py │ │ ├── __init__.py │ │ ├── apostrophemask.py │ │ ├── apostrophenullencode.py │ │ ├── appendnullbyte.py │ │ ├── base64encode.py │ │ ├── between.py │ │ ├── binary.py │ │ ├── bluecoat.py │ │ ├── chardoubleencode.py │ │ ├── charencode.py │ │ ├── charunicodeencode.py │ │ ├── charunicodeescape.py │ │ ├── commalesslimit.py │ │ ├── commalessmid.py │ │ ├── commentbeforeparentheses.py │ │ ├── concat2concatws.py │ │ ├── dunion.py │ │ ├── equaltolike.py │ │ ├── equaltorlike.py │ │ ├── escapequotes.py │ │ ├── greatest.py │ │ ├── halfversionedmorekeywords.py │ │ ├── hex2char.py │ │ ├── htmlencode.py │ │ ├── ifnull2casewhenisnull.py │ │ ├── ifnull2ifisnull.py │ │ ├── informationschemacomment.py │ │ ├── least.py │ │ ├── lowercase.py │ │ ├── luanginx.py │ │ ├── misunion.py │ │ ├── modsecurityversioned.py │ │ ├── modsecurityzeroversioned.py │ │ ├── multiplespaces.py │ │ ├── ord2ascii.py │ │ ├── overlongutf8.py │ │ ├── overlongutf8more.py │ │ ├── percentage.py │ │ ├── plus2concat.py │ │ ├── plus2fnconcat.py │ │ ├── randomcase.py │ │ ├── randomcomments.py │ │ ├── schemasplit.py │ │ ├── sleep2getlock.py │ │ ├── sp_password.py │ │ ├── space2comment.py │ │ ├── space2dash.py │ │ ├── space2hash.py │ │ ├── space2morecomment.py │ │ ├── space2morehash.py │ │ ├── space2mssqlblank.py │ │ ├── space2mssqlhash.py │ │ ├── space2mysqlblank.py │ │ ├── space2mysqldash.py │ │ ├── space2plus.py │ │ ├── space2randomblank.py │ │ ├── substring2leftright.py │ │ ├── symboliclogical.py │ │ ├── unionalltounion.py │ │ ├── unmagicquotes.py │ │ ├── uppercase.py │ │ ├── varnish.py │ │ ├── versionedkeywords.py │ │ ├── versionedmorekeywords.py │ │ └── xforwardedfor.py │ ├── thirdparty/ │ │ ├── __init__.py │ │ ├── ansistrm/ │ │ │ ├── __init__.py │ │ │ └── ansistrm.py │ │ ├── beautifulsoup/ │ │ │ ├── __init__.py │ │ │ └── beautifulsoup.py │ │ ├── bottle/ │ │ │ ├── __init__.py │ │ │ └── bottle.py │ │ ├── chardet/ │ │ │ ├── __init__.py │ │ │ ├── big5freq.py │ │ │ ├── big5prober.py │ │ │ ├── chardistribution.py │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetprober.py │ │ │ ├── codingstatemachine.py │ │ │ ├── compat.py │ │ │ ├── cp949prober.py │ │ │ ├── enums.py │ │ │ ├── escprober.py │ │ │ ├── escsm.py │ │ │ ├── eucjpprober.py │ │ │ ├── euckrfreq.py │ │ │ ├── euckrprober.py │ │ │ ├── euctwfreq.py │ │ │ ├── euctwprober.py │ │ │ ├── gb2312freq.py │ │ │ ├── gb2312prober.py │ │ │ ├── hebrewprober.py │ │ │ ├── jisfreq.py │ │ │ ├── jpcntx.py │ │ │ ├── langbulgarianmodel.py │ │ │ ├── langcyrillicmodel.py │ │ │ ├── langgreekmodel.py │ │ │ ├── langhebrewmodel.py │ │ │ ├── langhungarianmodel.py │ │ │ ├── langthaimodel.py │ │ │ ├── langturkishmodel.py │ │ │ ├── latin1prober.py │ │ │ ├── mbcharsetprober.py │ │ │ ├── mbcsgroupprober.py │ │ │ ├── mbcssm.py │ │ │ ├── sbcharsetprober.py │ │ │ ├── sbcsgroupprober.py │ │ │ ├── sjisprober.py │ │ │ ├── universaldetector.py │ │ │ ├── utf8prober.py │ │ │ └── version.py │ │ ├── clientform/ │ │ │ ├── __init__.py │ │ │ └── clientform.py │ │ ├── colorama/ │ │ │ ├── __init__.py │ │ │ ├── ansi.py │ │ │ ├── ansitowin32.py │ │ │ ├── initialise.py │ │ │ ├── win32.py │ │ │ └── winterm.py │ │ ├── fcrypt/ │ │ │ ├── __init__.py │ │ │ └── fcrypt.py │ │ ├── identywaf/ │ │ │ ├── LICENSE │ │ │ ├── __init__.py │ │ │ ├── data.json │ │ │ └── identYwaf.py │ │ ├── keepalive/ │ │ │ ├── __init__.py │ │ │ └── keepalive.py │ │ ├── magic/ │ │ │ ├── __init__.py │ │ │ └── magic.py │ │ ├── multipart/ │ │ │ ├── __init__.py │ │ │ └── multipartpost.py │ │ ├── odict/ │ │ │ ├── __init__.py │ │ │ └── ordereddict.py │ │ ├── prettyprint/ │ │ │ ├── __init__.py │ │ │ └── prettyprint.py │ │ ├── pydes/ │ │ │ ├── __init__.py │ │ │ └── pyDes.py │ │ ├── six/ │ │ │ └── __init__.py │ │ ├── socks/ │ │ │ ├── LICENSE │ │ │ ├── __init__.py │ │ │ └── socks.py │ │ ├── termcolor/ │ │ │ ├── __init__.py │ │ │ └── termcolor.py │ │ └── wininetpton/ │ │ ├── __init__.py │ │ └── win_inet_pton.py │ └── whitePagesSql.txt └── webHeck.sh