2013-02-14 15:32:17 +04:00
|
|
|
#!/usr/bin/env python
|
2010-09-15 16:45:41 +04:00
|
|
|
|
|
|
|
"""
|
2018-01-02 02:48:10 +03:00
|
|
|
Copyright (c) 2006-2018 sqlmap developers (http://sqlmap.org/)
|
2017-10-11 15:50:46 +03:00
|
|
|
See the file 'LICENSE' for copying permission
|
2010-09-15 16:45:41 +04:00
|
|
|
"""
|
|
|
|
|
|
|
|
import urllib2
|
|
|
|
|
|
|
|
class MethodRequest(urllib2.Request):
|
2015-01-14 18:11:55 +03:00
|
|
|
"""
|
2010-10-15 14:28:34 +04:00
|
|
|
Used to create HEAD/PUT/DELETE/... requests with urllib2
|
2015-01-14 18:11:55 +03:00
|
|
|
"""
|
2010-10-15 14:28:34 +04:00
|
|
|
|
2010-09-15 16:45:41 +04:00
|
|
|
def set_method(self, method):
|
|
|
|
self.method = method.upper()
|
2010-10-15 14:28:34 +04:00
|
|
|
|
2010-09-15 16:45:41 +04:00
|
|
|
def get_method(self):
|
|
|
|
return getattr(self, 'method', urllib2.Request.get_method(self))
|