攻防世界 逆向 Guess-the-Number
(原创)
原题如下:

下载文件,是一个jar包,解压一下得到一个class文件。

这个地方要用到一个反编译插件jadclipse,得到guess.class文件的源代码如下(全部)。
import java.io.PrintStream;
import java.math.BigInteger;
public class guess
{
public guess()
{
}
static String XOR(String _str_one, String _str_two)
{
BigInteger i1 = new BigInteger(_str_one, 16);
BigInteger i2 = new BigInteger(_str_two, 16);
BigInteger res = i1.xor(i2);
String result = res.toString(16);
return result;
}
public static void main(String args[])
{
int guess_number = 0;
int my_num = 0x14d8f707;
int my_number = 0x5c214f6c;
int flag = 0x149b861a;
if(args.lengt

最低0.47元/天 解锁文章
755

被折叠的 条评论
为什么被折叠?



