Skip to content

Instantly share code, notes, and snippets.

@ehsansabet
Created November 17, 2018 13:54
Show Gist options
  • Save ehsansabet/31c2811485c417f32ab76e279c6546d5 to your computer and use it in GitHub Desktop.
Save ehsansabet/31c2811485c417f32ab76e279c6546d5 to your computer and use it in GitHub Desktop.
Check Shaparak Phishing
// ==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