This repository has been archived by the owner on Dec 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 975
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
If directly-entered URL load fails, show the location of the displaye…
…d page Fix #3851 Add regression test for #2723 Auditors: @bridiver Test Plan: open bankofamerica.com in a tab put http://bayden.com/test/redir/goscript.aspx in the urlbar and hit enter verify that the URL bar still says bankofamerica.com
- Loading branch information
1 parent
4e66585
commit 670b4d4
Showing
3 changed files
with
58 additions
and
3 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<html> | ||
<script> | ||
function spoof() { | ||
w = window.open('https:/www.google.com', 'target'); | ||
w.document.write('<h1 id="message">Here we could place a phishing login panel</h1>'); | ||
w.document.close(); | ||
} | ||
</script> | ||
<input type="submit" onclick="spoof()" value="PoC!"> | ||
</html> |