This is amazing.CodeUse this code to hack Google, Baidu ...... It's just a breeze!
If you open a website in IE, enter the following code in the address bar of the browser:
The Code is as follows:
Javascript: Document. Body. contenteditable = 'true'; document. designMode = 'on'; void 0
Then press enter to modify the website as you like!
Think about the fact that Google's pages are completely different from their own. Is it a good experience for hackers!
I read the code and know that it is executing Javascript. It starts with javascript: and ends with void (0!
The following code removes the right-click prohibition and disables copying!
Javascript: document. oncontextmenu = ''; document. onmousedown = ''; document. ondragstart = ''; document. onselectstart = ''; document. onselect = ''; document. oncopy = ''; document. onbeforecopy = ''; document. onmousemove = ''; void 0
The following code shows the hidden form!
Javascript: for (I = 0; I <document. all. length; I ++) {document. body. all [I]. maxlength = 2147483647; document. body. all [I]. outerhtml = document. body. all [I]. outerhtml. replace (/type = (radio) | (hidden) | (checkbox)/I, 'Type = text');} void 0
Is it interesting?