mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Minor patch for stacked file writing in HSQLDB
This commit is contained in:
parent
4f425792e3
commit
244d283198
3 changed files with 4 additions and 4 deletions
|
|
@ -47,7 +47,7 @@ class Filesystem(GenericFilesystem):
|
|||
logger.debug(debugMsg)
|
||||
|
||||
# Reference: http://hsqldb.org/doc/guide/sqlroutines-chapt.html#src_jrt_procedures
|
||||
invokeQuery = "CALL %s('%s', CAST('%s' AS VARBINARY(%s)))" % (func_name, remoteFile, fcEncodedStr, max_bytes)
|
||||
invokeQuery = "CALL %s('%s', X'%s')" % (func_name, remoteFile, fcEncodedStr)
|
||||
inject.goStacked(invokeQuery)
|
||||
|
||||
logger.debug("cleaning up the database management system")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue