Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

题目这道题给了源代码: 123456789101112131415161718192021222324252627282930313233343536373839#include <stdio.h>#include <stdlib.h>// --------------------------------------------------- SETUPvoid ig...

ret2reg。通过Buffer Overflow将返回地址修改成我们自己手写的/bin/sh命令。

通过Buffer Overflow来修改目标变量的值。

一些关于Pwn的基础知识。(包括一些pwn常用的Linux命令)

通过Buffer Overflow修改返回地址以调用目标函数并传递参数。

TJCTF 2025比赛的Pwn题i-love-birds的题解。通过Buffer Overflow修改返回地址以调用目标函数,并且使用pop rbi;ret来传递参数。

什么是零知识证明A zero-knowledge proof (ZKP) is a technique that enables one party (the prover) to demonstrate to another party (the verifier) the truth of a certain statement without revealing any additio...

这个Course里有很大一部分都是关于RSA加密的。关于RSA的基本原理以及基本的攻击方法可以看我的另一篇博客:RSA加解密以及攻击方法。 Modular Exponentiation题 解12print(pow(101,17,22663))# 19906 Public Keys题 解12print(pow(12,65537,17*23))# 301 Euler’s Totient题 解12...

Keyed Permutations题 解这种叫Bijection。 1crypto{bijection} Resisting Bruteforce题 解根据图片中的描述,题目询问的是:“What is the name for the best single-key attack against AES?” 在描述中提到了: AES 的安全性 一个攻击能将 AES-1...

Greatest Common Divisor题 解直接实现一下欧几里得算法(辗转相除法): 12345678910def gcd(x,y): if x == y: return x if x<y: return gcd(x,y-x) else: return gcd(y,x-y) print(gcd(66528,529...