|
黑客技术 | 安全 | 653 次查看 |
|---|---|---|
微软正式启动Windows Genuine Advantage正版增值计划不过几天,著名黑客以及Extended64.com博客Rafael便发布了绕过微软正版下载限制的方法指南。 根据浏览器不同,目前分为Firefox以及IE两种“绕道”方式,前者需要下载著名Firefox扩展插件Greasemonkey,后者则使用IE插件Trixie,这两个插件都涉及Javascript管理。 Rafael承认,IE的绕道方式目前仍然有一些缺陷,但是Firefox的绝对工作正常(Firefox下载又要激增了;)。 Firefox在下载安装Greesemonkey后,只需填入如下脚本: // ==UserScript== // @name WGA Workaround // @namespace d09733c0-fe4c-11d9-8cd6-0800200c9a66 // @description Windows Genuine Advantage Workaround (Firefox) // @include http*://*.microsoft.com/* // ==/UserScript== (function () { var fix = document.createElement("script"); fix.type = "text/javascript"; fix.innerHTML = 'document.cookie="WinGenCookie=validation=0";'; document.body.appendChild(fix); })(); IE用户下载安装Trixie后,添加脚本内容: // ==UserScript== // @name WGA Workaround // @namespace dd09a330-fe52-11d9-8cd6-0800200c9a66 // @description Windows Genuine Advantage Workaround (IE) // @include http*://*.microsoft.com/* // ==/UserScript== (function () { document.write( "<script type=\"text/javascript\"> \ document.cookie=\"WinGenCookie=validation=0\"; \ </script>" ); })(); |
||