Skip to content

Commit

Permalink
feat: added missing MIME type x-pie-executable to software components…
Browse files Browse the repository at this point in the history
… whitelist (#1309)
  • Loading branch information
jstucke authored Dec 5, 2024
1 parent 151fa7e commit d70c612
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
from geoip2.errors import AddressNotFoundError
from maxminddb.errors import InvalidDatabaseError
from pydantic import BaseModel
from semver import Version

from analysis.plugin import AnalysisPluginV0
from analysis.plugin.compat import AnalysisBasePluginAdapterMixin
Expand Down Expand Up @@ -53,12 +54,13 @@ def __init__(self):
metadata=self.MetaData(
name='ip_and_uri_finder',
description='Search file for IP addresses and URIs based on regular expressions.',
version='1.0.0',
version=Version(1, 1, 0),
Schema=self.Schema,
mime_whitelist=[
'text/plain',
'application/octet-stream',
'application/x-executable',
'application/x-pie-executable',
'application/x-object',
'application/x-sharedlib',
'application/x-dosexec',
Expand Down

0 comments on commit d70c612

Please sign in to comment.