Skip to content

Commit

Permalink
add TaintedPath in main
Browse files Browse the repository at this point in the history
  • Loading branch information
garbervetsky committed Oct 16, 2020
1 parent 960bb16 commit 6eafd8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions constraintsolving/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ def create_project_list(projectListFile):

parser.add_argument("--project-dir", dest="project_dir", required=True, type=str,
help="Directory of the CodeQL database")
parser.add_argument("--query-type", dest="query_type", required=True, type=str, choices=["Xss", "NoSql", "Sql", "Sel"],
parser.add_argument("--query-type", dest="query_type", required=True, type=str, choices=["Xss", "NoSql", "Sql", "Sel", "Path"],
help="Type of the query to solve")
parser.add_argument("--query-name", dest="query_name", required=True, type=str,
choices=["NosqlInjectionWorse", "SqlInjectionWorse", "DomBasedXssWorse", "SeldonWorse"],
choices=["NosqlInjectionWorse", "SqlInjectionWorse", "DomBasedXssWorse", "SeldonWorse", "TaintedPathWorse"],
help="Name of the query to solve")
parser.add_argument("--project-list", dest="projectListFile", required=False, type=str,
help="Run all steps on the project passed on this list")
Expand Down

0 comments on commit 6eafd8b

Please sign in to comment.