forked from wpsec/Emergency-response-notes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
更新
- Loading branch information
Showing
39 changed files
with
2,493 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
https://www.volatilityfoundation.org/26 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
## What's this? | ||
|
||
Some tool for CTF | ||
|
||
Welcome to add. | ||
|
6 changes: 6 additions & 0 deletions
6
tools/内存取证/volatility/tool-for-CTF/auto_install_script/.condarc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
channels: | ||
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/ | ||
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ | ||
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/ | ||
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/ | ||
show_channel_urls: true |
8 changes: 8 additions & 0 deletions
8
tools/内存取证/volatility/tool-for-CTF/auto_install_script/gmpy2.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# gmp 库安装 | ||
sudo apt-get install -y libgmp-dev | ||
# mpfr 库安装 | ||
sudo apt-get install -y libmpfr-dev | ||
# mpc 库安装 | ||
sudo apt-get install -y libmpc-dev | ||
sudo pip install gmpy2 | ||
sudo pip3 install gmpy2 |
54 changes: 54 additions & 0 deletions
54
tools/内存取证/volatility/tool-for-CTF/auto_install_script/kali-for-misc.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
#!/bin/bash | ||
# 换源 | ||
sudo rm /etc/apt/sources.list | ||
sudo echo "deb http://mirrors.tuna.tsinghua.edu.cn/kali kali-rolling main contrib non-free" > /etc/apt/sources.list | ||
sudo echo "deb-src https://mirrors.tuna.tsinghua.edu.cn/kali kali-rolling main contrib non-free" >> /etc/apt/sources.list | ||
apt-get update | ||
# pip | ||
sudo apt-get install -y python-pip | ||
sudo apt-get install -y python3-pip | ||
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple | ||
# mkdir | ||
mkdir -p ~/ctf/tool | ||
cd ~/ctf/tool | ||
# volatility | ||
sudo apt-get install -y volatility | ||
# foremost | ||
sudo apt-get install -y foremost | ||
# pngcheck | ||
sudo apt-get install -y pngcheck | ||
# imagemagick(convert) | ||
sudo apt-get install -y imagemagick | ||
# exiftool | ||
sudo apt-get install -y exiftool | ||
# steghide | ||
sudo apt-get install -y steghide | ||
# gaps | ||
git clone https://github.com/nemanja-m/gaps | ||
cd gaps | ||
pip3 install numpy opencv-python pytest matplotlib pillow | ||
python3 setup.py install | ||
cd ../ | ||
# 盲水印 | ||
git clone https://github.com/chishaxie/BlindWaterMark | ||
# F5隐写 | ||
git clone https://github.com/matthewgao/F5-steganography | ||
# lsb | ||
git clone https://github.com/livz/cloacked-pixel | ||
# RSA | ||
git clone https://github.com/Ganapati/RsaCtfTool | ||
sudo apt-get install -y libgmp3-dev libmpc-dev | ||
cd RsaCtfTool | ||
pip3 install -r requirements.txt -y | ||
cd ../ | ||
# outguess隐写 | ||
git clone https://github.com/crorvick/outguess | ||
cd outguess | ||
sudo ./configure | ||
sudo make | ||
sudo make install | ||
cd ../ | ||
# zsteg | ||
gem sources --remove https://rubygems.org/ | ||
gem sources --add https://gems.ruby-china.com/ | ||
gem install zsteg |
17 changes: 17 additions & 0 deletions
17
tools/内存取证/volatility/tool-for-CTF/auto_install_script/local_codemoji.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
|
||
mkdir ~/ctf/tool | ||
cd ~/ctf/tool | ||
git clone https://github.com/mozilla/codemoji | ||
cd codemoji | ||
sudo apt-get install -y nodejs | ||
sudo apt install -y node-gyp npm | ||
sudo npm config set registry https://registry.npm.taobao.org | ||
sudo npm i -g npm | ||
npm install -g bower | ||
npm install -g grunt-cli | ||
npm install -g gulp-cli | ||
|
||
npm install | ||
bower install --allow-root | ||
grunt dev |
9 changes: 9 additions & 0 deletions
9
tools/内存取证/volatility/tool-for-CTF/auto_install_script/tensorflow_on_ubuntu.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# /bin/bash | ||
cp ./.condarc ~ | ||
conda create -n tensorflow python=3.7 -y | ||
conda activate tensorflow | ||
pip install tensorflow==1.15.3 -i https://pypi.tuna.tsinghua.edu.cn/simple/ --timeout=1000 | ||
pip install pandas -i https://pypi.tuna.tsinghua.edu.cn/simple/ --timeout=1000 | ||
pip install matplotlib -i https://pypi.tuna.tsinghua.edu.cn/simple/ --timeout=1000 | ||
pip install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple/ --timeout=1000 | ||
pip install librosa -i https://pypi.tuna.tsinghua.edu.cn/simple/ --timeout=1000 |
3 changes: 3 additions & 0 deletions
3
tools/内存取证/volatility/tool-for-CTF/volatility_plugins/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
* mimikatz.py 获取密码 | ||
* lastpass.py Chrome记录的登录密码 | ||
* usbstor.py 扫描注册表查找插入系统的USB设备 |
Oops, something went wrong.