Skip to content

Instantly share code, notes, and snippets.

@RootUp
Created February 19, 2019 12:50
Show Gist options
  • Save RootUp/8d55e2c4c86afebc2c6be562a5085356 to your computer and use it in GitHub Desktop.
Save RootUp/8d55e2c4c86afebc2c6be562a5085356 to your computer and use it in GitHub Desktop.
Fuzzing webkit
class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::HttpServer
def run
exploit # start http server
end
def setup
@html = %|
JS goes here!
|
end
def on_request_uri(cli, _request)
print_status('Sending response')
send_response(cli, @html)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment