[Solved] a simple object you interact with regularly and express that object…

a simple object you interact with regularly and express that object in both XML and JSON. For example, if you picked a car, you could make a simple object in both XML and JSON like this:

<car>

<color>Red</color>

<doors>4</doors>

<make>Ford</make>

<model>F-150</model>

<interior>

<interior-color>gray</interior-color>

<stereo>Yes</stereo>

</interior>

</car>

{

“car” : {

“color”: “Red”,

“doors”: “4”,

“make”: “Ford”,

“model”: “F-150”,

“interior” : {

“interior-color”: “gray”,

“stereo”: “Yes”

}

}

}

 

Next, find a free or paid API service that could be useful for enriching or supplementing data generated by your security tools. These services include:

  • AlientVault/AT&T Open Threat Exchange
  • MaxMind GeoIP Lookups
  • UrlScan
  • Certly
  • Anomali Limo Taxii
  • HailATaxii

Read through their API documentation and see the following questions:

  1. What type of API is this (SOAP, REST, TAXII)?
  2. What type of data does it return (XML, JSON, STIX)?
  3. Are there any quotas?
  4. What kinds of integrations do you think would make this useful?

Read more here: Source link