top of page

API DOCUMENTATION

The Cyber45 API allows users to access Cyber45 data progamatically through HTTP queries and to obtain structured results via JavaScript Object Notation (JSON). This allows for integration with other products to enhance the analytical process and to employ the data as the user sees fit.

​

Creating an API Key

To create an API User, please refer to the API Access section to generate an API KEY against your Login Credentials.

 

If you are not able to create an API key using instructions provided in the API Access section above, then please contact cyber45.com@gmail.com to highlight the issue with Screenshot. We will get in touch with you shortly to troubleshoot and resolve the issue.

​

Using the API

You can query Cyber45 API with the YEAR and MONTH parameters to fetch the Indicators of Compromise (IOC) w,r,t Ransomwares and  Malwares that are listed in our Database.

 

E.g. You can connect to our API to fetch Indicators of Compromise (IOC) by Year = "2018" and Month = "March".

​

Each API response is formatted with a status. If the status is “Success”, each response includes a data field with the appropriate response type. If the status is “Failure,” an appropriate error message is provided as to why the request failed.

​

API Parameters

Fetch IoCs by Year and Month:

Base URL: https://www.cyber45.com/_functions/myAPIaccess/

API KEY: <Your API KEY generated from API Access Section>

Year: <Specify the Year - E.g. "2018">

Month: <Specify the Month - E.g. "March">

​

Please ensure to successfully Authenticate and generate an API Key before querying our Database.

​

A complete request should look like this:

https://www.cyber45.com/_functions/myAPIaccess/XXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXX-XXXXXXXXXXXXX/2018/March

​

Fetch IoCs by Year, Malware Type and IoC Type:

Base URL: https://www.cyber45.com/_functions/APIMalwareType/

API KEY: <Your API KEY generated from API Access Section>

Year: <Specify the Year - E.g. "2018">

Malware Type: <Specify the Malware Type - E.g. "Malware" OR "Ransomware">

IoC Sub-Category: <Available IoC Sub-Category - "URL"; "IPv4"; "Win_Registry"; "Domain"; "MD5"; "SHA-256"; "SHA-1"; "Sender's Address">

​

Please ensure to successfully Authenticate and generate an API Key before querying our Database.

​

A complete request should look like this:

https://www.cyber45.com/_functions/APIMalwareType/XXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXX-XXXXXXXXXXXXX/2020/Ransomware/IPv4

​

Please Note: Currently maximum possible results that can be fetched via this API access is set to 1000. In case you want more results or entire Database then please contact cyber45.com@gmail.com

​

​

bottom of page