-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
- 用户指南 | ||
- [配置文件](guide/config.md) | ||
- [内置POC列表](guide/poc-list.md) | ||
- [自定义POC](guide/poc.md) | ||
- [反连平台](guide/reverse.md) | ||
- [检查更新](guide/update.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# 内置POC列表 | ||
|
||
社区版XRay将内置一些常用漏洞的POC,在XRay每次更新后,可以删除本地配置文件,重新生成最新的配置文件。此时,你将看到所有内置POC: | ||
|
||
```yaml | ||
phantasm: | ||
enabled: true | ||
max_parallel: 1 | ||
poc: | ||
- poc-yaml-drupal-drupalgeddon2-rce | ||
- poc-yaml-joomla-cve-2015-7297-sqli | ||
- poc-yaml-joomla-cve-2017-8917-sqli | ||
- poc-yaml-thinkphp5-controller-rce | ||
- poc-yaml-thinkphp5023-method-rce | ||
- poc-go-tomcat-put | ||
- ... | ||
``` | ||
`phantasm.poc`是一个列表,里面包含所有内置POC,列举如下: | ||
|
||
- `poc-yaml-drupal-drupalgeddon2-rce` Drupal远程代码执行漏洞(CVE-2018-7600) | ||
- `poc-yaml-joomla-cve-2015-7297-sqli` Joomla SQL注入漏洞(CVE-2015-7297) | ||
- `poc-yaml-joomla-cve-2017-8917-sqli` Joomla SQL注入漏洞(CVE-2017-8917) | ||
- `poc-yaml-thinkphp5-controller-rce` ThinkPHP < 5.0.23 远程代码执行漏洞 | ||
- `poc-yaml-thinkphp5023-method-rce` ThinkPHP 5.0/5.1 远程代码执行漏洞 | ||
- `poc-go-tomcat-put` Tomcat PUT 文件写入漏洞(CVE-2017-12615) |