mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
24 lines
593 B
Python
24 lines
593 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
import threading
|
||
|
|
||
|
def timeout(func, args=(), kwargs={}, timeout_duration=1, default=None):
|
||
|
class InterruptableThread(threading.Thread):
|
||
|
def __init__(self):
|
||
|
threading.Thread.__init__(self)
|
||
|
self.result = None
|
||
|
|
||
|
def run(self):
|
||
|
try:
|
||
|
self.result = func(*args, **kwargs)
|
||
|
except:
|
||
|
self.result = default
|
||
|
|
||
|
thread = InterruptableThread()
|
||
|
thread.start()
|
||
|
thread.join(timeout_duration)
|
||
|
if thread.isAlive():
|
||
|
return default
|
||
|
else:
|
||
|
return thread.result
|