吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 3039|回复: 7
收起左侧

[KeyGenMe] C procedure me

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

本帖最后由 Hoe 于 2014-7-5 22:08 编辑

学了一学期的C语言,首次写了C me,给大家练练手       要求写出算法或者爆破,当然爆破会简单点。



附图片明码

本帖子中包含更多资源

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

x

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

Kido 发表于 2014-7-12 05:48

[C] 纯文本查看 复制代码
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
    char Str[64];
    printf("Hello world!\n");
    scanf("%s",Str);
    if ( strlen(Str) == 12 )
    {
        if(isalpha(Str[0]) && isdigit(Str[1]) && (Str[11] == 's'))
        {
            puts("goodX");
        }
        sleep(5000);
    }
    return 0;
}


本帖子中包含更多资源

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

x
SaberMason 发表于 2014-7-11 15:51 来自手机
kaoyange 发表于 2014-7-10 21:36
本帖最后由 kaoyange 于 2014-7-11 21:49 编辑

1.The length of string which you input is 12,the last letter of the string is s and it also has relationship with the first and second char.

2.I found one of the key is k3oyangelovs,I will make the KeyGenMe later.

3.I found that you write the program with a debug version.
 楼主| Hoe 发表于 2014-7-5 22:09
沙发!!!!!!!!!!1
kaoyange 发表于 2014-7-12 16:11
Kido 发表于 2014-7-12 05:48
[mw_shl_code=c,true]#include
#include
#include

Question: 难道第一个和第二个字符一定要是字母和数字吗?
Kido 发表于 2014-7-13 07:18
kaoyange 发表于 2014-7-12 16:11
Question: 难道第一个和第二个字符一定要是字母和数字吗?

有什么错误么?
请指正
kaoyange 发表于 2014-7-13 18:16
Kido 发表于 2014-7-13 07:18
有什么错误么?
请指正

不好意思,刚刚对照着ASSIC码表认真看了下,第一个字符必须是字母,第二个字符必须是数字,you did a good job.

ps:你还原了作者的源代码,但那不是一个Key Generator.
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

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

GMT+8, 2024-11-24 22:03

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

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