LogoLogo
DocsSupportDashboard
  • Introduction
    • Data Types
    • Target Filtering
    • Scan Selection
    • Pagination & Sorting
    • Permissions
    • Appendix
  • Authentication
  • Webhooks
  • Events
  • Appendix
    • Targets Filter
    • Date Match
    • IP Range
  • Endpoints
    • Discovery
    • Target
    • Scan
    • Issue
    • Tag
    • Port
    • DNS
    • HTTP
    • Whois
    • Technology
    • Website
    • Acknowledged
    • Event
    • Dark Web
    • Integration
    • PCI
    • Report
    • User
    • Account
    • Security
    • File
    • Work
Powered by GitBook

© 2024 Halo Security

On this page
  • Get a summary of technology that was identified.
  • List technology that was identified along with versions and risk.
  • Get information about a specific technology that was found.

Was this helpful?

  1. Endpoints

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

Name
Type
Description

id*

Integer

{
    "request": {
        "target_count": 33,
        "sort": "1"
    },
    "technology": {
        "name": "Nginx",
        "id": 486,
        "type": "Firewall",
        "category": "Web",
        "vendor_url": "https://nginx.org"
    }
}
{
    "code": 0,
    "message": "app not found"
}
{
    "code": 0,
    "message": "id required"
}
PreviousWhoisNextWebsite

Last updated 2 years ago

Was this helpful?