Set of Maltego transforms to inferface with a MISP Threat Sharing instance, and also to explore the whole MITRE ATT&CK dataset.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

44 lines
813 B

  1. ---
  2. apiVersion: apps/v1
  3. kind: Deployment
  4. metadata:
  5. name: misp-maltego
  6. spec:
  7. selector:
  8. matchLabels:
  9. app: misp-maltego
  10. replicas: 1
  11. template:
  12. metadata:
  13. labels:
  14. app: misp-maltego
  15. spec:
  16. containers:
  17. - name: misp-maltego
  18. image: cvandeplas/misp-maltego
  19. imagePullPolicy: Always
  20. ports:
  21. - name: listen-port
  22. containerPort: 8080
  23. resources:
  24. requests:
  25. cpu: 10m
  26. memory: 4Gi
  27. limits:
  28. cpu: 1
  29. memory: 4Gi
  30. ---
  31. apiVersion: v1
  32. kind: Service
  33. metadata:
  34. name: misp-maltego
  35. annotations:
  36. dev.okteto.com/auto-ingress: "true"
  37. spec:
  38. type: ClusterIP
  39. ports:
  40. - name: "misp-maltego"
  41. port: 8080
  42. selector:
  43. app: misp-maltego