2019-05-08 13:47:52 +03:00
|
|
|
#!/usr/bin/env python
|
2010-03-13 20:28:23 +03:00
|
|
|
|
|
|
|
"""
|
2019-01-05 23:38:52 +03:00
|
|
|
Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
|
2017-10-11 15:50:46 +03:00
|
|
|
See the file 'LICENSE' for copying permission
|
2010-03-13 20:28:23 +03:00
|
|
|
"""
|
|
|
|
|
2012-12-06 13:42:53 +04:00
|
|
|
class _Getch(object):
|
2010-03-13 20:28:23 +03:00
|
|
|
"""
|
|
|
|
Gets a single character from standard input. Does not echo to
|
2010-10-14 18:41:14 +04:00
|
|
|
the screen (reference: http://code.activestate.com/recipes/134892/)
|
2010-03-13 20:28:23 +03:00
|
|
|
"""
|
|
|
|
def __init__(self):
|
|
|
|
try:
|
|
|
|
self.impl = _GetchWindows()
|
|
|
|
except ImportError:
|
|
|
|
try:
|
|
|
|
self.impl = _GetchMacCarbon()
|
|
|
|
except(AttributeError, ImportError):
|
|
|
|
self.impl = _GetchUnix()
|
|
|
|
|
2013-01-10 16:18:44 +04:00
|
|
|
def __call__(self):
|
|
|
|
return self.impl()
|
2010-11-03 13:08:27 +03:00
|
|
|
|
2012-12-06 13:42:53 +04:00
|
|
|
class _GetchUnix(object):
|
2010-03-13 20:28:23 +03:00
|
|
|
def __init__(self):
|
2018-03-13 15:45:42 +03:00
|
|
|
__import__("tty")
|
2010-03-13 20:28:23 +03:00
|
|
|
|
|
|
|
def __call__(self):
|
2013-01-10 18:02:28 +04:00
|
|
|
import sys
|
|
|
|
import termios
|
|
|
|
import tty
|
|
|
|
|
2010-03-13 20:28:23 +03:00
|
|
|
fd = sys.stdin.fileno()
|
|
|
|
old_settings = termios.tcgetattr(fd)
|
|
|
|
try:
|
|
|
|
tty.setraw(sys.stdin.fileno())
|
|
|
|
ch = sys.stdin.read(1)
|
|
|
|
finally:
|
|
|
|
termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
|
|
|
|
return ch
|
|
|
|
|
2012-12-06 13:42:53 +04:00
|
|
|
class _GetchWindows(object):
|
2010-03-13 20:28:23 +03:00
|
|
|
def __init__(self):
|
2018-03-13 15:45:42 +03:00
|
|
|
__import__("msvcrt")
|
2010-03-13 20:28:23 +03:00
|
|
|
|
|
|
|
def __call__(self):
|
|
|
|
import msvcrt
|
|
|
|
return msvcrt.getch()
|
|
|
|
|
2012-12-06 13:42:53 +04:00
|
|
|
class _GetchMacCarbon(object):
|
2010-03-13 20:28:23 +03:00
|
|
|
"""
|
|
|
|
A function which returns the current ASCII key that is down;
|
|
|
|
if no ASCII key is down, the null string is returned. The
|
|
|
|
page http://www.mactech.com/macintosh-c/chap02-1.html was
|
|
|
|
very helpful in figuring out how to do this.
|
|
|
|
"""
|
|
|
|
def __init__(self):
|
|
|
|
import Carbon
|
2019-05-30 23:40:51 +03:00
|
|
|
|
2019-06-01 01:53:47 +03:00
|
|
|
getattr(Carbon, "Evt") # see if it has this (in Unix, it doesn't)
|
2010-03-13 20:28:23 +03:00
|
|
|
|
|
|
|
def __call__(self):
|
2019-06-01 01:53:47 +03:00
|
|
|
import Carbon
|
|
|
|
|
2013-01-10 16:18:44 +04:00
|
|
|
if Carbon.Evt.EventAvail(0x0008)[0] == 0: # 0x0008 is the keyDownMask
|
2010-03-13 20:28:23 +03:00
|
|
|
return ''
|
|
|
|
else:
|
|
|
|
#
|
|
|
|
# The event contains the following info:
|
|
|
|
# (what,msg,when,where,mod)=Carbon.Evt.GetNextEvent(0x0008)[1]
|
|
|
|
#
|
|
|
|
# The message (msg) contains the ASCII char which is
|
|
|
|
# extracted with the 0x000000FF charCodeMask; this
|
|
|
|
# number is converted to an ASCII character with chr() and
|
|
|
|
# returned
|
|
|
|
#
|
2013-01-10 16:18:44 +04:00
|
|
|
(what, msg, when, where, mod) = Carbon.Evt.GetNextEvent(0x0008)[1]
|
2010-03-13 20:28:23 +03:00
|
|
|
return chr(msg & 0x000000FF)
|
|
|
|
|
|
|
|
getch = _Getch()
|