Kali Linux 从入门到精通(三)-入侵系统定制

Kali Linux 从入门到精通(三)-入侵系统定制

定制

网络配置

临时IP地址

dhclient eth0

ifconfig eth0 192.168.11/24

route add default gw 192.168.1.1 # 添加默认网关

echo nameserver 192.168.1.1 > /etc/resolv.conf

固定IP地址(计算机重启后依然生效)

auto th0

iface th0 inel stalic

address 192.168.20.1

netmask 255.255.255.0

network 192.168.20.255

broadcast 192.168.20.255

gateway 192.168.20.2

dns-nameservers 192.168.1.1 192.168.1.2

up route add -net 172.16.5.0 gw 192.168.10.100 eth1

down route del -net 172.24.0.0/24

更新升级

apt-get update: 实际上是更新的是包的索引文件

apt-get upgrade: 实际更新包的指令

安装软件包

apt-get 命令

安装适合自己的工具软件

apt-get install smplayer ibus ibus-pinyin flashplugin-nonfree gdebi amule qbittorrent geany stardict meld ttf-wqy-microhei kchmviewer freemind netspeed mtr filezilla filezilla-common chromium monodevelop mono-gmcs-y

浏览器插件

firefox浏览器插件

flashgof(基于浏览器插件的下载插件),autoproxy(翻墙插件),Tamper Data(提交修改),cooike,importer,Cookies Manager,Download Youtube Videos as MP4,Firebug,Flagfox(显示服务器位置),HackBar(F9进入操作),hashr(计算Hash值),User Agent Switcher(修改User Agent 可用于欺骗服务器),XSS me,SQL Inject Me

xss-me:https://addons.mozilla.org/en-US/firefox/addon/xss-me/

sql-inject-me: https://addons.mozilla/en-US/firefox/sql-inject-me/src=ss

---------------------

作者:无涯逍遥

来源:https://blog.csdn.net/qq_33592583/article/details/85638229

猜你喜欢

转载自blog.csdn.net/jayjaydream/article/details/89027181
今日推荐