This action will force synchronization from yeqingchen1/sqlmap, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
#!/usr/bin/env python"""Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)See the file 'LICENSE' for copying permission"""class _Getch(object):"""Gets a single character from standard input. Does not echo tothe screen (reference: http://code.activestate.com/recipes/134892/)"""def __init__(self):try:self.impl = _GetchWindows()except ImportError:try:self.impl = _GetchMacCarbon()except(AttributeError, ImportError):self.impl = _GetchUnix()def __call__(self):return self.impl()class _GetchUnix(object):def __init__(self):__import__("tty")def __call__(self):import sysimport termiosimport ttyfd = 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 chclass _GetchWindows(object):def __init__(self):__import__("msvcrt")def __call__(self):import msvcrtreturn msvcrt.getch()class _GetchMacCarbon(object):"""A function which returns the current ASCII key that is down;if no ASCII key is down, the null string is returned. Thepage http://www.mactech.com/macintosh-c/chap02-1.html wasvery helpful in figuring out how to do this."""def __init__(self):import Carbongetattr(Carbon, "Evt") # see if it has this (in Unix, it doesn't)def __call__(self):import Carbonif Carbon.Evt.EventAvail(0x0008)[0] == 0: # 0x0008 is the keyDownMaskreturn ''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#(what, msg, when, where, mod) = Carbon.Evt.GetNextEvent(0x0008)[1]return chr(msg & 0x000000FF)getch = _Getch()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。