PDK - Phishing Detection Kit
View Phishing Detection Kit dashboard data.
Commands
pdk top-phishing-domains
View the platform-wide top phishing domains ranked by detection count.
| mysecutec pdk top-phishing-domains [flags]
|
Flags
| Flag |
Type |
Default |
Description |
--limit |
int |
10 |
Number of domains |
API
| GET /pdk/v1/dashboard/top-phishing-domains?limit=10
|
Query Parameters:
| Parameter |
Type |
Description |
limit |
int |
Number of domains to return |
Request Example
| mysecutec pdk top-phishing-domains --limit 20
|
| GET /pdk/v1/dashboard/top-phishing-domains?limit=20
Authorization: Bearer <token>
Accept: application/json
|
Response
| {
"data": {
"items": [
{ "phishing_domain": "login-secure-bank.example", "count": 320 },
{ "phishing_domain": "account-verify.example.net", "count": 215 },
{ "phishing_domain": "secure-update.example.org", "count": 180 }
]
}
}
|
Model: PDKTopPhishingDomains
| Field |
Type |
Description |
data.items |
[]PDKPhishingDomain |
Top phishing domains |
Model: PDKPhishingDomain
| Field |
Type |
Description |
phishing_domain |
string |
Phishing domain name |
count |
int |
Detection count |