Skip to content

Commit 5d2972f

Browse files
committed
Implementation for an Issue #2221
1 parent ae465bb commit 5d2972f

3 files changed

Lines changed: 28 additions & 2 deletions

File tree

ISSUE_TEMPLATE.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
## What's the problem (or question)?
2+
<!--- If describing a bug, tell us what happens instead of the expected behavior -->
3+
<!--- If suggesting a change/improvement, explain the difference from current behavior -->
4+
5+
## Do you have an idea for a solution?
6+
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
7+
<!--- or ideas how to implement the addition or change -->
8+
9+
## How can we reproduce the issue?
10+
<!--- Provide unambiguous set of steps to reproduce this bug. Include command to reproduce, if relevant (you can mask the sensitive data) -->
11+
1.
12+
2.
13+
3.
14+
4.
15+
16+
## What are the running context details?
17+
<!--- Include as many relevant details about the running context you experienced the bug/problem in -->
18+
* Installation method (e.g. `pip`, `apt-get`, `git clone` or `zip`/`tar.gz`):
19+
* Client OS (e.g. `Microsoft Windows 10`)
20+
* Program version (`python sqlmap.py --version` or `sqlmap --version` depending on installation):
21+
* Target DBMS (e.g. `Microsoft SQL Server`):
22+
* Detected WAF/IDS/IPS protection (e.g. `ModSecurity` or `unknown`):
23+
* SQLi techniques found by sqlmap (e.g. `error-based` and `boolean-based blind`):
24+
* Results of manual target assessment (e.g. found that the payload `query=test' AND 4113 IN ((SELECT 'foobar'))-- qKLV` works):
25+
* Relevant console output (if any):
26+
* Exception traceback (if any):

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.10.28"
22+
VERSION = "1.0.10.29"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

txt/checksum.md5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ e60456db5380840a586654344003d4e6 lib/core/readlineng.py
4545
5ef56abb8671c2ca6ceecb208258e360 lib/core/replication.py
4646
99a2b496b9d5b546b335653ca801153f lib/core/revision.py
4747
7c15dd2777af4dac2c89cab6df17462e lib/core/session.py
48-
ac827052826f001590f70cde79664861 lib/core/settings.py
48+
27584e6349d92ce4782a771deff5c665 lib/core/settings.py
4949
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
5050
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
5151
c3ace7874a536d801f308cf1fd03df99 lib/core/target.py

0 commit comments

Comments
 (0)