pyt icon indicating copy to clipboard operation
pyt copied to clipboard

A Static Analysis Tool for Detecting Security Vulnerabilities in Python Web Applications

Results 27 pyt issues
Sort by recently updated
recently updated
newest added

You can do: `pip install pydocstyle` and then run this script while in the `pyt` directory ```python import os import re import subprocess import sys os.chdir(os.path.join('pyt')) try: docstyle = subprocess.run(["pydocstyle",...

good first issue
epic
help wanted

I discovered many SyntaxError during setup.py installation. ``` build/bdist.macosx-10.12-x86_64/egg/pyt/__main__.py", line 323 if args.print: ^ SyntaxError: invalid syntax ``` ``` File "build/bdist.macosx-10.12-x86_64/egg/pyt/analysis_base.py", line 9 class AnalysisBase(metaclass=ABCMeta): ^ SyntaxError: invalid syntax ```...

enhancement

It doesn't look like your scanner checks for regexes vulnerable to catastrophic backtracking (-> REDOS). To do that you could use some tools I built [here](https://github.com/davisjam/vuln-regex-detector). The underlying detectors incur...

feature request