吾爱破解 - LCG - LSG |安卓破解|病毒分析|www.52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 5674|回复: 6
收起左侧

[会员申请] 申请会员ID:幕后黑手

[复制链接]
吾爱游客  发表于 2014-4-23 20:25
顺便说一下,剑盟论坛不知道管管可知道,我就是以前剑盟的管理员,幕后黑手,如假包换的,
1、申 请 I D :    幕后黑手  
2、个人邮箱:774004@qq.com
3、一篇原创技术文章:本次破解以管家婆A8 TOP 9.2为例,用.NET Reflector打开A8程序目录bin下的CarpaServer.dll
1.png
找到CarpaServer.Dog依次打开DogInfo .ctor()
在右侧看到代码如下
public DogInfo()
{
    this.strDogID = string.Empty;
    this.strDogType = string.Empty;
    this.strUserCardNo = string.Empty;
    this.strRegClientName = string.Empty;
    this.strRegFlag = string.Empty;
    this.strDogRegionName = string.Empty;
    this.strDogRegionCode = string.Empty;
    this.strFirstUseDate = string.Empty;
    this.strRegDate = string.Empty;
    this.strBrainPower = "00";
    this.strIpLimit = "01";
    this.intAccountNumber = 5;
    this.intDogUserCount = 0;
    this.intDogSymbol = -1;
    this.ifDogValid = 0;
    this.isUseAcSystem = string.IsNullOrEmpty(ConfigurationManager.AppSettings["demoAccount"]) ? 1 : 0;
    this.CentificateNo = string.Empty;
    this.CentificateNum = string.Empty;
    this.remainDay = 0;
    this.isTopDog = "0";
    this.CorpTel = string.Empty;
    this.Mobil = string.Empty;
    this.EMail = string.Empty;
}
点击.NET Reflector 菜单的Tool选择Reflexil 1.7
在代码的下面就会出现Reflexil IL代码编辑器,然后懂IL汇编的人就可以修改了。选中相应的IL代码行右键选择Edit进行修改编辑。
大多数用户对IL这种代码不熟悉也不了解,编辑起来有些吃力,Reflexil 给我们提供了另一种编程体验,就是直接使用C#或者vb.net编辑
IL代码编辑器右键选择Replace all with code
2.png
弹出代码编辑窗
然后你就可以像在VS里面编程一样随意编写代码,替换原先的程序
比如我是这样写的
using System;
using System.Configuration;
namespace CarpaServer.Dog
{
    public class DogInfo : ICloneable
    {
        public string strDogRegionName;
        public string strDogRegionCode;
        public string strDogID;
        public string strDogType;
        public string strFirstUseDate;
        public string strRegDate;
        public string strUserCardNo;
        public string strRegClientName;
        public string strRegFlag;
        public string strBrainPower;
        public string strIpLimit;
        public int intAccountNumber;
        public int intDogUserCount;
        public int intDogSymbol;
        public int ifDogValid;
        public int isUseAcSystem;
        public string CentificateNo;
        public string CentificateNum;
        public int remainDay;
        public string isTopDog;
        public string CorpTel;
        public string Mobil;
        public string EMail;
        public DogInfo()
        {
            this.strDogID = (string.IsNullOrEmpty(ConfigurationManager.AppSettings["DogID"]) ? "12345678901234" : Convert.ToString(ConfigurationManager.AppSettings["DogID"]));
            this.strDogType = (string.IsNullOrEmpty(ConfigurationManager.AppSettings["DogType"]) ? "01" : Convert.ToString(ConfigurationManager.AppSettings["DogType"]));
            this.strUserCardNo = (string.IsNullOrEmpty(ConfigurationManager.AppSettings["UserCardNo"]) ? "12345678901234" : Convert.ToString(ConfigurationManager.AppSettings["UserCardNo"]));
            this.strRegClientName = (string.IsNullOrEmpty(ConfigurationManager.AppSettings["RegClientName"]) ? "成都任我行软件股份有限公司批量许可版" : Convert.ToString(ConfigurationManager.AppSettings["RegClientName"]));
            this.strRegFlag = "TR";
            this.strDogRegionName = "";
            this.strDogRegionCode = (string.IsNullOrEmpty(ConfigurationManager.AppSettings["DogRegionCode"]) ? "01" : Convert.ToString(ConfigurationManager.AppSettings["DogRegionCode"]));
            this.strFirstUseDate = (string.IsNullOrEmpty(ConfigurationManager.AppSettings["FirstUseDate"]) ? "2012-08-08" : Convert.ToString(ConfigurationManager.AppSettings["FirstUseDate"]));
            this.strRegDate = (string.IsNullOrEmpty(ConfigurationManager.AppSettings["RegDate"]) ? "2012-08-08" : Convert.ToString(ConfigurationManager.AppSettings["RegDate"]));
            this.strBrainPower = "00";
            this.strIpLimit = "01";
            this.intAccountNumber = 100;
            this.intDogUserCount = (string.IsNullOrEmpty(ConfigurationManager.AppSettings["DogUserCount"]) ? 50 : Convert.ToInt32(ConfigurationManager.AppSettings["DogUserCount"]));
            this.intDogSymbol = 5;
            this.ifDogValid = 1;
            this.isUseAcSystem = 1;
            this.CentificateNo = "20080006";
            this.CentificateNum = "2008TO2018";
            this.remainDay = 0;
            this.isTopDog = "0";
            this.CorpTel = "010-64014567";
            this.Mobil = "13901618088";
            this.EMail = "gosun@12388.com";
        }
        object ICloneable.Clone()
        {
            return this.Clone();
        }
        public DogInfo Clone()
        {
            return (DogInfo)base.MemberwiseClone();
        }
    }
}
编写完了以后可以使用编辑窗最下面的compile按钮进行编译,如果没有错误右侧会出现编译好的IL代码,这时候点击IL编辑窗下面的OK按钮保存修改结果
3.png
可以参照上面的办法修改回传信息,常见的一些IP地址和网址需要翻看代码,或者抓包获得。代码修改完了以后并不能立刻看到结果我们需要在.NET Reflector左侧的程序列表里找到刚刚打开的CarpaServer右键 选择Reflexil 1.7 Save as…保存修改。
然后就可以用新修改的补丁去测试了。懂编程的朋友都知道我这个是修改的自定义版本的,使用了web.config里面的配置参数。如果想正常使用还要配置一下web.config。好了教程完毕,希望能加入论坛。 4.png

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

Hmily 发表于 2014-4-24 10:25
吾爱游客  发表于 2014-4-24 21:28
回管管,不是我本人。 263077631   这个是管家婆售后群,我是群内顾问。

点评

感觉两个内容很像啊。  详情 回复 发表于 2014-10-30 19:07
ajm3 发表于 2014-10-29 16:22
不知道你认识我不,我也这个群里,膜拜会破
xx婆的大大////
Hmily 发表于 2014-10-30 19:07
游客 112.122.110.x 发表于 2014-4-24 21:28
回管管,不是我本人。 263077631   这个是管家婆售后群,我是群内顾问。

感觉两个内容很像啊。
落点寒轩 发表于 2014-11-14 23:11
听起来好高大上似的~
吾爱游客  发表于 2014-11-15 08:35
对咱真的绝望了,既然开放注册,为什么第二天就删掉了一些会员。
贴吧里到处都是被删掉会员的抱怨帖子,虽然没有我。
我也是醉了,不知道论坛各位管理们为何有此举动。
连给我们活跃的机会都不给。
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

快速回复 收藏帖子 返回列表 搜索

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-5-3 06:38

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表