Created
November 17, 2018 13:54
-
-
Save ehsansabet/31c2811485c417f32ab76e279c6546d5 to your computer and use it in GitHub Desktop.
Check Shaparak Phishing
This file contains hidden or 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
// ==UserScript== | |
// @name Check Shaparak Phishing | |
// @author Ehsan Sabet | |
// @include https://*.shaparak.ir/* | |
// @run-at document-end | |
// @version 0.1 | |
// ==/UserScript== | |
(function() { | |
var valid = '<div style="position:fixed;top:0;left:0;width:100%;background-color: rgba(0,255,0,0.5);z-index: 99999;text-align: center;"><h3 style="color: green;z-index: 999999;text-align: center;font-size:13px;">درگاه پرداخت قانونی است.</h3></div>'; | |
document.body.innerHTML += valid; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment