mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-26 19:43:48 +03:00
18 lines
302 B
Python
18 lines
302 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
"""
|
||
|
$Id$
|
||
|
|
||
|
Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/)
|
||
|
See the file 'doc/COPYING' for copying permission
|
||
|
"""
|
||
|
|
||
|
class PRIORITY:
|
||
|
LOWEST = -100
|
||
|
LOWER = -50
|
||
|
LOW = -10
|
||
|
NORMAL = 0
|
||
|
HIGH = 10
|
||
|
HIGHER = 50
|
||
|
HIGHEST = 100
|