Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
google-dorks — 用于Web安全与漏洞赏金的有用Google Dorks | Kitploit
工具/GitHubGitHub/proviesec/google-dorks
OSINT (开源情报)侦察漏洞分析信息收集Web安全秘密检测错误配置精选资源
GitHubproviesec/google-dorks

google-dorks

用于Web安全与漏洞赏金的有用Google Dorks

查看仓库
1.3k24271个月前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

google-dorks(2026 年 1 月更新)

License contributions Proviesec 标志 Twitter Buy Me A Coffee Buy Me A Coffee 阅读我的 Medium 博客空间:👩‍💻Proviesec Security Medium 文章 - 快来阅读

目录

  • 简介
  • 我心爱的 google dork
  • 搜索过滤器
  • 运算符
    • 搜索词
    • OR
  • 想法
  • 链接
  • 示例
  • 防范 GOOGLE DORKS

简介

⭐ 在 GitHub 上为我们加星标 — 这能带来巨大的动力!⭐

如果你有任何 google dork,只需创建一个 PullRequest 或在 Twitter 上给我留言。 Twitter

我关于 Google Dorks 的 Medium 文章 如何使用 google dorks

我心爱的 google dork

root@kitploit:~
intext:"index of" "parent directory"

搜索过滤器

运算符

搜索词

该操作符仅搜索引号内的精确词条。例如,当你查找的词条含义模糊、容易与其他内容混淆,或搜索结果不够相关时,可以使用它。

下面是一个示例:

root@kitploit:~
"Admin Loginpage"

OR

该操作符搜索某个特定搜索词或另一个词。

root@kitploit:~
site:instagram.com | site:github.com

AND

该操作符同时搜索某个特定搜索词和另一个词。

root@kitploit:~
site:github.com & site:twitter.com

运算符组合

该操作符组合多个搜索词。

root@kitploit:~
(site:instagram.com | site:twitter.com) (intext:"admin")
(site:instagram.com | site:twitter.com) & intext:"admin"

包含结果

这将根据关键词的出现次数对结果进行排序。

root@kitploit:~
site:twitter.com +site:twitter.*

排除结果

root@kitploit:~
site:twitter.* -site:twitter.com

更好的结果(子域名)

root@kitploit:~
site:*.site.com

site:*.*.site.com

site:*.*.*.site.com

同义词

root@kitploit:~
~set

通配符模式(*)

root@kitploit:~
site:*.com

想法

  • Git google dorks
  • phpmyadmin google dorks
  • phpinfo google dorks
  • 日志文件 google dorks
  • 针对 excel 文件的 google dorks
  • 针对演示文稿的 Google Dorks
  • 最佳 google dorks 报告
  • 使用 google dorks 查找 aws 密钥
  • 使用 google dorks 查找 js 密钥
  • CMS google dorks
    • Wordpress
    • Typo3
    • Magento
    • Joomla
    • Drupal
    • Shopify
  • Admin google dorks

链接

  • exploit-db.com
  • nvd.nist.gov
  • cxsecurity.com
  • vulnerability-lab.com

Writeups

https://infosecwriteups.com/my-first-reflected-xss-bug-bounty-google-dork-xxx-92ac1180e0d0 https://dewangpanchal98.medium.com/microsoft-bug-bounty-writeup-5ee4a7264dbf

示例

image

防范 GOOGLE DORKS

对用户名、密码等敏感数据进行编码/加密。 对自己的网站运行查询,检查是否能够找到任何敏感数据。万一发现了敏感信息,你可以通过 Google Search Console 将其从搜索结果中移除。 利用位于网站根目录中的 robots.txt 文件来保护敏感内容。 使用 robots.txt 有助于防止 Google 索引你的网站,但它也可能向攻击者暴露敏感数据可能存在的位置。 User-agent: * Disallow: /

你也可以屏蔽特定目录,使其不被网络爬虫抓取。 如果你有 /phpinfo 站点并需要保护它,只需在其中放入以下代码:

User-agent: *
Disallow: /phpinfo/

限制对特定文件的访问:

User-agent: *
Disallow: /member/info.html

限制对包含 ? 符号的动态 URL 的访问:

User-agent: *
Disallow: /*?

免责声明:别当混蛋!

毋庸置疑,请非常非常小心地使用此工具。作者不对任何后果负责。

下载工具
FilterDescriptionExample
allintext搜索所有指定关键词的出现。allintext:"keyword"
intext搜索同时或连续出现的关键词。intext:"keyword"
intitle搜索标题中全部或任一关键词的出现。intitle:"keyword"
allintitle一次性搜索所有关键词的出现。allintitle:"keyword"
inurl搜索匹配任一关键词的 URL。inurl:"keyword"
allinurl搜索匹配查询中所有关键词的 URL。allinurl:"keyword"
site专门搜索指定网站,并列出该网站的所有结果。site:"www.github.com"
filetype搜索查询中指定的特定文件类型。filetype:"pdf"
link搜索指向页面的外部链接。link:"keyword"
numrange用于在搜索中查找特定数字。numrange:33-43
before/after用于在指定的日期范围内进行搜索。filetype:pdf & (before:2021-01-01 after:2021-05-01)
allinanchor(以及 inanchor)按链接数量从多到少显示链接中包含关键词的网站。inanchor:rat
allinpostauthor(以及 inpostauthor)专用于博客搜索,可筛选出特定作者撰写的博客文章。allinpostauthor:"keyword"
related列出与给定网页“相似”的网页。related:www.github.com
cache显示 Google 缓存中的网页版本。cache:www.github.com
  • 监控页面 - google dorks
  • Google Dorks - Github 页面