Raw Request Bug #1940
Raw Request Bug
#1940
-
Nuclei version:[INF] Current Version: 2.6.9 Current Behavior:When sending a raw request, a '/' is added. Expected Behavior:Raw request to be sent as described in the yaml. Steps To Reproduce:
|
Beta Was this translation helpful? Give feedback.
Answered by
ehsandeep
May 5, 2022
Replies: 1 comment
-
@vysecurity that's standard behavior as per RFC, but nuclei do support optional rawhttp library to make non rfc compliant requests, to use rawhttp library in your template you just need to add requests:
- raw:
- |+
GET 13333 HTTP/1.1
Host: {{Hostname}}
unsafe: true |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
forgedhallpass
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@vysecurity that's standard behavior as per RFC, but nuclei do support optional rawhttp library to make non rfc compliant requests, to use rawhttp library in your template you just need to add
unsafe: true
and it will work as you expected.