mirror of https://github.com/CIRCL/PyCIRCLean
Remove calls to make_binary and make_unknown
parent
41abe7e5d6
commit
7363a16318
|
@ -441,13 +441,11 @@ class File(FileBase):
|
||||||
|
|
||||||
def _unknown_app(self):
|
def _unknown_app(self):
|
||||||
"""Process an unknown file."""
|
"""Process an unknown file."""
|
||||||
self.add_description('Unknown application file')
|
self.make_dangerous('Unknown application file')
|
||||||
self.make_unknown()
|
|
||||||
|
|
||||||
def _binary_app(self):
|
def _binary_app(self):
|
||||||
"""Process an unknown binary file."""
|
"""Process an unknown binary file."""
|
||||||
self.add_description('Unknown binary file')
|
self.make_dangerous('Unknown binary file')
|
||||||
self.make_binary()
|
|
||||||
|
|
||||||
#######################
|
#######################
|
||||||
# Metadata extractors
|
# Metadata extractors
|
||||||
|
|
Loading…
Reference in New Issue