mirror of
https://github.com/defparam/smuggler
synced 2024-11-15 00:15:07 +00:00
b3516c3684
initial checkin
74 lines
2.6 KiB
Python
74 lines
2.6 KiB
Python
#!/usr/bin/python
|
|
# MIT License
|
|
#
|
|
# Copyright (c) 2020 Evan Custodio
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
# copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
# SOFTWARE.
|
|
import random
|
|
import re
|
|
|
|
RN = "\r\n"
|
|
EndChunk = "0\r\n\r\n"
|
|
def Chunked(data):
|
|
return hex(len(data))[2:]+RN+data+RN
|
|
|
|
class Payload():
|
|
def __init__(self, host=None):
|
|
self.header = None
|
|
self.body = None
|
|
self.method = "GET"
|
|
self.endpoint = "/"
|
|
self.host = host
|
|
self.cl = -1
|
|
|
|
def __str__(self):
|
|
def replace_random(match):
|
|
return str(random.random()).split('.')[1]
|
|
|
|
|
|
if (self.header == None):
|
|
raise AttributeError("No header data specified in Payload instance")
|
|
if (self.body == None):
|
|
raise AttributeError("No body data specified in Payload instance")
|
|
if (self.host == None):
|
|
raise AttributeError("No host specified in Payload instance")
|
|
|
|
result = self.header + RN + self.body
|
|
result = re.sub("__RANDOM__",replace_random,result)
|
|
|
|
if (self.cl < 0):
|
|
result = re.sub("__REPLACE_CL__",str(len(self.body)),result)
|
|
else:
|
|
result = re.sub("__REPLACE_CL__",str(self.cl),result)
|
|
|
|
result = re.sub("__METHOD__",self.method,result)
|
|
result = re.sub("__ENDPOINT__",self.endpoint,result)
|
|
result = re.sub("__HOST__",self.host,result)
|
|
|
|
return (result)
|
|
|
|
def __setattr__(self, name, value):
|
|
if name == "body" and (type("string") != type(value) and value != None):
|
|
raise AttributeError("Only string types allowed")
|
|
if name == "header" and (type("string") != type(value) and value != None):
|
|
raise AttributeError("Only string types allowed")
|
|
if name == "host" and (type("string") != type(value) and value != None):
|
|
raise AttributeError("Only string types allowed")
|
|
self.__dict__[name] = value
|