naby

导航

2024年11月16日 #

ISCTF2024-Crypto(不全)

摘要: Crypto 一开始有时间写了一点,原本不打算发的,但详细写了前面几题的wp,还是发一下。 我和小蓝鲨的秘密 from PIL import Image from Crypto.Util.number import bytes_to_long, long_to_bytes import numpy 阅读全文

posted @ 2024-11-16 20:30 Naby 阅读(27) 评论(0) 推荐(0) 编辑

2024年11月10日 #

C语言PBC库

摘要: PBC 前言 我的环境是Ubantu24 边写边整理,持续更新。 最近做毕设需要用到,就借此机会写一些关于c语言PBC库的教程,一些用法有结合GPT。 说是教程不过是把官方文档说的函数用法翻译了一遍,关于双线性配对的知识我不了解,这里就不将了,我看网上大部分说的有就只是当黑盒调用就行了。 官方文档函 阅读全文

posted @ 2024-11-10 23:46 Naby 阅读(18) 评论(0) 推荐(0) 编辑

2024年10月30日 #

复现-SHCTF2024-week4-Crypto

摘要: Crypto 复现参考文献:2024-SHCTF-week4-wp-crypto | 糖醋小鸡块的blog 鸡块师傅真的太强了(膜拜 *siDH 就讲一下这题遇到的问题,鸡块师傅说的可能不是很清楚。 这里先贴一下参考文献: 前几天源鲁杯有一题,翻到最后就是,里面有讲数据的构造,和攻击思想微信公众平台 阅读全文

posted @ 2024-10-30 22:52 Naby 阅读(111) 评论(0) 推荐(0) 编辑

2024年10月29日 #

网鼎杯2024-青龙官方资格赛

摘要: 没必要看,只有最简单的题 哎,尽力了,简单的都做不出来 Crypto crypto1 from Crypto.Util.number import * from secret import flag p = getPrime(512) q = getPrime(512) n = p * q d = 阅读全文

posted @ 2024-10-29 21:53 Naby 阅读(86) 评论(0) 推荐(0) 编辑

NewStar2024-week4-Crypto

摘要: Crypto 圣石匕首 sage直接运行脚本就有了 import gmpy2 beta=0.37 delta=0.01 n=round((1-2*beta-2*delta)/((1-beta)^2-2*delta-beta),6) e= 3668637434348843171145584606519 阅读全文

posted @ 2024-10-29 21:43 Naby 阅读(34) 评论(0) 推荐(0) 编辑

2024年10月27日 #

0xGame2024-week3-crypto

摘要: Crypto LLL-I from Crypto.Util.number import bytes_to_long from numpy import eye, matrix from random import randint from secret import flag assert len( 阅读全文

posted @ 2024-10-27 21:07 Naby 阅读(125) 评论(0) 推荐(0) 编辑

BuildCTF2024-Crypto

摘要: 差一题古典不想看了,其他方向就不献丑了 Crypto OVO开门爽!开到南天门了兄弟 from Crypto.Util.number import * flag = b'BuildCTF{******}' #随机生成p,q p = getPrime(1024) q = getPrime(1024) 阅读全文

posted @ 2024-10-27 10:08 Naby 阅读(145) 评论(0) 推荐(0) 编辑

2024年10月23日 #

SHCTF2024-week3-Crypto

摘要: 博客做题法,除了最简单那题,其他都是偷的,lock等以后有机会再补把 太难了(哭 Crypto babyLCG from Crypto.Util.number import * from enc import flag seed = bytes_to_long(flag) a = getPrime( 阅读全文

posted @ 2024-10-23 09:59 Naby 阅读(141) 评论(0) 推荐(1) 编辑

2024年10月22日 #

NewStar2024-week3-Crypto

摘要: 古典密码不想看 而且最近很忙,wp就贴exp了 Crypto 不用谢喵 from Crypto.Cipher import AES from Crypto.Util.number import * import os KEY = b"fake_key_fake_ke" FLAG = "flag{fa 阅读全文

posted @ 2024-10-22 20:34 Naby 阅读(31) 评论(3) 推荐(0) 编辑

2024年10月20日 #

0xGame2024-week2-crypto

摘要: Crypto LFSR-baby from random import getrandbits from secret import flag,seed from hashlib import md5 def MD5(m):return md5(str(m).encode()).hexdigest( 阅读全文

posted @ 2024-10-20 20:17 Naby 阅读(81) 评论(0) 推荐(0) 编辑