sqlmap/lib/request/methodrequest.py

20 lines
444 B
Python
Raw Normal View History

#!/usr/bin/env python
"""
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
"""
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
def set_method(self, method):
self.method = method.upper()
2010-10-15 14:28:34 +04:00
def get_method(self):
return getattr(self, 'method', urllib2.Request.get_method(self))