X-force, IBM Security utilitary library in python. Search and query all sources: threat_activities and groups, malware_analysis, industries
pip3 install XForce
Using you API_KEY make a basic authentication. See . After make a base64 code → Key + : + Password:
printf "d2f5f0f9-2995-42c6-b1dd-4c92252da129:06c41d5e-0604-4c7c-a599-300c367d2090" | base64 # ZDJmNWYwZjktMjk5NS00MmM2LWIxZGQtNGM5MjI1MmRhMTI5OjA2YzQxZDVlLTA2MDQtNGM3Yy1hNTk5LTMwMGMzNjdkMjA5MAo=
Using API_KEY, call functions. See for key storage
import XForce # Args: 1 - Term of search, 2 - API KEY # Threat activity search return in string XForce.threat_activities(Term, API_KEY) # Malware analysis search return in string XForce.malware_analysis(Term, API_KEY) # Threat groups search return in string XForce.threat_groups(Term, API_KEY) # Industries search return in string XForce.industries(Term, API_KEY) # All categories search return in list with dict XForce.industries(Term, API_KEY)
For see more details of consult, run:
from XForce import details # Args: 1 - GUID, 2 - API KEY # IMPORTANT: all GUID are correspondent to category # All function of details have: # url → with x-force exchange panel details.activity(Id, API_KEY) details.group(Id, API_KEY) details.malware(Id, API_KEY) details.industry(Id, API_KEY)
Artificial Intelligence (AI) is changing how industries operate, automating processes, and driving new innovations. However,…
Image credit:pexels.com If you think back to the early days of personal computing, you probably…
In an era defined by technological innovation, the way people handle and understand money has…
The online world becomes more visually driven with every passing year. Images spread across websites,…
General Working of a Web Application Firewall (WAF) A Web Application Firewall (WAF) acts as…
How to Send POST Requests Using curl in Linux If you work with APIs, servers,…