Skip to content

一个为PentestBox添加搜索工具名称功能的py脚本

License

Notifications You must be signed in to change notification settings

c0ny1/pentestbox-search-tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

pentestbox-search-tools

为PentestBox添加搜索工具名称功能的py脚本

0x00 前言

大家都知道当PentestBox引入的工具足够多时,我们根本无法记得工具名称。所以在使用时,我们还得去PentestBox目录下查看它们的名称。这很是浪费时间!如果能像metasploit一样通过search命令就能查到相应的工具,那甚是完美。于是就有了这个脚本。

0x01安装

  1. D:\PentestBox\bin\customtools\新建一个scripts文件夹

  2. 下载pentestbox-search-tools.pyD:\PentestBox\bin\customtools\script\

  3. 在文件D:\PentestBox\bin\customtools\customaliases中添加

s=python "%pentestbox_ROOT%\bin\customtools\scripts\pentestbox-search-tools.py" $*

至此我们可以在PentestBox中使用 s 命令执行pentestbox-search-tools.py。

0x02使用

使用格式

s [keyword] [-h/-cs]
参数 描述
-h 显示帮助
-cs case sen是否区分大小写
keyword 要搜索关键字

1.查看帮助

C:\Users\Administrator\Desktop
> s -h
Usage: s [keyword] [-h/-cs]
Examples:
    1.s Burp
    2.s 'Burpsuite'
    3.s Burp?u*
    4.s Burp?u* -sc

2.全词搜索

C:\Users\Administrator\Desktop
> s 'Burpsuite'
[+] burpsuite

C:\Users\Administrator\Desktop
> s 'Burpsuite' -cs

C:\Users\Administrator\Desktop
>

3.模糊搜索

C:\Users\Administrator\Desktop
> s Burp
[+] burpsuite

C:\Users\Administrator\Desktop
> s Burp -cs

C:\Users\Administrator\Desktop
>

4.通配符搜索

C:\Users\Administrator\Desktop
> s Burp?u*
[+] burpsuite

C:\Users\Administrator\Desktop
> s Burp?u* -cs

C:\Users\Administrator\Desktop
>

0x03相关文章

填坑:PentestBox之工具名称搜索

About

一个为PentestBox添加搜索工具名称功能的py脚本

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages