当前位置:网站首页>kali最新更新指南
kali最新更新指南
2022-07-02 06:21:00 【zb0567】
1、更新源
方法1
sudo mv /etc/apt/sources.list /etc/apt/sources.list.bak
编辑 /etc/apt/sources.list 文件, 在文件最前面添加以下条目:
deb https://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib deb-src https://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib
更改完 sources.list 文件后请运行 sudo apt-get update 更新索引以生效。
方法2
#(!可选!)备份原文件
mv /etc/apt/sources.list /etc/apt/sources.list.bak
#新建源文件
nano /etc/apt/sources.list
#写入源
#中科大kali源
deb http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib
deb http://mirrors.ustc.edu.cn/kali-security/ kali-rolling/updates main contrib non-free
deb-src http://mirrors.ustc.edu.cn/kali-security/ kali-rolling/updates main contrib non-free
#阿里云kali源
deb http://mirrors.aliyun.com/kali kali-rolling main non-free contrib
deb http://mirrors.aliyun.com/kali-security/ kali-rolling/updates main contrib non-free
deb-src http://mirrors.aliyun.com/kali-security/ kali-rolling/updates main contrib non-free
#Ctrl+X保存
#更新源
sudo apt update
工具集约7G
终端执行:
sudo apt-get install kali-linux-all
注意:新版本中kali-linux-all更名为kali-linux-everything
由于以上原因,报错请执行:
sudo apt-get install kali-linux-everything
2、更新
sudo apt-get update
3、中文
sudo dpkg-reconfigure locales
en_us UTF8 UTF8
zh_cn UTF8 UTF8
zh_cn gbk
空格选中
选中zh_cn UTF-8
reboot
4、安装zsteg
git clone https://github.com/zed-0xff/zsteg cd zsteg/ gem install zsteg
Git Clone错误解决:GnuTLS recv error (-110): The TLS connection was non-properly terminated.
apt-get install gnutls-bin
git config --global http.sslVerify false
git config --global http.postBuffer 1048576000
zsteg的使用方法
查看帮助
zsteg -h
查看LSB信息
zsteg pcat.png
检测zlib
# -b的位数是从1开始的 zsteg zlib.bmp -b 1 -o xy -v
还有wbStego等请参考github的README.md
5、安装exiftool
apt-get install exiftool
6、安装imagemagick
apt-get install imagemagick
边栏推荐
- IPv6 experiment and summary
- CUDA中的异步数据拷贝
- The Chinese word segmentation task is realized by using traditional methods (n-gram, HMM, etc.), neural network methods (CNN, LSTM, etc.) and pre training methods (Bert, etc.)
- Redis---1. Data structure characteristics and operation
- LeetCode 27. 移除元素
- 【每日一题】写一个函数,判断一个字符串是否为另外一个字符串旋转之后的字符串。
- 实习生跑路留了一个大坑,搞出2个线上问题,我被坑惨了
- Redis——大Key問題
- CUDA中的Warp Shuffle
- Community theory | kotlin flow's principle and design philosophy
猜你喜欢

Summary of WLAN related knowledge points

WLAN相关知识点总结

TensorRT的数据格式定义详解

Flutter hybrid development: develop a simple quick start framework | developers say · dtalk

State machine in BGP

LeetCode 90. Subset II

Leverage Google cloud infrastructure and landing area to build enterprise level cloud native excellent operation capability

队列(线性结构)

Invalid operation: Load into table ‘sources_orderdata‘ failed. Check ‘stl_load_errors‘ system table

VLAN experiment of switching technology
随机推荐
LeetCode 27. Removing Elements
CUDA中内置的Vector类型和变量
CUDA中的Warp Shuffle
BGP 路由優選規則和通告原則
Let every developer use machine learning technology
LeetCode 78. subset
CUDA与Direct3D 一致性
TensorRT的数据格式定义详解
Contest3147 - game 38 of 2021 Freshmen's personal training match_ F: Polyhedral dice
BGP报文详细解释
sudo提权
Data science [viii]: SVD (I)
TensorRT的功能
重载全局和成员new/delete
Ros2 --- lifecycle node summary
Redis——热点key问题
Redis——缓存击穿、穿透、雪崩
利用NVIDIA GPU将Minecraft场景渲染成真实场景
CUDA用户对象
实现strStr() II