소스 검색

minor cleanups

tags/v1.3.5
Christophe Vandeplas 1 년 전
부모
커밋
6a0a819aad
6개의 변경된 파일16개의 추가작업 그리고 5개의 파일을 삭제
  1. +1
    -0
      publish_to_pip.sh
  2. +2
    -2
      setup.py
  3. +0
    -2
      src/MISP_maltego/resources/etc/MISP_maltego.conf
  4. +1
    -1
      src/MISP_maltego/transforms/common/util.py
  5. +2
    -0
      src/MISP_maltego/transforms/eventtoattributes.py
  6. +10
    -0
      src/MISP_maltego/transforms/galaxytoevent.py

+ 1
- 0
publish_to_pip.sh 파일 보기

@@ -2,3 +2,4 @@
python3 setup.py sdist bdist_wheel
twine upload dist/*
rm -Rf build
rm -Rf dist

+ 2
- 2
setup.py 파일 보기

@@ -5,11 +5,11 @@ from setuptools import setup, find_packages
setup(
name='MISP_maltego',
author='Christophe Vandeplas',
version='1.3.2',
version='1.3.4',
author_email='christophe@vandeplas.com',
maintainer='Christophe Vandeplas',
url='https://github.com/MISP/MISP-maltego',
description='Maltego transform for interacting with a MISP Threat Sharing community.',
description='Maltego transform for interacting with a MISP Threat Sharing community and with MITRE ATT&CK.',
license='AGPLv3',
packages=find_packages('src'),
package_dir={'': 'src'},


+ 0
- 2
src/MISP_maltego/resources/etc/MISP_maltego.conf 파일 보기

@@ -6,5 +6,3 @@ misp_verify = True
misp_debug = False

[MISP_maltego.remote]

# TODO: put remote transform options here

+ 1
- 1
src/MISP_maltego/transforms/common/util.py 파일 보기

@@ -8,7 +8,7 @@ import os.path
import tempfile
import time

# FIXME from galaxy to MISP Event is confusing
# FIXME from galaxy 'to MISP Event' is confusing

# mapping_maltego_to_misp = {
# 'maltego.Hash': ['md5', 'sha1', 'sha256', 'sha224', 'sha384', 'sha512', 'sha512/224', 'sha512/256'],


+ 2
- 0
src/MISP_maltego/transforms/eventtoattributes.py 파일 보기

@@ -16,6 +16,8 @@ __maintainer__ = 'Christophe Vandeplas'
__email__ = 'christophe@vandeplas.com'
__status__ = 'Development'

# FIXME have a more human readable version of the MISP event value in the graph. change entity + event_to_entity + do_transform


class EventToTransform(Transform):
input_type = None


+ 10
- 0
src/MISP_maltego/transforms/galaxytoevent.py 파일 보기

@@ -16,6 +16,16 @@ __email__ = 'christophe@vandeplas.com'
__status__ = 'Development'


class GalaxyTo(Transform):
input_type = None

def __init__(self):
self.request = None
self.response = None
self.config = None
self.misp = None


# @EnableDebugWindow
class GalaxyToEvents(Transform):
"""Expands a Galaxy to multiple MISP Events."""


불러오는 중...
취소
저장