This repository was archived by the owner on Aug 31, 2023. It is now read-only.
Make header names and values extractable #9
Open
Webklex wants to merge 4 commits intotelekom-security:masterfrom
Open
Make header names and values extractable #9Webklex wants to merge 4 commits intotelekom-security:masterfrom
Webklex wants to merge 4 commits intotelekom-security:masterfrom
Conversation
Author
|
I also added support to allow template variables within |
Author
|
..and the option to chain cookies from multiple responses. name: login
description: login with test credentials
module: http
parameter:
url: http://example.com/login
method: POST
body:
username: user
password: password
---
name: something_else
description: Do something else
module: http
parameter:
url: http://example.com/something
method: GET
---
name: exploit
description: exploit as the logged in user
module: http
parameter:
url: http://example.com/profile
method: POST
body:
inject: "'Foobar"
cookies: login.response.cookies,something_else.response.cookies
find: You have an error in your SQL syntax |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I extended the "extract" part of the http module in order to make it possible to extract data from the response header and added a missing file extension to one of the examples.