当前位置: 首页 > news >正文

dedecms 资源类网站国内顶尖的公司

dedecms 资源类网站,国内顶尖的公司,wordpress主题ashley,广州越秀建网站的公司开源 工具名称下载地址工具描述cansinahttps://github.com/deibit/cansina网站的敏感目录发掘工具Cewlcewl | Kali Linux Tools你可以给它的爬虫指定URL地址和爬取深度,接下来Cewl会给你返回一个字典文件dirsearchhttps://github.com/maurosoria/dirsearch目录扫描…

开源

工具名称下载地址工具描述
cansinahttps://github.com/deibit/cansina网站的敏感目录发掘工具
Cewlcewl | Kali Linux Tools你可以给它的爬虫指定URL地址和爬取深度,接下来Cewl会给你返回一个字典文件
dirsearchhttps://github.com/maurosoria/dirsearch目录扫描
dirsearch_bypass403https://github.com/lemonlove7/dirsearch_bypass403目录扫描+JS文件中提取URL和子域+403状态绕过+指纹识别
dirbkali自带目录扫描
dirmaphttps://github.com/H4ckForJob/dirmap一个高级web目录、文件扫描工具
dontgo403https://github.com/devploit/dontgo403dontgo403 是一个绕过 40X 错误的工具。
feroxbusterhttps://github.com/epi052/feroxbuster递归目录扫描
ffufhttps://github.com/ffuf/ffuf模糊性测试,目录爆破工具
gobusterhttps://github.com/OJ/gobuster基于go的快读目录扫描工具
gauhttps://github.com/lc/gau从多个网站提取目标相关信息
gospiderhttps://github.com/jaeles-project/gospider爬虫 可以发现搜索引擎发现不了的目录
ihoneyBakFileScan_Modifyhttps://github.com/VMsec/ihoneyBakFileScan_Modify备份文件扫描器
jsluicehttps://github.com/BishopFox/jsluice从JavaScript中提取URL、路径、机密和其他有趣的部分
katanahttps://github.com/projectdiscovery/katanakatana 是 projectdiscovery 项目中的一个网页链接抓取工具,可以自动解析js文件。新一代爬行框架。
sprayhttps://github.com/chainreactors/sprayNext Generation HTTP Dir/File Fuzz Tool
urlfounderhttps://github.com/chainreactors/urlfounderFast passive URL enumeration tool.
urlbrutehttps://github.com/ReddyyZ/urlbrute使用GoLang开发的目录/子域扫描器
URLFinderhttps://github.com/pingc0y/URLFinder类似JSFinder的golang实现,更快更全更舒服
waybackurlshttps://github.com/tomnomnom/waybackurls从第三方平台获取目标网页内容
wfuzzhttps://github.com/xmendez/wfuzz/wfuzz提供了简洁的编程语言接口来处理wfuzz或Burpsuite获取到的HTTP请求和响应
yjdirscanhttps://github.com/foryujian/yjdirscan御剑目录扫描专业版
御剑后台扫描工具珍藏版https://www.fujieace.com/hacker/tools/yujian.html图形化界面版爆破工具

kali自带

dirb

dirb http://192.168.0.1 /root/asp.txt,/root/dir.txt -a "USER-AGENT" –c "Cookie" -z 100

nikto

nikto扫描web服务

nikto -C all -h http://192.168.0.107 

wpscan

wpscan枚举用户爆破密码

wpscan --url http://192.168.0.107/ -e u --wordlist /root/wordlist.txt 

扫描漏洞插件

wpscan --url http://192.168.0.107/ -e vp 

joomscan

perl joomscan.pl --url 192.168.0.107

WFuzz

爆破文件和文件夹

wfuzz -w wordlist URL/FUZZ.php
wfuzz -w wordlist URL/FUZZ

枚举数字参数

wfuzz -z range,000-999 -b session=session -b cookie=cookie http://127.0.0.1/getuser.php?uid=FUZZ

