网站导航

新闻资讯

当前位置:首页 > 新闻资讯

超实用的网络安全开源工具

发布时间:2022-04-11

简要描述:

1.Web Shell生成器和命令行接口工具生成器使用了php、asp和jsp来创建Webshelhttps://github.com/EatonChips/wshgit clone https://github.com/EatonChips/wsh.git
wsh 127....

详细介绍

1.Web Shell生成器和命令行接口工具

生成器使用了php、asp和jsp来创建Webshel

https://github.com/EatonChips/wshgit clone https://github.com/EatonChips/wsh.git
wsh 127.0.0.1:8080/test.php --param cmdwsh generate php --param cmd --no-file -o shell.phpwsh generate php --no-file --header user-agent  -o shell.phpwsh 127.0.0.1:8080/shell.php --header user-agentwsh generate php --no-file --param cmd -w 127.0.0.1,10.0.23.3 -w 12.4.22.3 -o shell.phpwsh generate php --no-file --param cmd --pass S3cr3t --pass-param passwsh 127.0.0.1:8080/shell.php --param cmd -P pass:S3cr3twsh generate php --no-file --param cmd --pass S3cr3t --pass-header pass-headerwsh 127.0.0.1:8080/shell.php --param cmd -H pass-header:S3cr3twsh g php --param cmd --no-file --base64wsh g jsp --param cmd --no-file -o index.jspjar -cvf shell.war index.jspwsh http://10.0.0.27/shell.asp --param cmd --prefix powershell.exe127.0.0.1:8080/shell.php --param cmd --log localhost.logwsh 127.0.0.1:8080/index.php -X POST --param cmdwsh 127.0.0.1:8080/index.php -X POST --param cmd --trim-prefix '
' --trim-suffix '
'

2.使用PacketSifter从pcap中筛选有价值的信息

Linux环境安装Wireshark及依赖库

https://tshark.dev/setup/install/

Tshark环境配置

https://tshark.dev/setup/configuration/
https://github.com/packetsifter/packetsifterToolgit clone https://github.com/packetsifter/packetsifterTool.git
cd packetsifterToolsh AbuseIPDBInitial.shsh VTInitial.shsh packetsifter.sh
VirusTotal Integrationapt-get install jqapt-get install curl
AbuseIPDB Integrationpt-get install jqapt-get install curl
./packetsifter -i /tmp/testing.pcap -a -r -v

3.Web身份认证测试框架

Raider会将身份验证机制视为有限状态机,每个身份验证步骤都是不同的状态,具有自己的输入和输出,它们可以是Cookie、Header、CSRF令牌或其他信息

https://github.com/DigeeX/raider
pip3 install --user raider

4.功能强大的智能字典生成器

Elpscrk是一款功能强大的通用用户密码分析工具,本质上也是一个智能字典生成器

https://github.com/D4Vinci/elpscrk
git clone https://github.com/D4Vinci/elpscrk.git
pip install -r requirements.txt
或
python3 -m pip install -r requirements.txt

5.功能强大的逆向工程分析工具

Doldrums是一款功能强大的逆向工程分析工具,主要针对的是Android端Flutter应用程序,Doldrums是一个针对Flutter/Dart Android代码(一般称之为libapp.so)的解析器和信息提取器,支持所有的Dart v2.10发行版。在运行时,Doldrums可以导出隔离快照中存在的所有类。

https://github.com/rscloura/Doldrums
pip3 install pyelftools
python3 src/main.py [-v] libapp.so output

6.基于C#的数据欺骗和MitM工具

InveighZero是一款集LLMNR/NBNS/mDNS/DNS/DHCPv6欺骗和中间人攻击于一身的工具,该工具旨在帮助渗透测试专家和红队研究人员找出目标Windows系统中的安全缺陷。InveighZero基于C#开发,当前版本中的很多功能都跟PowerShell版本的Inveigh

https://github.com/Kevin-Robertson/Inveigh
https://github.com/Kevin-Robertson/InveighZero
git clone https://github.com/Kevin-Robertson/InveighZero.git

7.使用Uchihash处理恶意软件中的嵌入式哈希

Uchihash是一款功能强大的实用工具,可以帮助广大研究人员处理和分析嵌入在恶意软件之中的各种哈希,以节省恶意软件分析所需的时间。

Uchihash支持的分析内容:

动态导入API(尤其是Shellcode中的)

检测正在运行的进程(分析工具的进程,反分析机制)

检测虚拟机或反病毒工具(反分析机制)

https://github.com/N1ght-W0lf/Uchihash
git clone https://github.com/N1ght-W0lf/Uchihash.git
pip install -r requirements.txt
uchihash.py [-h] [--algo ALGO] [--apis] [--keywords] [--list LIST] [--script SCRIPT] [--search SEARCH] [--hashes HASHES] [--ida]
python uchihash.py --algo crc32 --apis
python uchihash.py --algo murmur3 --list mywords.txt
python uchihash.py --search hashmap.txt --hashes myhashes.txt
python uchihash.py --script custom_algo.py --apis
python uchihash.py --search output/hashmap.txt --hashes buer_hashes.txt --ida

8.使用ppmap检测和利用XSS漏洞

sudo apt-get install chromium
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -sudo apt-get updatesudo apt-get install google-chrome-stable
go get -u github.com/chromedp/chromedp
https://github.com/kleiton0x00/ppmaphttps://github.com/kleiton0x00/ppmap/releasesgit clone https://github.com/kleiton0x00/ppmap.git
cd ppmapgo build ppmap.go

单个扫描

echo 'https://target.com' | ./ppmap
echo 'http://target.com/something/?page=home' | ./ppmap

批量扫描

cat url.txt | ./ppmap

9.针对重签名IPA的内存搜索和修复工具(内存修改是游戏领域中最容易实现作弊的方法)

Ipa-medit是一款针对重签名IPA的内存搜索和修复工具,该工具可以在不越狱的情况下使用,主要针对的是移动端游戏安全测试领域。

MacOS

需要先安装好有效的iOS开发证书

Xcode

https://github.com/libimobiledevice/libimobiledevice
https://github.com/libimobiledevice/ideviceinstaller

依赖组件的安装命令

brew install --HEAD libplistbrew install --HEAD usbmuxdbrew install --HEAD libimobiledevicebrew install --HEAD ideviceinstaller
go install github.com/aktsk/ipa-medit@latest
https://github.com/aktsk/ipa-meditgit clone git@github.com:aktsk/ipa-medit.gitcd ipa-meditmake build
ipautil decode tap1000000.ipa #unzipipautil build Payload         #re-sign and generate .ipa file
unzip tap1000000.ipaipa-medit -bin="./Payload/tap1000000.app/tap1000000" -id="jp.hoge.tap1000000"

 


推荐产品

如果您有任何问题,请跟我们联系!

联系我们

Copyright © 武汉网盾科技有限公司 版权所有 备案号:鄂ICP备2023003462号-5

地址:武汉市东湖高新区光谷大道光谷世贸中心A栋23楼

在线客服 联系方式 二维码

服务热线

18696195380/18672920250

扫一扫,关注我们

关闭