mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
minor fix for issue #309
This commit is contained in:
parent
0037d52098
commit
9b422e1e94
2 changed files with 2 additions and 2 deletions
|
|
@ -72,7 +72,7 @@ class Filesystem:
|
||||||
infoMsg = "the remote file %s is larger than " % remoteFile
|
infoMsg = "the remote file %s is larger than " % remoteFile
|
||||||
infoMsg += "the local file %s" % localFile
|
infoMsg += "the local file %s" % localFile
|
||||||
else:
|
else:
|
||||||
infoMsg += ", but the size differs from the local "
|
infoMsg = "the remote file %s is smaller than " % remoteFile
|
||||||
infoMsg += "file '%s' (%d bytes)" % (localFile, localFileSize)
|
infoMsg += "file '%s' (%d bytes)" % (localFile, localFileSize)
|
||||||
|
|
||||||
logger.info(infoMsg)
|
logger.info(infoMsg)
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
LIMIT 1 INTO OUTFILE '%OUTFILE%' LINES TERMINATED BY 0x%HEXSTRING%--
|
LIMIT 0,1 INTO OUTFILE '%OUTFILE%' LINES TERMINATED BY 0x%HEXSTRING%--
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue