├── .gitattributes ├── .github └── workflows │ ├── codeql.yaml │ └── python-app.yml ├── .gitignore ├── CONTRIBUTORS.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── img ├── real_example.png ├── simple_example.png └── simple_example_table_output.png ├── pyproject.toml └── src ├── forbidden ├── main.py └── utils │ ├── array.py │ ├── config.py │ ├── cookie.py │ ├── crypto.py │ ├── encode.py │ ├── file.py │ ├── forbidden.py │ ├── general.py │ ├── grep.py │ ├── header.py │ ├── ip.py │ ├── path.py │ ├── record.py │ ├── report.py │ ├── test.py │ ├── url.py │ ├── validate.py │ └── value.py └── stresser ├── main.py └── utils ├── array.py ├── config.py ├── cookie.py ├── directory.py ├── encode.py ├── file.py ├── general.py ├── grep.py ├── header.py ├── ip.py ├── path.py ├── record.py ├── report.py ├── stresser.py ├── url.py └── validate.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/codeql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/.github/workflows/codeql.yaml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/README.md -------------------------------------------------------------------------------- /img/real_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/img/real_example.png -------------------------------------------------------------------------------- /img/simple_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/img/simple_example.png -------------------------------------------------------------------------------- /img/simple_example_table_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/img/simple_example_table_output.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/forbidden/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/forbidden/main.py -------------------------------------------------------------------------------- /src/forbidden/utils/array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/forbidden/utils/array.py -------------------------------------------------------------------------------- /src/forbidden/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/forbidden/utils/config.py -------------------------------------------------------------------------------- /src/forbidden/utils/cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/forbidden/utils/cookie.py -------------------------------------------------------------------------------- /src/forbidden/utils/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/forbidden/utils/crypto.py -------------------------------------------------------------------------------- /src/forbidden/utils/encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/forbidden/utils/encode.py -------------------------------------------------------------------------------- /src/forbidden/utils/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/forbidden/utils/file.py -------------------------------------------------------------------------------- /src/forbidden/utils/forbidden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/forbidden/utils/forbidden.py -------------------------------------------------------------------------------- /src/forbidden/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/forbidden/utils/general.py -------------------------------------------------------------------------------- /src/forbidden/utils/grep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/forbidden/utils/grep.py -------------------------------------------------------------------------------- /src/forbidden/utils/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/forbidden/utils/header.py -------------------------------------------------------------------------------- /src/forbidden/utils/ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/forbidden/utils/ip.py -------------------------------------------------------------------------------- /src/forbidden/utils/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/forbidden/utils/path.py -------------------------------------------------------------------------------- /src/forbidden/utils/record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/forbidden/utils/record.py -------------------------------------------------------------------------------- /src/forbidden/utils/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/forbidden/utils/report.py -------------------------------------------------------------------------------- /src/forbidden/utils/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/forbidden/utils/test.py -------------------------------------------------------------------------------- /src/forbidden/utils/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/forbidden/utils/url.py -------------------------------------------------------------------------------- /src/forbidden/utils/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/forbidden/utils/validate.py -------------------------------------------------------------------------------- /src/forbidden/utils/value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/forbidden/utils/value.py -------------------------------------------------------------------------------- /src/stresser/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/stresser/main.py -------------------------------------------------------------------------------- /src/stresser/utils/array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/stresser/utils/array.py -------------------------------------------------------------------------------- /src/stresser/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/stresser/utils/config.py -------------------------------------------------------------------------------- /src/stresser/utils/cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/stresser/utils/cookie.py -------------------------------------------------------------------------------- /src/stresser/utils/directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/stresser/utils/directory.py -------------------------------------------------------------------------------- /src/stresser/utils/encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/stresser/utils/encode.py -------------------------------------------------------------------------------- /src/stresser/utils/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/stresser/utils/file.py -------------------------------------------------------------------------------- /src/stresser/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/stresser/utils/general.py -------------------------------------------------------------------------------- /src/stresser/utils/grep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/stresser/utils/grep.py -------------------------------------------------------------------------------- /src/stresser/utils/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/stresser/utils/header.py -------------------------------------------------------------------------------- /src/stresser/utils/ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/stresser/utils/ip.py -------------------------------------------------------------------------------- /src/stresser/utils/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/stresser/utils/path.py -------------------------------------------------------------------------------- /src/stresser/utils/record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/stresser/utils/record.py -------------------------------------------------------------------------------- /src/stresser/utils/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/stresser/utils/report.py -------------------------------------------------------------------------------- /src/stresser/utils/stresser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/stresser/utils/stresser.py -------------------------------------------------------------------------------- /src/stresser/utils/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/stresser/utils/url.py -------------------------------------------------------------------------------- /src/stresser/utils/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-sincek/forbidden/HEAD/src/stresser/utils/validate.py --------------------------------------------------------------------------------