Skip to content

Instantly share code, notes, and snippets.

@nstarke
Last active May 8, 2019 17:47
Show Gist options
  • Save nstarke/b00f1b8c272c8a8c36be to your computer and use it in GitHub Desktop.
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
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
@marcelo321
Copy link

how do i run this bro?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment