Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Palo Alto WildFire analyzer #1094

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions analyzers/PaloAltoWildFire/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM python:3.10-alpine
WORKDIR /worker
COPY requirements.txt PaloAltoWildFire/
RUN pip3 install --no-cache-dir -r PaloAltoWildFire/requirements.txt
COPY . PaloAltoWildFire
ENTRYPOINT ["python3", "PaloAltoWildFire/wildfire.py"]
58 changes: 58 additions & 0 deletions analyzers/PaloAltoWildFire/PaloAltoWildFire.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"name": "PaloAltoWildFire",
"version": "1.0",
"author": "Ignacio Rodriguez Paez, Joe Lazaro",
"url": "https://github.com/TheHive-Project/Cortex-Analyzers",
"license": "AGPL-V3",
"description": "Run Palo Alto WildFire analysis on a file, hash, or URL",
"dataTypeList": [
"file",
"url",
"hash"
],
"command": "PaloAltoWildFire/wildfire.py",
"baseConfig": "PaloAltoWildFire",
"registration_required": true,
"subscription_required": true,
"free_subscription": false,
"service_homepage": "https://www.paloaltonetworks.com/network-security/wildfire",
"service_logo": {
"path": "assets/palo_alto_logo.png",
"caption": "logo"
},
"screenshots": [
{
"path": "assets/wildfire_file.png",
"caption": "WildFire file analysis long report sample"
},
{
"path": "assets/wildfire_url.png",
"caption": "WildFire URL analysis long report sample"
}
],
"configurationItems": [
{
"name": "api_host",
"description": "You can send requests to the WildFire global cloud (U.S., default option) or to the WildFire regional clouds that Palo Alto Networks owns and maintains. See the WildFire Public Cloud documentation for a list of valid servers.",
"type": "string",
"multi": false,
"required": true,
"defaultValue": "wildfire.paloaltonetworks.com"
},
{
"name": "key",
"description": "API key for WildFire",
"type": "string",
"multi": false,
"required": true
},
{
"name": "polling_interval",
"description": "Define time interval between two requests attempts for the report",
"type": "number",
"multi": false,
"required": false,
"defaultValue": 60
}
]
}
11 changes: 11 additions & 0 deletions analyzers/PaloAltoWildFire/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
WildFire® is the industry's largest, most integrated cloud malware protection engine that utilizes patented machine learning models for real-time detection of previously unseen, targeted malware and advanced persistent threats, keeping your organization protected.

When you submit observables to WildFire, they are analyzed in a sandboxed environment using multiple techniques:
* Dynamic analysis observes the files as they execute
* Machine learning extracts unique feathres form each file
* Static analysis provides instant identification of malware variants
* Uses a custom hypervisor to prevent malware evasion techniques

This analyzer supports "file", "url", and "hash" observables to be submitted to WildFire and produces a nicely formatted report in TheHive with all the pertinent information.

Product website: https://www.paloaltonetworks.com/network-security/wildfire
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions analyzers/PaloAltoWildFire/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
cortexutils
requests
xmltodict
Loading