We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://wsxk.github.io/pwntools/
why pwntools+tmux?
安装教程
使用教程
tmux快捷键
why pwntools+tmux? 在用pwntools进行ctf pwn题目调试时,通常会利用类似gdb.attach(p)的代码来调试,通常情况下,这回弹出另一个命令行 但是你用tmux来进行调试,它会把一个命令行划分成2个pane,可以同时操作,界面美观还方便
安装教程 对于pwntools而言,只需执行如下命令即可。 pip install pwntools
对于tmux,在ubuntu20虚拟机下,执行如下命令: sudo apt install tmux
这会开启一个tmux的服务端 然后,python编写如下代码: from pwn import * log.level =
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://wsxk.github.io/pwntools/
why pwntools+tmux?
安装教程
使用教程
tmux快捷键
why pwntools+tmux?
在用pwntools进行ctf pwn题目调试时,通常会利用类似gdb.attach(p)的代码来调试,通常情况下,这回弹出另一个命令行
但是你用tmux来进行调试,它会把一个命令行划分成2个pane,可以同时操作,界面美观还方便
安装教程
对于pwntools而言,只需执行如下命令即可。
pip install pwntools
对于tmux,在ubuntu20虚拟机下,执行如下命令:
sudo apt install tmux
开启命令行后,使用如下命令:
tmux
这会开启一个tmux的服务端
然后,python编写如下代码:
from pwn import *
log.level =
The text was updated successfully, but these errors were encountered: