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

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 3553|回复: 21
收起左侧

[CrackMe] .Net程序的一种加密方式

[复制链接]
siszqsqx 发表于 2020-6-1 14:31
CM是什么?Crackme是什么?这是什么东西?楼主发的什么?
他们都是一些公开给别人尝试破解的小程序,制作 Crackme 的人可能是程序员,想测试一下自己的软件保护技术,也可能是一位 Cracker,想挑战一下其它 Cracker 的破解实力,也可能是一些正在学习破解的人,自己编一些小程序给自己破解,KeyGenMe是要求别人做出它的 keygen (序号产生器), ReverseMe 要求别人把它的算法做出逆向分析, UnpackMe 是要求别人把它成功脱壳,本版块禁止回复非技术无关水贴。

Dear All
       附件是一个.Net的小程序,使用了C++进行加密,防止轻易被反编译。这种加密方式安全吗?

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册[Register]

x

免费评分

参与人数 2吾爱币 +7 热心值 +2 收起 理由
为往圣继绝学 + 1 + 1 谢谢@Thanks!
CrazyNut + 6 + 1 欢迎分析讨论交流,吾爱破解论坛有你更精彩!

查看全部评分

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

dplxin 发表于 2020-6-1 16:02
public Form1()
                {
                        this.InitializeComponent();
                        base.FormBorderStyle = FormBorderStyle.None;
                        base.TransparencyKey = this.BackColor;
                        this.DoubleBuffered = true;
                        base.ShowInTaskbar = false;
                        this.timer1.Interval = 300;
                        this._x = Screen.PrimaryScreen.WorkingArea.Width / 2;
                        this._y = Screen.PrimaryScreen.WorkingArea.Height / 2;
                }

                // Token: 0x06000002 RID: 2 RVA: 0x000020D0 File Offset: 0x000002D0
                private void timer1_Tick(object sender, EventArgs e)
                {
                        Random random = new Random();
                        int x = random.Next(this._x - 300, this._x + 300);
                        int y = random.Next(this._y - 300, this._y + 300);
                        base.Location = new Point(x, y);
                }

                // Token: 0x06000003 RID: 3 RVA: 0x0000212C File Offset: 0x0000032C
                protected override void OnPaint(PaintEventArgs e)
                {
                        Graphics graphics = e.Graphics;
                        graphics.DrawLine(Pens.Green, 0, 50, 100, 50);
                        graphics.DrawLine(Pens.Green, 50, 0, 50, 100);
                        base.OnPaint(e);
                }

                // Token: 0x06000004 RID: 4 RVA: 0x0000215E File Offset: 0x0000035E
                protected override void Dispose(bool disposing)
                {
                        if (disposing && this.components != null)
                        {
                                this.components.Dispose();
                        }
                        base.Dispose(disposing);
                }

免费评分

参与人数 1吾爱币 +2 热心值 +1 收起 理由
CrazyNut + 2 + 1 欢迎分析讨论交流,吾爱破解论坛有你更精彩!

查看全部评分

ps122 发表于 2020-6-1 15:07
[C#] 纯文本查看 复制代码
private void timer1_Tick(object sender, EventArgs e)
{
	Random random = new Random();
	int x = random.Next(this._x - 300, this._x + 300);
	int y = random.Next(this._y - 300, this._y + 300);
	base.Location = new Point(x, y);
}

protected override void OnPaint(PaintEventArgs e)
{
	Graphics graphics = e.Graphics;
	graphics.DrawLine(Pens.Green, 0, 50, 100, 50);
	graphics.DrawLine(Pens.Green, 50, 0, 50, 100);
	base.OnPaint(e);
}

免费评分

参与人数 1吾爱币 +2 热心值 +1 收起 理由
CrazyNut + 2 + 1 欢迎分析讨论交流,吾爱破解论坛有你更精彩!

查看全部评分

c13085686899 发表于 2020-6-1 15:21
ps122 发表于 2020-6-1 15:07
[mw_shl_code=csharp,true]private void timer1_Tick(object sender, EventArgs e)
{
        Random random = n ...

厉害厉害分分钟搞定
 楼主| siszqsqx 发表于 2020-6-1 17:34
ps122 发表于 2020-6-1 15:07
[mw_shl_code=csharp,true]private void timer1_Tick(object sender, EventArgs e)
{
        Random random = n ...

跪了,是加密方式太low还是大佬太强
 楼主| siszqsqx 发表于 2020-6-1 17:35
dplxin 发表于 2020-6-1 16:02
public Form1()
                {
                        this.InitializeComponent();

跪了,是加密方式太low还是大佬太强
Jr丶新一 发表于 2020-6-1 17:44
C#感觉就是裸奔 ....
xiaovssha 发表于 2020-6-1 20:14
c#只能把核心算法放服务器端
我是你老大 发表于 2020-6-1 20:35
.net core CoreRT生成native代码,应该会安全很多吧
goldli 发表于 2020-6-2 08:51
楼主你是不是把软件加密与破解理解错了?
你这种作法是没有任何用处的。软件破解是静态的,不是加载运行你的程序,而且直接读取你程序的字节流然后进行分析。
软件加壳的作用是把你的程序放在一个盒子里,不让别人轻意读取到你真实的字节流。
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则 警告:本版块禁止回复与主题无关非技术内容,违者重罚!

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

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

GMT+8, 2024-3-29 09:17

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

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