mirror of https://github.com/CIRCL/PyCIRCLean
Move should_copy back to edge of call graph
parent
538f7acc04
commit
51bfaa1ff5
|
@ -201,18 +201,22 @@ class File(FileBase):
|
||||||
self.add_description('File is a symlink to {}'.format(symlink_path))
|
self.add_description('File is a symlink to {}'.format(symlink_path))
|
||||||
else:
|
else:
|
||||||
self.add_description('File is an inode (empty file)')
|
self.add_description('File is an inode (empty file)')
|
||||||
|
self.should_copy = False
|
||||||
|
|
||||||
def unknown(self):
|
def unknown(self):
|
||||||
"""Main type should never be unknown."""
|
"""Main type should never be unknown."""
|
||||||
self.add_description('Unknown mimetype')
|
self.add_description('Unknown mimetype')
|
||||||
|
self.should_copy = False
|
||||||
|
|
||||||
def example(self):
|
def example(self):
|
||||||
"""Used in examples, should never be returned by libmagic."""
|
"""Used in examples, should never be returned by libmagic."""
|
||||||
self.add_description('Example file')
|
self.add_description('Example file')
|
||||||
|
self.should_copy = False
|
||||||
|
|
||||||
def multipart(self):
|
def multipart(self):
|
||||||
"""Used in web apps, should never be returned by libmagic"""
|
"""Used in web apps, should never be returned by libmagic"""
|
||||||
self.add_description('Multipart file - usually found in web apps')
|
self.add_description('Multipart file - usually found in web apps')
|
||||||
|
self.should_copy = False
|
||||||
|
|
||||||
# ##### Treated as malicious, no reason to have it on a USB key ######
|
# ##### Treated as malicious, no reason to have it on a USB key ######
|
||||||
def message(self):
|
def message(self):
|
||||||
|
|
Loading…
Reference in New Issue