pyt
pyt copied to clipboard
A Static Analysis Tool for Detecting Security Vulnerabilities in Python Web Applications
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",...
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 ```...
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...
Testing