逆向攻防世界CTF系列22-Guess-the-Number
逆向攻防世界CTF系列22-Guess-the-Number
jadx打开
import java.math.BigInteger;
public class Test05 {
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) {
String answer = XOR("4b64ca12ace755516c178f72d05d7061", "ecd44646cfe5994ebeb35bf922e25dba");
System.out.println("your flag is: " + 1545686892 / 5);
}
}
得
a7b08c546302cc1fd2a4d48bf2bf2ddb
或
- 感谢你赐予我前进的力量
赞赏者名单
因为你们的支持让我意识到写文章的价值🙏
本文是原创文章,采用 CC BY-NC-ND 4.0 协议,完整转载请注明来自 Matriy
评论
匿名评论
隐私政策
你无需删除空行,直接评论以获取最佳展示效果