POST账号密码爆破FUZnZ

wfuzz -w userList -w pwdList -d "username=FUZZ&password=FUZ2Z" http://127.0.0.1/login.php

随机HTTP头

wfuzz -z range,0000-9999 -H "X-Forwarded-For: FUZZ" http://127.0.0.1/get.php?userid=666

使用代理fuzz

wfuzz -w wordlist -p 127.0.0.1:1087:SOCKS5 URL/FUZZ

基础认证爆破

wfuzz -z list,"username-password" --basic FUZZ:FUZZ URL

【结果过滤】--hc或--ss不显示符合条件的结果。 【结果过滤】--sc或--sl或--sw或--sh显示符合条件的结果。

Cewl

爬行网站存为字典
>cewl http://www.qq.com/ -w dict.txt
指定字典长度
>cewl http://www.qq.com/ -m 9 -w dict.txt
网站提取Email
>cewl http://www.qq.com/ -n –e

 

Dirsearch

-u 目标
-e 文件扩展名
-x 排除状态码结果
-w 指定字段
-r 递归扫描
-R 设置递归级别
-t 设置线程数(50-100)
-c cookie
>python3 dirsearch.py -u https://target
>python3 dirsearch.py -e php,html,js -u https://target -w /path/to/wordlist
>python3 dirsearch.py -e php,html,js -u https://target --proxy 127.0.0.1:8080
>python3 dirsearch.py -e php,html,js -u https://target --proxy socks5://1.1.1.1:8080
>python3 dirsearch.py --random-user-agents --recursive --thread 50 --extension php --plain-text-report report.txt –url http://127.0.0.1

 

dirmap

>python dirmap.py -i https://target.com -lcf
>python dirmap.py -i 192.168.1.1 -lcf
>python dirmap.py -i 192.168.1.0/24 -lcf
>python dirmap.py -i 192.168.1.1-192.168.1.100 -lcf
>python dirmap.py -iF targets.txt -lcf
http://www.yayakq.cn/news/743229/

相关文章:

  • 模板网站建设的公司中企动力邮箱登陆网址
  • 昆明专业建站怎么做网站代码
  • 网站建设制作费用预算表wordpress修改语言
  • 一般做网站图是多大的像素网站运营风险分析
  • seo网站策划上海网站建设开发哪
  • 网站建设维护学什么科目宁波网页设计联系方式
  • 做网站运营的女生多吗萍乡网站优化
  • 蓝色响应式机械类网站做棋牌辅助网站
  • 网站地图 模板查公司的国家网站有哪些
  • 网站流量统计表包头教育云网站建设
  • 海口网站建设解决方案wordpress4中文
  • 手机网站列表模板网站做网站词怎么推广
  • 哈尔滨网站专业制作建设部房地产网站
  • 达州做网站清爽帝国cms
  • 网站开发与设计专业在服务器上运行wordpress
  • 自己电脑做服务器上传网站 需要备案吗旅游网站源码免费下载
  • 网站开发要求网站怎么做直播功能
  • 小蘑菇网站建设软件网站建设vs网络推广
  • 央企网站开发邯郸信息港征婚交友
  • 网站做流量的论坛贴吧Linux网站建设总结
  • 番禺建设网站公司免费网络电话app下载
  • 自助建站系统php培训网站有哪些
  • 做网站的公司怎么拓展业务wordpress 显示一篇文章
  • 住房和建设执业资格注册中心网站美食网站开发的难点
  • 有批量做基因结构的网站吗自己做网站商城需要营业执照吗
  • 网站关键词做的越多越好吗开通腾讯企业邮箱入口
  • 广州珠江工程建设监理有限公司网站进行网站建设的上市公司
  • 网站建设番禺企业网站建设怎么选择空间
  • 福安市网站建设南宁网络推广外包
  • 宝安做网站公司建站做得好的公司