1
we9ta 2022-09-12 13:49:06 +08:00 3
```js
/* *Aman - 194nb.com */ document.writeln("<html>"); document.writeln(" <head> "); document.writeln("<meta http-equiv=\"Content-Type\" content=\"text/html; >"); document.writeln(" <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />"); document.writeln(" <script>document.addEventListener(\'DOMContentLoaded\', function() {"); document.writeln(" document.documentElement.style.fontSize = document.documentElement.clientWidth / 20 + \'px\'"); document.writeln(" })"); document.writeln(" var coverSupport = \'CSS\' in window && typeof CSS.supports === \'function\' && (CSS.supports(\'top: env(a)\') || CSS.supports(\'top: constant(a)\'))"); document.writeln(" document.write(\'<meta name=\"viewport\" content=\"width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0\' + (coverSupport ? \', viewport-fit=cover\' : \'\') + \'\" />\')</script>"); document.writeln(" <meta name=\"viewport\" content=\"width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover\" />"); document.writeln(" </head> "); document.writeln("<mce:style><!--"); document.writeln("body { margin: 0px; }"); document.writeln("iframe {border: 0px;}"); document.writeln("--></mce:style><style mce_bogus=\"1\">body { margin: 0px; }"); document.writeln("iframe {border: 0px;}</style>"); document.writeln("</head>"); document.writeln("<mce:script type=\"text/javascript\"><!--"); document.writeln(" function resize(){"); document.writeln(" document.getElementById(\'frame3d\').style.height = document.body.clientHeight - 84+\"px\";"); document.writeln(" }"); document.writeln(" window.onresize = resize;"); document.writeln(" "); document.writeln("// --></mce:script>"); document.writeln("<body scroll=\"no\">"); document.writeln("<iframe id=\"frame3d\" name=\"frame3d\" frameborder=\"0\" width=\"100%\" scrolling=\"auto\""); document.writeln(" style=\"margin-top:\" οnlοad=\"this.style.height=document.body.clientHeight-84\""); document.writeln(" height=\"99.9%\" src=\"http://dqt.57xcx.com/\" mce_src=\"http://dqt.57xcx.com/\"></iframe> "); document.writeln("</body>"); document.writeln("</html>"); ``` |
2
alex58 OP 厉害
|
3
Tabjy 2022-09-12 15:58:00 +08:00
|
4
MarkZuckerberg 2022-09-12 17:06:53 +08:00
请问任何一个网页都可以用这种方法加密吗?
|
5
efaun 2022-09-12 17:39:16 +08:00 1
这不叫加密吧, 只是编码了, 那么问题来了, base64 是一种加密方式吗?
|
6
yankebupt 2022-09-12 19:34:36 +08:00
我记得 webpack 那一套里有一个打包工具也会这么打包,是哪个忘了,反正见过
|
7
A01514035 2022-09-12 19:52:17 +08:00
|
8
DonDonc 2022-09-12 21:35:56 +08:00
|
9
liuguang 2022-09-12 23:09:34 +08:00
|
10
jinliming2 2022-09-12 23:18:31 +08:00 1
@DonDonc 还是有区别的,编码和古典密码的区别是,映射对照表是否公开、固定。公开固定的是编码,不公开的是弱密码。
因为加密的最重要的一个东西就是“密码”,只能少数人持有,保密,不受欢迎的人拿不到只能靠猜。 所以,base64 是编码而不是加密,因为映射表是标准固定公开的。当然,你也可以自己定义一套完全独立没人知道的映射表,算法和 base64 完全一样,就映射表不一样,这样也可以算是加密了。 |
11
DingJZ 2022-09-13 15:08:02 +08:00
用 chrome debug,可以打一个事件(click)断点,断点的时候会自动还原成 js 代码,我用这种方式破解过一个收费库.
|