攻防世界——answer_to_everything-writeup

发布时间:2024年01月21日

__int64 __fastcall not_the_flag(int a1)
{
  if ( a1 == 42 )
    puts("Cipher from Bill \nSubmit without any tags\n#kdudpeh");
  else
    puts("YOUSUCK");
  return 0LL;
}

kdudpeh这个东西,根据题目提示sha1加密

import hashlib
flag='kdudpeh'
x = hashlib.sha1(flag.encode("utf8"))#md5和类似的,就讲sha1更换就行
y = x.hexdigest()
print(y)

80ee2a3fe31da904c596d993f7f1de4827c1450a

得到这个

over!

文章来源:https://blog.csdn.net/wcj126/article/details/135736692
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。