mirror of
https://github.com/shadow1ng/fscan.git
synced 2026-09-22 03:10:42 +08:00
将 plugins/services、plugins/local、plugins/web、webscan 层的日志输出、 漏洞结果保存和 TCP 计数器从全局 common.Log*/GetGlobalState() 迁移到 session 实例方法,确保 SDK 并发扫描时各实例完全隔离。 - 50 个文件,所有插件日志走 session.Log* - DoRequest 加入 session 参数,计数器走 session.State - POC 执行器通过 POCContext.Session 传递 - 仅保留 init() 和 CEL runtime 等无 session 场景的全局回退
264 lines
6.2 KiB
Go
264 lines
6.2 KiB
Go
//go:build plugin_neo4j || !plugin_selective
|
|
|
|
package services
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/shadow1ng/fscan/common"
|
|
"github.com/shadow1ng/fscan/common/i18n"
|
|
"github.com/shadow1ng/fscan/plugins"
|
|
)
|
|
|
|
// Neo4jPlugin Neo4j扫描插件
|
|
type Neo4jPlugin struct {
|
|
plugins.BasePlugin
|
|
}
|
|
|
|
func NewNeo4jPlugin() *Neo4jPlugin {
|
|
return &Neo4jPlugin{
|
|
BasePlugin: plugins.NewBasePlugin("neo4j"),
|
|
}
|
|
}
|
|
|
|
func (p *Neo4jPlugin) Scan(ctx context.Context, info *common.HostInfo, session *common.ScanSession) *ScanResult {
|
|
config := session.Config
|
|
target := info.Target()
|
|
|
|
if config.DisableBrute {
|
|
return p.identifyService(ctx, info, session)
|
|
}
|
|
|
|
// 先测试未授权访问
|
|
if result := p.testUnauthorizedAccess(ctx, info, session); result != nil && result.Success {
|
|
session.LogVuln(i18n.Tr("neo4j_unauth", target))
|
|
return result
|
|
}
|
|
|
|
credentials := GenerateCredentials("neo4j", config)
|
|
if len(credentials) == 0 {
|
|
return &ScanResult{
|
|
Success: false,
|
|
Service: "neo4j",
|
|
Error: fmt.Errorf("%s", i18n.GetText("service_no_credentials")),
|
|
}
|
|
}
|
|
|
|
// 使用公共框架进行并发凭据测试
|
|
authFn := p.createAuthFunc(info, session)
|
|
testConfig := DefaultConcurrentTestConfigWithTarget(config, info)
|
|
|
|
result := TestCredentialsConcurrently(ctx, credentials, authFn, "neo4j", testConfig)
|
|
|
|
if result.Success {
|
|
session.LogVuln(i18n.Tr("neo4j_credential", target, result.Username, result.Password))
|
|
}
|
|
|
|
return result
|
|
}
|
|
|
|
// createAuthFunc 创建Neo4j认证函数
|
|
func (p *Neo4jPlugin) createAuthFunc(info *common.HostInfo, session *common.ScanSession) AuthFunc {
|
|
return func(ctx context.Context, cred Credential) *AuthResult {
|
|
return p.doNeo4jAuth(ctx, info, cred, session)
|
|
}
|
|
}
|
|
|
|
// doNeo4jAuth 执行Neo4j认证
|
|
func (p *Neo4jPlugin) doNeo4jAuth(ctx context.Context, info *common.HostInfo, cred Credential, session *common.ScanSession) *AuthResult {
|
|
config := session.Config
|
|
baseURL := "http://" + info.Target()
|
|
|
|
client := &http.Client{Timeout: config.Timeout}
|
|
|
|
req, err := http.NewRequestWithContext(ctx, "GET", baseURL+"/user/neo4j", nil)
|
|
if err != nil {
|
|
return &AuthResult{
|
|
Success: false,
|
|
ErrorType: classifyNeo4jErrorType(err),
|
|
Error: err,
|
|
}
|
|
}
|
|
|
|
req.SetBasicAuth(cred.Username, cred.Password)
|
|
req.Header.Set("Content-Type", "application/json")
|
|
|
|
resp, err := session.HTTPDo(client, req)
|
|
if err != nil {
|
|
return &AuthResult{
|
|
Success: false,
|
|
ErrorType: classifyNeo4jErrorType(err),
|
|
Error: err,
|
|
}
|
|
}
|
|
defer func() { _ = resp.Body.Close() }()
|
|
|
|
if resp.StatusCode == 200 {
|
|
return &AuthResult{
|
|
Success: true,
|
|
Conn: &neo4jConnWrapper{},
|
|
ErrorType: ErrorTypeUnknown,
|
|
Error: nil,
|
|
}
|
|
}
|
|
|
|
if resp.StatusCode == 401 || resp.StatusCode == 403 {
|
|
return &AuthResult{
|
|
Success: false,
|
|
ErrorType: ErrorTypeAuth,
|
|
Error: fmt.Errorf(i18n.GetText("service_auth_failed")+": %d", resp.StatusCode),
|
|
}
|
|
}
|
|
|
|
return &AuthResult{
|
|
Success: false,
|
|
ErrorType: ErrorTypeUnknown,
|
|
Error: fmt.Errorf(i18n.GetText("unknown_status_code")+": %d", resp.StatusCode),
|
|
}
|
|
}
|
|
|
|
// neo4jConnWrapper Neo4j连接包装器
|
|
type neo4jConnWrapper struct{}
|
|
|
|
func (w *neo4jConnWrapper) Close() error {
|
|
return nil
|
|
}
|
|
|
|
// classifyNeo4jErrorType Neo4j错误分类
|
|
func classifyNeo4jErrorType(err error) ErrorType {
|
|
if err == nil {
|
|
return ErrorTypeUnknown
|
|
}
|
|
|
|
neo4jAuthErrors := []string{
|
|
"authentication failed",
|
|
"unauthorized",
|
|
"invalid credentials",
|
|
"401 unauthorized",
|
|
"403 forbidden",
|
|
}
|
|
|
|
return ClassifyError(err, neo4jAuthErrors, CommonNetworkErrors)
|
|
}
|
|
|
|
func (p *Neo4jPlugin) testUnauthorizedAccess(ctx context.Context, info *common.HostInfo, session *common.ScanSession) *ScanResult {
|
|
config := session.Config
|
|
baseURL := "http://" + info.Target()
|
|
|
|
client := &http.Client{Timeout: config.Timeout}
|
|
|
|
req, err := http.NewRequestWithContext(ctx, "GET", baseURL+"/db/data/", nil)
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
|
|
resp, err := session.HTTPDo(client, req)
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
defer func() { _ = resp.Body.Close() }()
|
|
|
|
if resp.StatusCode == 200 {
|
|
body, err := io.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return &ScanResult{
|
|
Success: false,
|
|
Service: "neo4j",
|
|
Error: err,
|
|
}
|
|
}
|
|
if !strings.Contains(strings.ToLower(string(body)), "neo4j") {
|
|
return &ScanResult{
|
|
Success: false,
|
|
Service: "neo4j",
|
|
Error: fmt.Errorf("%s", i18n.Tr("service_not_identified", "Neo4j")),
|
|
}
|
|
}
|
|
return &ScanResult{
|
|
Type: plugins.ResultTypeVuln,
|
|
Success: true,
|
|
Service: "neo4j",
|
|
Banner: i18n.GetText("service_unauthorized"),
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (p *Neo4jPlugin) identifyService(ctx context.Context, info *common.HostInfo, session *common.ScanSession) *ScanResult {
|
|
config := session.Config
|
|
target := info.Target()
|
|
baseURL := "http://" + info.Target()
|
|
|
|
client := &http.Client{Timeout: config.Timeout}
|
|
|
|
req, err := http.NewRequestWithContext(ctx, "GET", baseURL, nil)
|
|
if err != nil {
|
|
return &ScanResult{
|
|
Success: false,
|
|
Service: "neo4j",
|
|
Error: err,
|
|
}
|
|
}
|
|
|
|
resp, err := session.HTTPDo(client, req)
|
|
if err != nil {
|
|
return &ScanResult{
|
|
Success: false,
|
|
Service: "neo4j",
|
|
Error: err,
|
|
}
|
|
}
|
|
defer func() { _ = resp.Body.Close() }()
|
|
|
|
var banner string
|
|
serverHeader := resp.Header.Get("Server")
|
|
|
|
if serverHeader != "" && strings.Contains(strings.ToLower(serverHeader), "neo4j") {
|
|
banner = "Neo4j"
|
|
} else if resp.StatusCode == 200 || resp.StatusCode == 401 {
|
|
body, err := io.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return &ScanResult{
|
|
Success: false,
|
|
Service: "neo4j",
|
|
Error: err,
|
|
}
|
|
}
|
|
if strings.Contains(strings.ToLower(string(body)), "neo4j") {
|
|
banner = "Neo4j"
|
|
} else {
|
|
return &ScanResult{
|
|
Success: false,
|
|
Service: "neo4j",
|
|
Error: fmt.Errorf("%s", i18n.Tr("service_not_identified", "Neo4j")),
|
|
}
|
|
}
|
|
} else {
|
|
return &ScanResult{
|
|
Success: false,
|
|
Service: "neo4j",
|
|
Error: fmt.Errorf("%s", i18n.Tr("service_not_identified", "Neo4j")),
|
|
}
|
|
}
|
|
|
|
session.LogSuccess(i18n.Tr("neo4j_service", target, banner))
|
|
|
|
return &ScanResult{
|
|
Type: plugins.ResultTypeService,
|
|
Success: true,
|
|
Service: "neo4j",
|
|
Banner: banner,
|
|
}
|
|
}
|
|
|
|
func init() {
|
|
RegisterPluginWithPorts("neo4j", func() Plugin {
|
|
return NewNeo4jPlugin()
|
|
}, []int{7474, 7687, 7473})
|
|
}
|