mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 18:25:25 +00:00
59 lines
1.7 KiB
Go
59 lines
1.7 KiB
Go
|
|
package server
|
||
|
|
|
||
|
|
import (
|
||
|
|
"path"
|
||
|
|
|
||
|
|
"github.com/projectdiscovery/gologger"
|
||
|
|
"github.com/projectdiscovery/nuclei/v3/internal/server/scope"
|
||
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/input/types"
|
||
|
|
)
|
||
|
|
|
||
|
|
func (s *DASTServer) consumeTaskRequest(req PostRequestsHandlerRequest) {
|
||
|
|
defer s.endpointsInQueue.Add(-1)
|
||
|
|
|
||
|
|
parsedReq, err := types.ParseRawRequestWithURL(req.RawHTTP, req.URL)
|
||
|
|
if err != nil {
|
||
|
|
gologger.Warning().Msgf("Could not parse raw request: %s\n", err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
if parsedReq.URL.Scheme != "http" && parsedReq.URL.Scheme != "https" {
|
||
|
|
gologger.Warning().Msgf("Invalid scheme: %s\n", parsedReq.URL.Scheme)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
// Check filenames and don't allow non-interesting files
|
||
|
|
extension := path.Base(parsedReq.URL.Path)
|
||
|
|
if extension != "/" && extension != "" && scope.IsUninterestingPath(extension) {
|
||
|
|
gologger.Warning().Msgf("Uninteresting path: %s\n", parsedReq.URL.Path)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
inScope, err := s.scopeManager.Validate(parsedReq.URL.URL)
|
||
|
|
if err != nil {
|
||
|
|
gologger.Warning().Msgf("Could not validate scope: %s\n", err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
if !inScope {
|
||
|
|
gologger.Warning().Msgf("Request is out of scope: %s %s\n", parsedReq.Request.Method, parsedReq.URL.String())
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
if s.deduplicator.isDuplicate(parsedReq) {
|
||
|
|
gologger.Warning().Msgf("Duplicate request detected: %s %s\n", parsedReq.Request.Method, parsedReq.URL.String())
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
gologger.Verbose().Msgf("Fuzzing request: %s %s\n", parsedReq.Request.Method, parsedReq.URL.String())
|
||
|
|
|
||
|
|
s.endpointsBeingTested.Add(1)
|
||
|
|
defer s.endpointsBeingTested.Add(-1)
|
||
|
|
|
||
|
|
// Fuzz the request finally
|
||
|
|
err = s.nucleiExecutor.ExecuteScan(req)
|
||
|
|
if err != nil {
|
||
|
|
gologger.Warning().Msgf("Could not run nuclei: %s\n", err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
}
|