Re-evaluating tamper priorities

This commit is contained in:
Miroslav Štampar 2026-06-12 11:07:14 +02:00
parent 37322b5197
commit 994292edec
10 changed files with 18 additions and 18 deletions

View file

@ -9,7 +9,7 @@ import string
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOW
__priority__ = PRIORITY.LOWEST
def dependencies():
pass

View file

@ -9,7 +9,7 @@ import string
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.NORMAL
__priority__ = PRIORITY.LOWEST
def tamper(payload, **kwargs):
"""

View file

@ -7,7 +7,7 @@ See the file 'LICENSE' for copying permission
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOW
__priority__ = PRIORITY.LOWEST
def dependencies():
pass

View file

@ -7,7 +7,7 @@ See the file 'LICENSE' for copying permission
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOW
__priority__ = PRIORITY.LOWEST
def dependencies():
pass

View file

@ -9,7 +9,7 @@ import re
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOW
__priority__ = PRIORITY.LOWEST
def dependencies():
pass

View file

@ -11,7 +11,7 @@ import string
from lib.core.common import singleTimeWarnMessage
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOW
__priority__ = PRIORITY.LOWEST
def dependencies():
singleTimeWarnMessage("tamper script '%s' is only meant to be run against ASP web applications" % os.path.basename(__file__).split(".")[0])

View file

@ -7,7 +7,7 @@ See the file 'LICENSE' for copying permission
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.HIGH
__priority__ = PRIORITY.LOWEST
def tamper(payload, **kwargs):
"""

View file

@ -9,7 +9,7 @@ import re
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOWEST
__priority__ = PRIORITY.HIGHEST
def dependencies():
pass