コード例 #1
0
from snake.scale import FileType, scale

NAME = "office"
VERSION = "1.0"

AUTHOR = "Matt Watkins"
AUTHOR_EMAIL = "*****@*****.**"

DESCRIPTION = "perform analysis on office docs"

LICENSE = "https://github.com/countercept/snake-scales/blob/master/LICENSE"

URL = "https://github.com/countercept/snake-scales"

__scale__ = scale(
    name=NAME,
    description=DESCRIPTION,
    version=VERSION,
    author=AUTHOR,
    supports=[FileType.FILE],
)
コード例 #2
0
ファイル: __init__.py プロジェクト: huynhhuuhanh/snake-core
# pylint: disable=missing-docstring

from snake.config import constants
from snake.scale import scale

__scale__ = scale(
    name='url',
    description='a module to upload files to Snake from arbitrary URLs',
    version=constants.VERSION,
    author="Countercept",
    supports=[])
コード例 #3
0
ファイル: __init__.py プロジェクト: huynhhuuhanh/snake-core
# pylint: disable=missing-docstring

from snake.config import constants
from snake.scale import scale

__scale__ = scale(name='hashes',
                  description='a module to calculate hashes on files',
                  version=constants.VERSION,
                  author="Countercept",
                  supports=[])
コード例 #4
0
# pylint: disable=missing-docstring

from snake.config import constants
from snake.scale import scale, FileType

__scale__ = scale(name='strings',
                  description='a module to extract strings from files',
                  version=constants.VERSION,
                  author="Countercept",
                  supports=[FileType.FILE])