Ext.Net 简单破解

来源:互联网 发布:知乎 国民党 编辑:程序博客网 时间:2024/04/30 04:46

浏览器查看源代码发现在URL为非localhost时会多出2个文件, 这个2个文件就是ext.net的弹窗文件

那么只要在BeginRequst中简单过滤就可以阻止弹窗

protected void Application_BeginRequest(object sender, EventArgs e){    // extnet/unlicensed/un-js/ext.axd?v=41185    // extnet/unlicensed/css/un-css/ext.axd?v=41185    string url = this.Request.Url.ToString();    if (url.Contains("unlicensed"))    {        this.Response.End();    }}

0 0