File tree Expand file tree Collapse file tree 3 files changed +15
-5
lines changed Expand file tree Collapse file tree 3 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 1
- ` py_find_injection ` uses various heuristics to look for SQL injection vulnerabilities in python source code.
1
+
2
+ # Py_find_injection
3
+
4
+ Py_find_injection uses various heuristics to look for SQL injection vulnerabilities in python source code.
5
+
6
+ Based on https://github.com/uber/py-find-injection .
7
+
8
+
9
+ # Usage
10
+ ``` shell
11
+ python bin/py_find_injection.py tests/samples/bad_script.py
12
+ ```
Original file line number Diff line number Diff line change 4
4
import ast
5
5
import sys
6
6
7
- version_info = (0 , 1 , 1 )
8
- __version__ = '0.1.1+dd.4'
9
-
7
+ version_info = (0 , 1 , 2 )
8
+ __version__ = '.' .join (map (str , version_info ))
10
9
11
10
def stringify (node ):
12
11
if isinstance (node , ast .Name ):
Original file line number Diff line number Diff line change 3
3
4
4
setup (
5
5
name = "py-find-injection" ,
6
- version = "0.1.1+dd.4 " ,
6
+ version = "0.1.2 " ,
7
7
author = "James Brown" ,
8
8
author_email = "jbrown@uber.com" ,
9
9
url = "https://github.com/uber/py-find-injection" ,
You can’t perform that action at this time.
0 commit comments