We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dedf372 commit 5f382e5Copy full SHA for 5f382e5
lib/msf/core/payload/windows/reverse_http.rb
@@ -102,8 +102,8 @@ def required_space
102
# Add 100 bytes for the encoder to have some room
103
space += 100
104
105
- # Add 251 bytes for large URI support (technically a little less, but lets go with it)
106
- space += 251
+ # Make room for the maximum possible URL length
+ space += 256
107
108
# EXITFUNK processing adds 31 bytes at most (for ExitThread, only ~16 for others)
109
space += 31
0 commit comments