gitextract_gly9vf9i/ ├── .gitattributes ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ └── tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── data/ │ ├── 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.cfm_ │ │ │ ├── backdoor.jsp_ │ │ │ └── backdoor.php_ │ │ └── stagers/ │ │ ├── stager.asp_ │ │ ├── stager.aspx_ │ │ ├── stager.cfm_ │ │ ├── stager.jsp_ │ │ └── stager.php_ │ ├── txt/ │ │ ├── common-columns.txt │ │ ├── common-files.txt │ │ ├── common-outputs.txt │ │ ├── common-tables.txt │ │ ├── keywords.txt │ │ ├── sha256sums.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-ar-AR.md │ ├── README-bg-BG.md │ ├── README-bn-BD.md │ ├── README-ckb-KU.md │ ├── README-de-DE.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-in-HI.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-RU.md │ ├── README-sk-SK.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 │ │ ├── newlines.py │ │ ├── postcommit-hook.sh │ │ ├── precommit-hook.sh │ │ ├── pycodestyle.sh │ │ ├── pydiatra.sh │ │ ├── pyflakes.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 │ │ ├── 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 │ ├── gui.py │ ├── har.py │ ├── hash.py │ ├── hashdb.py │ ├── pivotdumptable.py │ ├── progress.py │ ├── purge.py │ ├── safe2bin.py │ ├── search.py │ ├── sgmllib.py │ ├── sqlalchemy.py │ ├── timeout.py │ ├── tui.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 │ │ ├── clickhouse/ │ │ │ ├── __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 │ │ ├── snowflake/ │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ ├── enumeration.py │ │ │ ├── filesystem.py │ │ │ ├── fingerprint.py │ │ │ ├── syntax.py │ │ │ └── takeover.py │ │ ├── spanner/ │ │ │ ├── __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.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 │ ├── decentities.py │ ├── dunion.py │ ├── equaltolike.py │ ├── equaltorlike.py │ ├── escapequotes.py │ ├── greatest.py │ ├── halfversionedmorekeywords.py │ ├── hex2char.py │ ├── hexentities.py │ ├── htmlencode.py │ ├── if2case.py │ ├── ifnull2casewhenisnull.py │ ├── ifnull2ifisnull.py │ ├── informationschemacomment.py │ ├── least.py │ ├── lowercase.py │ ├── luanginx.py │ ├── luanginxmore.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 │ ├── scientific.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 ├── 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