POST {{domain}}/api/v1/scan-url
Use this api to actively scan the targets and get scan result in response.
Body
PARAM
Key | Datatype | Required | Description |
HEADERS
Key | Datatype | Required | Description |
RESPONSES
status OK
{
"success": true,
"message": "The url has been analyzed. Find the report below.",
"body": {
"headers": [
{
"name": "Strict-Transport-Security",
"status": "valid",
"message": "This header is seems to be present and value also seem to be valid."
},
{
"name": "X-Frame-Options",
"status": "missing",
"message": "This header is missing."
},
{
"name": "X-XSS-Protection",
"status": "missing",
"message": "This header is missing."
},
{
"name": "X-Content-Type-Options",
"status": "valid",
"message": "This header is seems to be present and value also seem to be valid."
},
{
"name": "public-key-pins",
"status": "missing",
"message": "This header is missing."
},
{
"name": "Content-Security-Policy",
"status": "missing",
"message": "This header is missing."
},
{
"name": "Referrer-Policy",
"status": "missing",
"message": "This header is missing."
},
{
"name": "expect-ct",
"status": "missing",
"message": "This header is missing."
},
{
"name": "Content-Type",
"status": "valid",
"message": "This header is seems to be present and value also seem to be valid."
},
{
"name": "access-control-allow-origin",
"status": "missing",
"message": "This header is missing."
},
{
"name": "X-Powered-By",
"status": "missing",
"message": "This header is missing."
},
{
"name": "access-control-allow-credentials",
"status": "missing",
"message": "This header is missing."
},
{
"name": "Pragma",
"status": "missing",
"message": "This header is missing."
},
{
"name": "Cache-Control",
"status": "missing",
"message": "This header is missing."
},
{
"name": "permissions-policy",
"status": "missing",
"message": "This header is missing."
},
{
"name": "nel",
"status": "missing",
"message": "This header is missing."
},
{
"name": "Report-To",
"status": "valid",
"message": "This header is seems to be present and value also seem to be valid."
},
{
"name": "X-Permitted-Cross-Domain-Policies",
"status": "missing",
"message": "This header is missing."
},
{
"name": "Cross-Origin-Opener-Policy",
"status": "missing",
"message": "This header is missing."
}
],
"dns": {
"all_records": {
"NS": [
{
"name": "teentechies.in",
"ttl": "6407",
"type": "NS",
"value": "lina.ns.cloudflare.com"
},
{
"name": "teentechies.in",
"ttl": "6407",
"type": "NS",
"value": "newt.ns.cloudflare.com"
}
],
"SOA": [
{
Curl curl -X POST 'domain/api/v1/scan-url' -F '{"name"=>"target", "value"=>"http://testphp.vulnweb.com/", "datatype"=>"string"}=' -F '{"name"=>"sleep", "value"=>"0", "datatype"=>"number"}=' ENDPOINTS |