mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Dirty patch for #4001
This commit is contained in:
parent
dc87e10c99
commit
145f87c50d
2 changed files with 2 additions and 2 deletions
|
|
@ -1231,7 +1231,7 @@ def checkPipedInput():
|
|||
# Reference: https://stackoverflow.com/a/33873570
|
||||
"""
|
||||
|
||||
return not os.isatty(sys.stdin.fileno())
|
||||
return not os.isatty(sys.stdin.fileno()) if hasattr(sys.stdin, "fileno") else False
|
||||
|
||||
def isZipFile(filename):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue