sqlmap/lib/request/methodrequest.py

21 lines
449 B
Python
Raw Normal View History

#!/usr/bin/env python
"""
2012-07-12 21:38:03 +04:00
Copyright (c) 2006-2012 sqlmap developers (http://sqlmap.org/)
2010-10-15 03:18:29 +04:00
See the file 'doc/COPYING' for copying permission
"""
import urllib2
class MethodRequest(urllib2.Request):
2010-10-15 14:28:34 +04:00
'''
Used to create HEAD/PUT/DELETE/... requests with urllib2
'''
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))