Skip to content

Commit

Permalink
add content len field
Browse files Browse the repository at this point in the history
  • Loading branch information
dogancanbakir committed Sep 18, 2024
1 parent 794e302 commit 604cf7d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
20 changes: 11 additions & 9 deletions pkg/engine/hybrid/crawl.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,16 +105,18 @@ func (c *Crawler) navigateRequest(s *common.CrawlSession, request *navigation.Re
bodyReader, _ := goquery.NewDocumentFromReader(bytes.NewReader(body))
technologies := c.Options.Wappalyzer.Fingerprint(headers, body)
resp := &navigation.Response{
Resp: httpresp,
Body: string(body),
Reader: bodyReader,
Depth: depth,
RootHostname: s.Hostname,
Technologies: mapsutil.GetKeys(technologies),
StatusCode: statusCode,
Headers: utils.FlattenHeaders(headers),
Raw: string(rawBytesResponse),
Resp: httpresp,
Body: string(body),
Reader: bodyReader,
Depth: depth,
RootHostname: s.Hostname,
Technologies: mapsutil.GetKeys(technologies),
StatusCode: statusCode,
Headers: utils.FlattenHeaders(headers),
Raw: string(rawBytesResponse),
ContentLength: httpresp.ContentLength,
}
response.ContentLength = resp.ContentLength

requestHeaders := make(map[string][]string)
for name, value := range e.Request.Headers {
Expand Down
1 change: 1 addition & 0 deletions pkg/engine/standard/crawl.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ func (c *Crawler) makeRequest(s *common.CrawlSession, request *navigation.Reques
}

resp.ContentLength = int64(len(data))
response.ContentLength = resp.ContentLength

rawResponseBytes, _ := httputil.DumpResponse(resp, true)
response.Raw = string(rawResponseBytes)
Expand Down
1 change: 1 addition & 0 deletions pkg/navigation/response.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ type Response struct {
StatusCode int `json:"status_code,omitempty"`
Headers Headers `json:"headers,omitempty"`
Body string `json:"body,omitempty"`
ContentLength int64 `json:"content_length,omitempty"`
RootHostname string `json:"-"`
Technologies []string `json:"technologies,omitempty"`
Raw string `json:"raw,omitempty"`
Expand Down

0 comments on commit 604cf7d

Please sign in to comment.