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

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

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

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

工具目录

分类

查看所有分类
Loading categories
SauronEye — 搜索工具,用于查找包含特定单词的特定文件,例如包含密码的文件。 | Kitploit
工具/GitHubGitHub/vivami/sauroneye
OSINT (开源情报)密码攻击信息收集渗透测试红队
GitHubvivami/sauroneye

SauronEye

搜索工具,用于查找包含特定单词的特定文件,例如包含密码的文件。

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

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

SauronEye

SauronEye 是一款搜索工具,旨在帮助红队查找包含特定关键字的文件。

特性:

  • 搜索多个(网络)驱动器
  • 搜索文件内容
  • 搜索 Microsoft Office 文件内容(.doc、.docx、.xls、.xlsx)
  • 在旧版 2003 .xls 和 .doc 文件中查找 VBA 宏
  • 多线程搜索多个驱动器以提高性能
  • 支持搜索关键字中的正则表达式
  • 兼容 Cobalt Strike 的 execute-assembly

它速度也很快,能在不到一分钟内搜索网络驱动器上的 5 万个文件(总计 1.3 TB,使用合理文件筛选)。搜索 C:\(廉价 SATA SSD 上)大约只需 15 秒。

使用示例

root@kitploit:~
C:\>SauronEye.exe -d C:\Users\vincent\Desktop\ --filetypes .txt .doc .docx .xls --contents --keywords password pass* -v`

         === SauronEye ===

Directories to search: C:\Users\vincent\Desktop\
For file types: .txt, .doc, .docx, .xls
Containing: wacht, pass
Search contents: True
Search Office 2003 files for VBA: True
Max file size: 1000 KB
Search Program Files directories: False
Searching in parallel: C:\Users\vincent\Desktop\
[+] C:\Users\vincent\Desktop\test\wachtwoord - Copy (2).txt
[+] C:\Users\vincent\Desktop\test\wachtwoord - Copy (3).txt
[+] C:\Users\vincent\Desktop\test\wachtwoord - Copy.txt
[+] C:\Users\vincent\Desktop\test\wachtwoord.txt
[+] C:\Users\vincent\Desktop\pass.txt
[*] Done searching file system, now searching contents
[+] C:\Users\vincent\Desktop\pass.txt
         ...the admin password=admin123...

[+] C:\Users\vincent\Desktop\test.docx:
         ...this is a testPassword = "welkom12...


 Done. Time elapsed = 00:00:01.6656911

搜索多个目录,包括网络驱动器:

SauronEye.exe --directories C:\ \\SOMENETWORKDRIVE\C$ --filetypes .txt .bat .docx .conf --contents --keywords password pass*

搜索包含空格的路径和共享:

SauronEye.exe -d "C:\Users\user\Path with a space" -d "\\SOME NETWORK DRIVE\C$" --filetypes .txt --keywords password pass*

root@kitploit:~
C:\>SauronEye.exe --help

         === SauronEye ===

Usage: SauronEye.exe [OPTIONS]+ argument
Search directories for files containing specific keywords.

Options:
  -d, --directories=VALUE    Directories to search
  -f, --filetypes=VALUE      Filetypes to search for/in
  -k, --keywords=VALUE       Keywords to search for
  -c, --contents             Search file contents
  -m, --maxfilesize=VALUE    Max file size to search contents in, in kilobytes
  -b, --beforedate=VALUE     Filter files last modified before this date,
                                format: yyyy-MM-dd
  -a, --afterdate=VALUE      Filter files last modified after this date,
                                format: yyyy-MM-dd
  -s, --systemdirs           Search in filesystem directories %APPDATA% and %
                               WINDOWS%
  -v, --vbamacrocheck        Check if 2003 Office files (*.doc and *.xls)
                               contain a VBA macro
  -h, --help                 Show help

附注

SauronEye 不会搜索 %WINDIR% 和 %APPDATA%。 使用 --systemdirs 标志来搜索 Program Files* 的内容。 SauronEye 依赖于仅在 .NET 4.7.2 及以上版本中可用的功能,因此需要 >= .NET 4.7.2 才能运行。

下载工具