后续介绍的工具通常都为软件包,如无特殊说明,在 Kali Linux 以外也能使用,具体使用方式,请参考官方文档。
一款开源的磁盘加密工具,TrueCrypt 已经于 2014 年停止维护,VeraCrypt 是其继承者。
由于 TrueCrypt 已经停止维护多年,因此更加建议使用 VeraCrypt。
1. 下载安装包
下载地址:
示例:
wget https://github.com/veracrypt/VeraCrypt/releases/download/VeraCrypt_1.26.20/veracrypt-1.26.20-Debian-12-amd64.deb
2. 安装
dpkg -i veracrypt-1.26.20-Debian-12-amd64.deb
安装依赖:
apt -f install
3. 使用
veracrypt --help
veracrypt --version
一款 Linux 平台使用的网络代理工具,可以使得指定应用程序的网络请求经过指定的代理。
1. 安装
安装 3.0 版本:
apt install -y proxychains
安装 4.0 版本:
apt install -y proxychains4
安装 3.0 版本:
yum install -y proxychains
安装 4.0 版本:
yum install -y proxychains4
2. 配置
vim /etc/proxychains.conf
# proxychains.conf VER 3.1
#
# HTTP, SOCKS4, SOCKS5 tunneling proxifier with DNS.
#
# The option below identifies how the ProxyList is treated.
# only one option should be uncommented at time,
# otherwise the last appearing option will be accepted
#
#dynamic_chain
#
# Dynamic - Each connection will be done via chained proxies
# all proxies chained in the order as they appear in the list
# at least one proxy must be online to play in chain
# (dead proxies are skipped)
# otherwise EINTR is returned to the app
#
strict_chain
#
# Strict - Each connection will be done via chained proxies
# all proxies chained in the order as they appear in the list
# all proxies must be online to play in chain
# otherwise EINTR is returned to the app
#
#random_chain
#
# Random - Each connection will be done via random proxy
# (or proxy chain, see chain_len) from the list.
# this option is good to test your IDS :)
# Make sense only if random_chain
#chain_len = 2
# Quiet mode (no output from library)
#quiet_mode
# Proxy DNS requests - no leak for DNS data
proxy_dns
# Some timeouts in milliseconds
tcp_read_time_out 15000
tcp_connect_time_out 8000
# ProxyList format
# type host port [user pass]
# (values separated by 'tab' or 'blank')
#
#
# Examples:
#
# socks5 192.168.67.78 1080 lamer secret
# http 192.168.89.3 8080 justu hidden
# socks4 192.168.1.49 1080
# http 192.168.39.93 8080
#
#
# proxy types: http, socks4, socks5
# ( auth types supported: "basic"-http "user/pass"-socks )
#
[ProxyList]
# add proxy here ...
# meanwile
# defaults set to "tor"
socks4 127.0.0.1 9050
其中:
dynamic_chain
: 表示使用动态地址
[ProxyList]
: 表示代理服务器地址,格式为 协议 IP 端口
3. 使用
3.0 版本使用
proxychains
命令;4.0 版本使用proxychains4
命令,后续示例使用 3.0。
默认使用
/etc/proxychains.conf
配置文件,如需使用其他的配置文件,可以在执行命令时通过-f
参数指定,如proxychains -f /data/proxychains/conf/my-proxychains.conf telnet [目标地址]
proxychains --help
proxychains telnet [目标地址]
proxychains [应用程序]
如(使用代理运行 msfconsole
):
proxychains msfconsole