Skip to content

Module: Deface Web Page

Haoxi Tan edited this page Jan 7, 2020 · 4 revisions

Summary

  • Objective: Overwrite the page, title and shortcut icon on the hooked page.

  • Date: ???

  • Authors: antisnatchor

  • Parameters:

    • New Title
    • New Favicon
    • Deface Content: the HTML content to replace original page with
  • Browsers: All (User will be notified)

  • Code

Internal Working

This command modify the HTML, the title and the favicon of the page with the parameters given :

	document.body.innerHTML = "<%= @deface_content %>";
	document.title = "<%= @deface_title %>";
	beef.browser.changeFavicon("<%= @deface_favicon %>");

Feedback

Clone this wiki locally