Skip to content

Commit

Permalink
Fixed DYN method
Browse files Browse the repository at this point in the history
  • Loading branch information
SudoLite committed Mar 9, 2022
1 parent 993252b commit a309c64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions start.py
Original file line number Diff line number Diff line change
Expand Up @@ -758,10 +758,10 @@ def DGB(self):
Tools.safe_close(s)

def DYN(self):
payload: str | bytes = (self._payload +
payload: str | bytes = str.encode(self._payload +
"Host: %s.%s\r\n" % (ProxyTools.Random.rand_str(6), self._target.authority) +
self.randHeadercontent +
"\r\n")
self.SpoofIP +"\r\n")
s = None
with suppress(Exception), self.open_connection() as s:
for _ in range(self._rpc):
Expand Down

0 comments on commit a309c64

Please sign in to comment.