-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
1 parent
0c6f6d1
commit 95bed8c
Showing
1 changed file
with
30 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
id: akamai-bot-manager-detect | ||
|
||
info: | ||
name: Detect Akamai Bot Manager Protection | ||
author: Fazle Arefin | ||
severity: info | ||
description: Checks if the website is protected by Akamai Bot Manager | ||
reference: | ||
- https://www.akamai.com/legal/manage-cookie-preferences | ||
- https://techdocs.akamai.com/identity-cloud/docs/hosted-login-cookies-and-local-storage-1 | ||
metadata: | ||
max-request: 1 | ||
tags: akamai, bot, security, detection | ||
|
||
http: | ||
- method: GET | ||
path: | ||
- "{{BaseURL}}" | ||
headers: | ||
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:129.0) Gecko/20100101 Firefox/129.0 # legit user-agent to get around user-agent filtering | ||
matchers: | ||
- type: regex | ||
part: header | ||
regex: | ||
- 'Set-Cookie:\s*_abck=' | ||
- 'Set-Cookie:\s*bm_sv=' | ||
- 'Set-Cookie:\s*ak_bmsc=' | ||
- 'Set-Cookie:\s*bm_sz=' | ||
- 'Set-Cookie:\s*bm_mi=' | ||
condition: or |