Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dcbbad6

Browse files
committed
Minor self fix, switched to rc6
1 parent f6b447f commit dcbbad6

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import sys
2828

2929
# sqlmap version and site
30-
VERSION = "0.8-rc5"
30+
VERSION = "0.8-rc6"
3131
VERSION_STRING = "sqlmap/%s" % VERSION
3232
SITE = "http://sqlmap.sourceforge.net"
3333

lib/takeover/web.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def webBackdoorRunCmd(self, cmd):
7777

7878
def webFileUpload(self, fileToUpload, destFileName, directory):
7979
file = open(fileToUpload, "r")
80-
self.webFileStreamUpload(self, file, destFileName, directory)
80+
self.webFileStreamUpload(file, destFileName, directory)
8181
file.close()
8282

8383
def webFileStreamUpload(self, stream, destFileName, directory):
@@ -118,7 +118,7 @@ def webInit(self):
118118
if self.webBackdoorUrl is not None and self.webUploaderUrl is not None and self.webApi is not None:
119119
return
120120

121-
#self.checkDbmsOs()
121+
self.checkDbmsOs()
122122

123123
kb.docRoot = getDocRoot()
124124
directories = getDirs()
@@ -206,4 +206,4 @@ def webInit(self):
206206
break
207207

208208
backdoorStream.name = originalTempName
209-
209+

0 commit comments

Comments
 (0)