sqlmap/lib/utils/timeout.py

29 lines
729 B
Python
Raw Normal View History

2010-04-06 18:33:57 +04:00
#!/usr/bin/env python
import threading
2010-04-06 19:24:56 +04:00
from lib.core.data import logger
2010-04-06 18:59:31 +04:00
def timeout(func, args=(), kwargs={}, duration=1, default=None):
2010-04-06 18:33:57 +04:00
class InterruptableThread(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
2010-04-06 18:59:31 +04:00
self.exceeded = False
2010-04-06 18:33:57 +04:00
self.result = None
def run(self):
try:
self.result = func(*args, **kwargs)
2010-04-06 19:24:56 +04:00
except Exception, msg:
logger.log(8, msg)
2010-04-06 18:33:57 +04:00
self.result = default
thread = InterruptableThread()
thread.start()
2010-04-06 18:59:31 +04:00
thread.join(duration)
self.exceeded = thread.isAlive()
if self.exceeded:
2010-04-06 18:33:57 +04:00
return default
else:
return thread.result