Skip to content

Commit

Permalink
0.4.35: Cookie Cachebuster Prefix, in case that it has similar name t…
Browse files Browse the repository at this point in the history
…o header
  • Loading branch information
Maximilian Hildebrand committed Aug 12, 2021
1 parent 758727d commit f32d7e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/recon.go
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ func cachebusterCookie(cache *CacheStruct) []error {
cache.CBisParameter = false
cache.CBName = Config.Website.Cookies[i].Name
addHitMissIndicatorMap("reflection")
addCachebusterMap(Config.Website.Cookies[i].Name)
addCachebusterMap("c:" + Config.Website.Cookies[i].Name)

msg := fmt.Sprintf("%s was successful (Cookie, reflection was used as indicator)\n", identifier)
Print(msg, Blue)
Expand Down
2 changes: 1 addition & 1 deletion web-cache-vulnerability-scanner.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ $Env:GOOS = "linux"; $Env:GOARCH = "amd64"; go build
$Env:GOOS = ""; $Env:GOARCH = ""; go build
*/

const version = "0.4.34"
const version = "0.4.35"

var (
currentDate string
Expand Down

0 comments on commit f32d7e0

Please sign in to comment.