├── Examples.tar.gz ├── Examples ├── .idea │ ├── .name │ ├── Examples.iml │ ├── encodings.xml │ ├── misc-DESKTOP-02TA9PR.xml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ ├── workspace-DESKTOP-02TA9PR.xml │ ├── workspace-libertad-2.xml │ ├── workspace-libertad.xml │ └── workspace.xml ├── Chapter02 │ └── Section-2 │ │ ├── Chapter-3.py │ │ ├── Video-2-header.py │ │ ├── Video-3-headers.py │ │ ├── Video-3.py │ │ └── Video-4.py ├── Chapter03 │ └── Section-3 │ │ ├── .idea │ │ ├── .name │ │ ├── Section-3.iml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ │ ├── basic_crawler │ │ ├── basic_crawler │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── items.py │ │ │ ├── items.pyc │ │ │ ├── pipelines.py │ │ │ ├── settings.py │ │ │ ├── settings.pyc │ │ │ └── spiders │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── spiderman.py │ │ │ │ └── spiderman.pyc │ │ └── scrapy.cfg │ │ └── examples │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── items.py │ │ ├── items.pyc │ │ ├── pipelines.py │ │ ├── settings.py │ │ ├── settings.pyc │ │ ├── spiders │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── spiderman-base.py │ │ ├── spiderman-base.pyc │ │ ├── spiderman-c.py │ │ ├── spiderman-recursive.py │ │ ├── spiderman-recursive.pyc │ │ ├── spiderman.py │ │ └── spiderman.pyc │ │ └── test.json ├── Chapter04 │ └── Section-4 │ │ ├── common.txt │ │ ├── commons.txt │ │ ├── forzabruta-2.py │ │ ├── forzabruta-3.py │ │ ├── forzabruta-4.py │ │ ├── forzabruta-back.py │ │ ├── forzabruta.py │ │ ├── ghostdriver.log │ │ ├── test.py │ │ └── timeoutsocket.py ├── Chapter05 │ └── Section-5 │ │ ├── Section 5 - Video 2.pptx │ │ ├── back2basics.py │ │ ├── back2digest.py │ │ ├── back2forms.py │ │ ├── brute-digest.py │ │ ├── common.txt │ │ ├── forzaBruta-forms.py │ │ ├── pass.txt │ │ └── passw.txt ├── Chapter06 │ └── Section-6 │ │ ├── SQLinjector-0.py │ │ ├── SQLinjector-1.py │ │ ├── SQLinjector-2.py │ │ ├── SQLinjector-3.py │ │ ├── SQLinjector-4.py │ │ └── injections.txt └── Chapter07 │ └── Section-7 │ ├── mitm-0.py │ ├── mitm-1.py │ ├── mitm-2.py │ ├── mitm-3.py │ └── sslcaudit.0 │ ├── tmpq8l6su-cert.pem │ └── tmpq8l6su-key.pem ├── LICENSE ├── README.md └── VM-info.txt /Examples.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples.tar.gz -------------------------------------------------------------------------------- /Examples/.idea/.name: -------------------------------------------------------------------------------- 1 | Examples -------------------------------------------------------------------------------- /Examples/.idea/Examples.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/.idea/Examples.iml -------------------------------------------------------------------------------- /Examples/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/.idea/encodings.xml -------------------------------------------------------------------------------- /Examples/.idea/misc-DESKTOP-02TA9PR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/.idea/misc-DESKTOP-02TA9PR.xml -------------------------------------------------------------------------------- /Examples/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/.idea/misc.xml -------------------------------------------------------------------------------- /Examples/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/.idea/modules.xml -------------------------------------------------------------------------------- /Examples/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/.idea/vcs.xml -------------------------------------------------------------------------------- /Examples/.idea/workspace-DESKTOP-02TA9PR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/.idea/workspace-DESKTOP-02TA9PR.xml -------------------------------------------------------------------------------- /Examples/.idea/workspace-libertad-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/.idea/workspace-libertad-2.xml -------------------------------------------------------------------------------- /Examples/.idea/workspace-libertad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/.idea/workspace-libertad.xml -------------------------------------------------------------------------------- /Examples/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/.idea/workspace.xml -------------------------------------------------------------------------------- /Examples/Chapter02/Section-2/Chapter-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter02/Section-2/Chapter-3.py -------------------------------------------------------------------------------- /Examples/Chapter02/Section-2/Video-2-header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter02/Section-2/Video-2-header.py -------------------------------------------------------------------------------- /Examples/Chapter02/Section-2/Video-3-headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter02/Section-2/Video-3-headers.py -------------------------------------------------------------------------------- /Examples/Chapter02/Section-2/Video-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter02/Section-2/Video-3.py -------------------------------------------------------------------------------- /Examples/Chapter02/Section-2/Video-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter02/Section-2/Video-4.py -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/.idea/.name: -------------------------------------------------------------------------------- 1 | Section-3 -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/.idea/Section-3.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/.idea/Section-3.iml -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/.idea/encodings.xml -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/.idea/misc.xml -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/.idea/modules.xml -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/.idea/vcs.xml -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/.idea/workspace.xml -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/basic_crawler/basic_crawler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/basic_crawler/basic_crawler/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/basic_crawler/basic_crawler/__init__.pyc -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/basic_crawler/basic_crawler/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/basic_crawler/basic_crawler/items.py -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/basic_crawler/basic_crawler/items.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/basic_crawler/basic_crawler/items.pyc -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/basic_crawler/basic_crawler/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/basic_crawler/basic_crawler/pipelines.py -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/basic_crawler/basic_crawler/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/basic_crawler/basic_crawler/settings.py -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/basic_crawler/basic_crawler/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/basic_crawler/basic_crawler/settings.pyc -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/basic_crawler/basic_crawler/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/basic_crawler/basic_crawler/spiders/__init__.py -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/basic_crawler/basic_crawler/spiders/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/basic_crawler/basic_crawler/spiders/__init__.pyc -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/basic_crawler/basic_crawler/spiders/spiderman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/basic_crawler/basic_crawler/spiders/spiderman.py -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/basic_crawler/basic_crawler/spiders/spiderman.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/basic_crawler/basic_crawler/spiders/spiderman.pyc -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/basic_crawler/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/basic_crawler/scrapy.cfg -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/examples/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/examples/__init__.pyc -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/examples/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/examples/items.py -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/examples/items.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/examples/items.pyc -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/examples/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/examples/pipelines.py -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/examples/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/examples/settings.py -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/examples/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/examples/settings.pyc -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/examples/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/examples/spiders/__init__.py -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/examples/spiders/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/examples/spiders/__init__.pyc -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/examples/spiders/spiderman-base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/examples/spiders/spiderman-base.py -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/examples/spiders/spiderman-base.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/examples/spiders/spiderman-base.pyc -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/examples/spiders/spiderman-c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/examples/spiders/spiderman-c.py -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/examples/spiders/spiderman-recursive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/examples/spiders/spiderman-recursive.py -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/examples/spiders/spiderman-recursive.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/examples/spiders/spiderman-recursive.pyc -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/examples/spiders/spiderman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/examples/spiders/spiderman.py -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/examples/spiders/spiderman.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/examples/spiders/spiderman.pyc -------------------------------------------------------------------------------- /Examples/Chapter03/Section-3/examples/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter03/Section-3/examples/test.json -------------------------------------------------------------------------------- /Examples/Chapter04/Section-4/common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter04/Section-4/common.txt -------------------------------------------------------------------------------- /Examples/Chapter04/Section-4/commons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter04/Section-4/commons.txt -------------------------------------------------------------------------------- /Examples/Chapter04/Section-4/forzabruta-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter04/Section-4/forzabruta-2.py -------------------------------------------------------------------------------- /Examples/Chapter04/Section-4/forzabruta-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter04/Section-4/forzabruta-3.py -------------------------------------------------------------------------------- /Examples/Chapter04/Section-4/forzabruta-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter04/Section-4/forzabruta-4.py -------------------------------------------------------------------------------- /Examples/Chapter04/Section-4/forzabruta-back.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter04/Section-4/forzabruta-back.py -------------------------------------------------------------------------------- /Examples/Chapter04/Section-4/forzabruta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter04/Section-4/forzabruta.py -------------------------------------------------------------------------------- /Examples/Chapter04/Section-4/ghostdriver.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter04/Section-4/ghostdriver.log -------------------------------------------------------------------------------- /Examples/Chapter04/Section-4/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter04/Section-4/test.py -------------------------------------------------------------------------------- /Examples/Chapter04/Section-4/timeoutsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter04/Section-4/timeoutsocket.py -------------------------------------------------------------------------------- /Examples/Chapter05/Section-5/Section 5 - Video 2.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter05/Section-5/Section 5 - Video 2.pptx -------------------------------------------------------------------------------- /Examples/Chapter05/Section-5/back2basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter05/Section-5/back2basics.py -------------------------------------------------------------------------------- /Examples/Chapter05/Section-5/back2digest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter05/Section-5/back2digest.py -------------------------------------------------------------------------------- /Examples/Chapter05/Section-5/back2forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter05/Section-5/back2forms.py -------------------------------------------------------------------------------- /Examples/Chapter05/Section-5/brute-digest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter05/Section-5/brute-digest.py -------------------------------------------------------------------------------- /Examples/Chapter05/Section-5/common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter05/Section-5/common.txt -------------------------------------------------------------------------------- /Examples/Chapter05/Section-5/forzaBruta-forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter05/Section-5/forzaBruta-forms.py -------------------------------------------------------------------------------- /Examples/Chapter05/Section-5/pass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter05/Section-5/pass.txt -------------------------------------------------------------------------------- /Examples/Chapter05/Section-5/passw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter05/Section-5/passw.txt -------------------------------------------------------------------------------- /Examples/Chapter06/Section-6/SQLinjector-0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter06/Section-6/SQLinjector-0.py -------------------------------------------------------------------------------- /Examples/Chapter06/Section-6/SQLinjector-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter06/Section-6/SQLinjector-1.py -------------------------------------------------------------------------------- /Examples/Chapter06/Section-6/SQLinjector-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter06/Section-6/SQLinjector-2.py -------------------------------------------------------------------------------- /Examples/Chapter06/Section-6/SQLinjector-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter06/Section-6/SQLinjector-3.py -------------------------------------------------------------------------------- /Examples/Chapter06/Section-6/SQLinjector-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter06/Section-6/SQLinjector-4.py -------------------------------------------------------------------------------- /Examples/Chapter06/Section-6/injections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter06/Section-6/injections.txt -------------------------------------------------------------------------------- /Examples/Chapter07/Section-7/mitm-0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter07/Section-7/mitm-0.py -------------------------------------------------------------------------------- /Examples/Chapter07/Section-7/mitm-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter07/Section-7/mitm-1.py -------------------------------------------------------------------------------- /Examples/Chapter07/Section-7/mitm-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter07/Section-7/mitm-2.py -------------------------------------------------------------------------------- /Examples/Chapter07/Section-7/mitm-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter07/Section-7/mitm-3.py -------------------------------------------------------------------------------- /Examples/Chapter07/Section-7/sslcaudit.0/tmpq8l6su-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter07/Section-7/sslcaudit.0/tmpq8l6su-cert.pem -------------------------------------------------------------------------------- /Examples/Chapter07/Section-7/sslcaudit.0/tmpq8l6su-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/Examples/Chapter07/Section-7/sslcaudit.0/tmpq8l6su-key.pem -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/README.md -------------------------------------------------------------------------------- /VM-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Python-Web-Penetration-Testing/HEAD/VM-info.txt --------------------------------------------------------------------------------