window.onload=function(){ /*页面加载完成之后生成博客目录*/ BlogDirectory.createBlogDirectory("cnblogs_post_body","h2","h3",20); }
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页
摘要: DASCTF X CBCTF 2023|无畏者先行  CRYPTO—WP EzRSA 1、题目信息 from Crypto.Util.number import * import random from gmpy2 import * from libnum import * from flag import flag def padding(f): random_char 阅读全文
posted @ 2023-10-22 21:11 Kicky_Mu 阅读(259) 评论(0) 推荐(0) 编辑
摘要: DASCTF X CBCTF 2023|无畏者先行(Misc  WP) justpaint 1、题目信息 FLAG被我弄丢了>_<不过,JBN应该记得,或许你能从他那得到一些线索。 附件是压缩包有密码。。 2、解题方法 暴力破解压缩包,测试长度为6,选择所有数字 得到密码后解压 train.py import torch import torch.nn as nn im 阅读全文
posted @ 2023-10-22 20:21 Kicky_Mu 阅读(2057) 评论(0) 推荐(0) 编辑
摘要: PolarD&amp;N2023秋季个人挑战赛—Misc全解 签个到叭 题目信息 压缩包带密码,放到010查看PK头错误,改回去。。 解压后得到 562+5Yiw5Lmf5LiN6IO96L+Z5LmI566A5Y2V5ZGA77yM5b+r5p2l55yL55yL6L+Z5piv5LuA5LmI5Yqg5a+GOglVMkZzZEdWa1gxOHRLZU02 阅读全文
posted @ 2023-10-21 22:55 Kicky_Mu 阅读(483) 评论(0) 推荐(0) 编辑
摘要:  PolarD&amp;N2023秋季个人挑战—Crypto全解 EasyRSA (额。。这个题看错了不是挑战赛的。这里当做好题记录下来了) 题目信息:500 分 5 Polar币 from Crypto.Util.number import bytes_to_long, long_to_bytes, getPrime import gmpy2, os p = g 阅读全文
posted @ 2023-10-21 15:24 Kicky_Mu 阅读(462) 评论(0) 推荐(1) 编辑
摘要:  0xGame 2023【WEEK2】Crypto全解 中间的那个人 题目信息 from secret import flag from Crypto.Util.number import * from Crypto.Cipher import AES from hashlib import sha256 from random import * p = 阅读全文
posted @ 2023-10-21 06:38 Kicky_Mu 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 0xGame 2023【WEEK1】Crypto全解 What's CBC? 题目信息 from Crypto.Util.number import * from secret import flag,key def bytes_xor(a,b): a,b=bytes_to_long(a),bytes_to_long(b) return long_to 阅读全文
posted @ 2023-10-21 06:10 Kicky_Mu 阅读(102) 评论(0) 推荐(0) 编辑
摘要: NewStarCTF 2023 公开赛道 WEEK3|CRYPTO WP 一、Rabin's RSA 题目信息 from Crypto.Util.number import * from secret import flag p = getPrime(64) q = getPrime(64) assert p % 4 == 3 assert q % 4 == 3 n = 阅读全文
posted @ 2023-10-21 00:57 Kicky_Mu 阅读(328) 评论(1) 推荐(0) 编辑
摘要: NewStarCTF 2023 公开赛道  WEEK2|CRYPTO全解 一、滴啤 题目信息 from Crypto.Util.number import * import gmpy2 from flag import flag def gen_prime(number): p = getPrime(number//2) q = getPrime(number//2) r 阅读全文
posted @ 2023-10-20 23:44 Kicky_Mu 阅读(713) 评论(0) 推荐(0) 编辑
摘要: NewStarCTF 2023 公开赛道 WEEK1|CRYPTO全解 一、brainfuck 附件信息 ++++++++[>>++>++++>++++++>++++++++>++++++++++>++++++++++++>++++++++++++++>++++++++++++++++>++++++++++++++++++>++++++++++++++++++++>++ 阅读全文
posted @ 2023-10-20 22:49 Kicky_Mu 阅读(863) 评论(0) 推荐(0) 编辑
摘要: 2023一带一路金砖WP—Crypto 题目一 附件信息 from Crypto.Util.number import * from flag import flag import gmpy2 assert(len(flag)==38) flag = bytes_to_long(flag) p = getPrime(512) q = ge 阅读全文
posted @ 2023-10-20 19:05 Kicky_Mu 阅读(194) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页