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
// ResponseTransformer modifies a response before it is returned to the victim. | |
// You can use ResponseTransformers to hide any visible results of a RequestTransformer. | |
// Delays in this function will slow down the phishing site for the victim. | |
// Your ResponseTransformer should be a function called "ResponseTransformer" | |
type ResponseTransformer func(*http.Response) error |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment