mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 19:13:48 +03:00
Fixes #1838
This commit is contained in:
parent
7afe655561
commit
e27f590c2c
|
@ -99,7 +99,7 @@ void usage(char *path)
|
||||||
printf(" -h this screen\n");
|
printf(" -h this screen\n");
|
||||||
printf(" -b num maximal number of blanks (unanswered icmp requests)\n");
|
printf(" -b num maximal number of blanks (unanswered icmp requests)\n");
|
||||||
printf(" before quitting\n");
|
printf(" before quitting\n");
|
||||||
printf(" -s bytes maximal data buffer size in bytes (default is 64 bytes)\n\n", DEFAULT_MAX_DATA_SIZE);
|
printf(" -s bytes maximal data buffer size in bytes (default is %u bytes)\n\n", DEFAULT_MAX_DATA_SIZE);
|
||||||
printf("In order to improve the speed, lower the delay (-d) between requests or\n");
|
printf("In order to improve the speed, lower the delay (-d) between requests or\n");
|
||||||
printf("increase the size (-s) of the data buffer\n");
|
printf("increase the size (-s) of the data buffer\n");
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,7 +19,7 @@ from lib.core.enums import OS
|
||||||
from lib.core.revision import getRevisionNumber
|
from lib.core.revision import getRevisionNumber
|
||||||
|
|
||||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||||
VERSION = "1.0.5.8"
|
VERSION = "1.0.5.9"
|
||||||
REVISION = getRevisionNumber()
|
REVISION = getRevisionNumber()
|
||||||
STABLE = VERSION.count('.') <= 2
|
STABLE = VERSION.count('.') <= 2
|
||||||
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
|
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user