Technology

The Technology endpoint allows you to view information about technology identified on your attack surface.

Get a summary of technology that was identified.

GET https://api.halosecurity.com/api/v1/technology/summary.json

{
    "request": {
        "target_count": 33,
        "sort": "1"
    },
    "pagination": {
        "total": 23,
        "start": 0,
        "limit": 100
    },
    "list": [
        {
            "count_instance": 7,
            "count_target": [],
            "technology": {
                "name": "Google Analytics",
                "id": 1
            }
        },
        {
            "count_instance": 10,
            "count_target": [],
            "technology": {
                "name": "Nginx",
                "id": 486
            }
        }
    ]
}

List technology that was identified along with versions and risk.

GET https://api.halosecurity.com/api/v1/technology/list.json

{
    "request": {
        "target_count": 33,
        "sort": "1"
    },
    "pagination": {
        "total": 60,
        "start": 0,
        "limit": 100
    },
    "list": [
        {
            "risk": 2,
            "technology": {
                "name": "OpenSSH",
                "id": 21
            },
            "detail": "22/tcp",
            "source": "Firewall",
            "risk_reason": "Version Vulnerable",
            "version": "7.4",
            "target": {
                "name": "",
                "host": "example.com",
                "id": 12345
            }
        },
        {
            "risk": 2,
            "technology": {
                "name": "Nginx",
                "id": 486
            },
            "detail": "80/tcp",
            "source": "Firewall",
            "risk_reason": "Version Vulnerable",
            "version": "1.15.8",
            "target": {
                "name": "",
                "host": "example.com",
                "id": 12345
            }
        }
    ]
}

Get information about a specific technology that was found.

GET https://api.halosecurity.com/api/v1/technology/get.json

Query Parameters

NameTypeDescription

id*

Integer

{
    "request": {
        "target_count": 33,
        "sort": "1"
    },
    "technology": {
        "name": "Nginx",
        "id": 486,
        "type": "Firewall",
        "category": "Web",
        "vendor_url": "https://nginx.org"
    }
}

Last updated