Skip to content

Commit

Permalink
fixes ASP generic for issue Ekultek#691
Browse files Browse the repository at this point in the history
  • Loading branch information
Ekultek committed Feb 1, 2020
1 parent d2fe54f commit 3bc7aaf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion content/plugins/aspgeneric.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def detect(content, **kwargs):
re.compile(r"request.could.not.be.understood", re.I),
re.compile(r"potentially.dangerous.request", re.I),
re.compile(r"runtime.error", re.I),
re.compile(r"a.potentially.dangerous.request.path.value.was.detected.from.the.client", re.I),
re.compile(r".>a.potentially.dangerous.request.path.value.was.detected.from.the.client+", re.I),
re.compile(r"asp.net.sessionid", re.I),
re.compile(r"errordocument.to.handle.the.request", re.I),
re.compile(r"an.application.error.occurred.on.the.server", re.I),
Expand Down
2 changes: 1 addition & 1 deletion lib/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
pass

# version number <major>.<minor>.<commit>
VERSION = "1.9.10"
VERSION = "1.9.11"

# version string
VERSION_TYPE = "($dev)" if VERSION.count(".") > 1 else "($stable)"
Expand Down

0 comments on commit 3bc7aaf

Please sign in to comment.