·您现在的位置: 云翼网络 >> 文章中心 >> 网站建设 >> 网站建设开发 >> ASP网站建设 >> CuteEditor6 破解 注册文件生成

CuteEditor6 破解 注册文件生成

作者:佚名      ASP网站建设编辑:admin      更新时间:2022-07-23
自己做了一个网站想找个编辑控件,结果发现CuteEditor6用的时候需要注册,本地可以用去网上找破解版 没有找到,其实也有很多破解版但是单子小怕出问题。在一想 程序是。Net的直接反编译看看不就知道算法是怎么写的自己生成一个就可以了,最后还是给我找到了。拿出来给大家分享下




        /// <summary>
        /// 应用程序的主入口点。
        /// </summary>
        static void Main()
        {
            /*
             *   0-4 这五个目前没有发现有什么用处 没有发现在什么地方有获取的,不知道干什么的 我没有把程序看完,只看了授权必须的东西
             *   分号分割
             *   0d     d
             *   1e     h
             *   2f     a
             *   3g     j
             *   4h     c   
             *   5i=6.0 版本号    g 是"1.6或者1.2"否则授权失败
             *   6j=5   授权类型     k
             *   7k=域名  域名授权使用    i
             *   8l=ip地址  IP地址授权使用  l
             *   9s=09/09/2099  有效期=>>m   f
             *
             *   a = new byte[] { 70, 0x35, 50, 0x42, 0x31, 0x38, 0x36, 70 };      加密解密用的IV KEY向量

             *  0 本地授权
             *   1 多域名授权
             *  2 IP地址授权
             *   3 单域名授权
             *   4 时间授权
             *   5 无限制
             *   None;zh-cn;None;8H489467LS631834L;CuteEditor.Editor for asp.net is licensed.;1.6;5;lvmiaomu.com;125.76.229.233;09/09/2099  我自己编写
             *   None;zh-cn;None;8H489467LS631834L;CuteEditor.Editor for asp.net is licensed.;1.6;4;dcnet.co.davidson.nc.us;217.174.250.155;10/10/2008   直接解密下载后程序附带的文件的结果  
             * **/

            System.Security.Cryptography.DESCryptoServicePRovider des = new System.Security.Cryptography.DESCryptoServiceProvider();
            des.IV = new byte[] { 70, 0x35, 50, 0x42, 0x31, 0x38, 0x36, 70 };
            des.Key = new byte[] { 70, 0x35, 50, 0x42, 0x31, 0x38, 0x36, 70 };

            using (FileStream fs = new FileStream("c:\\cuteeditor.lic", FileMode.Create, Fileaccess.Write, FileShare.None))
            {
                using (CryptoStream cs = new CryptoStream(fs, des.CreateEncryptor(), CryptoStreamMode.Write))
                {
                    using (StreamWriter sw =new StreamWriter(cs))
                    {
                        sw.Write("None;zh-cn;None;8H489467LS631834L;CuteEditor.Editor for asp.net is licensed.;1.6;5;lvmiaomu.com;125.76.229.233;09/09/2099");
                    }
                }

                
            }
            Console.ReadLine();
        }

自己做的网站很破:http://lvmiaomu.com/

要是打开了麻烦多点两下上边的广告嘿嘿

转载:请把我的http://lvmiaomu.com/这个链接带上 刷刷网站RP值