博客
分类
标签
归档
友链
关于
Dark
博客
分类
标签
归档
友链
关于
Dark
Archer's blog
博客
分类
标签
归档
友链
GDB入门
简介GDB(GNU Debugger)是 GNU 项目的调试器,主要用于调试 C/C++ 等程序。 安装1sudo apt install gdb 常用命令 使用GDB打开二进制文件 123gdb ./vuln#或者gdb -q ./vuln -q:quiet,安静模式,不显示启动欢迎信息。 运行程序 1234runrun < input.txt # 用文件输入run <...
2025-08-17
CTF
Pwn
CTF
Pwn
Read More
TUM Binary Exploitation qualification challenge
绕过检测并利用Buffer Overflow漏洞修改函数的返回地址。
2025-08-15
CTF
Pwn
CTF
Pwn
Read More
如何部署CTFDd模板
部署CTFDd模板
2025-07-10
CTF
General
CTF
General
Read More
零知识证明 (Zero-knowledge proof)
什么是零知识证明 (Zero-knowledge proof)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 withou...
2025-07-04
CTF
Crypto
CTF
Crypto
Read More
Cryptohack Lattices Writeup
LatticesVectors 1702 Size and Basis \sqrt{4^2 + 6^2+2^2+5^2} = 919 Gram Schmidt 12345678910111213141516171819202122232425262728import numpy as np# 给定的基向量v1 = np.array([4, 1, 3, -1], dtype=float)v2...
2025-06-28
CTF
Crypto
CTF
Crypto
Read More
CSCG 2025 Intro_to_pwn Writeup
题目这道题给了源代码: 123456789101112131415161718192021222324252627282930313233343536373839#include <stdio.h>#include <stdlib.h>// --------------------------------------------------- SETUPvoid ig...
2025-06-18
CTF
Pwn
CTF
Pwn
Read More
HTB Regularity Writeup
ret2reg。通过Buffer Overflow将返回地址修改成我们自己手写的/bin/sh命令。
2025-06-11
CTF
Pwn
CTF
Pwn
Read More
HTB Getting_Started Writeup
通过Buffer Overflow来修改目标变量的值。
2025-06-10
CTF
Pwn
CTF
Pwn
Read More
HTB Questionnaire Writeup
一些关于Pwn的基础知识。(包括一些pwn常用的Linux命令)
2025-06-09
CTF
Pwn
CTF
Pwn
Read More
HTB You_know_0xDiablos Writeup
通过Buffer Overflow修改返回地址以调用目标函数并传递参数。
2025-06-09
CTF
Pwn
CTF
Pwn
Read More
1 / 6
Next