Skip to content

keitheade/CTF-Tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 

Repository files navigation

CTF-Tools

Steps to update fresh kali install

Update and upgrade

apt update && apt upgrade -y

install vscode

https://go.microsoft.com/fwlink/?LinkID=760868

install java

sudo apt-get install default-jdk -y

install ghidra

wget https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_10.0.3_build/ghidra_10.0.3_PUBLIC_20210908.zip
unzip ghidra_10.0.3_PUBLIC_20210908.zip

Install GDB

sudo apt install gdb -y 

Install Pwndbg

git clone https://github.com/pwndbg/pwndbg
cd pwndbg
sudo ./setup.sh

Install splitmind

echo '''
(splitmind.Mind()
  .below(display="backtrace")
  .right(display="stack")
  .right(display="regs")
  .right(of="main", display="disasm")
  .show("legend", on="disasm")
).build()
''' >> ~/splitmind/gdbinit.py

You need to run gdb within tmux for this to work

install Rsa_Ctf_Tool

git clone https://github.com/Ganapati/RsaCtfTool.git
sudo apt-get install libgmp3-dev libmpc-dev -y
cd RsaCtfTool
pip3 install -r "requirements.txt"
python3 RsaCtfTool.py

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors