Difference between revisions of "Evil Portal"

From Void-Byte
Jump to navigation Jump to search
(Created page with "Removed 'Phishing' Banner. cd evilportals/portals for path in $(grep -r Warning | cut -d ":" -f1); do sed -i 's/<nowiki><div id="warning">Warning: You have opened a phishing...")
 
 
Line 1: Line 1:
Removed 'Phishing' Banner.
+
How To Remove 'Phishing' Banner.
  
  

Latest revision as of 13:01, 12 November 2020

How To Remove 'Phishing' Banner.


cd evilportals/portals for path in $(grep -r Warning | cut -d ":" -f1); do sed -i 's/<div id="warning">Warning: You have opened a phishing page. Do not enter your login credentials!<\/div>//g' $path; done


cd /sd/portals/ for path in $(find -iname index.php); do sed -i 's/<div id="warning">Warning: You have opened a phishing page. Do not enter your login credentials!<\/div>//g' $path; done