Upload files to "TTPs"
This commit is contained in:
@ -1,24 +1,10 @@
|
||||
from Modules.Imports.ttp_imports import *
|
||||
from Modules.submenu import build_submenu
|
||||
|
||||
|
||||
def lin_ioc_submenu():
|
||||
"""
|
||||
Submenu for Linux Host Indicators.
|
||||
"""
|
||||
actions = {
|
||||
"1": {"description": "Basics", "function": linux_basics},
|
||||
"2": {"description": "Common Malware Names", "function": linux_common_malware_names},
|
||||
"3": {"description": "Common Malware Locations", "function": linux_common_malware_locations},
|
||||
"4": {"description": "Interesting Search Terms", "function": linux_interesting_search_terms},
|
||||
"5": {"description": "Locations of Persistence", "function": linux_locations_of_persistence},
|
||||
"6": {"description": "Types of Persistence", "function": linux_types_of_persistence},
|
||||
"7": {"description": "Advanced Persistence", "function": linux_advanced_persistence},
|
||||
"8": {"description": "Event IDs to Watch", "function": linux_event_ids_to_watch},
|
||||
"9": {"description": "Memory Acquisition", "function": linux_memory_acquisition},
|
||||
"10": {"description": "File System Artifacts", "function": linux_filesystem_artifacts},
|
||||
"11": {"description": "Analysis Resources", "function": linux_analysis_resources},
|
||||
"12": {"description": "All", "function": all_linux_iocs},
|
||||
}
|
||||
build_submenu("Linux Indicators of Compromise (IOCs)", actions)
|
||||
"""Linux Indicators of Compromise"""
|
||||
build_submenu("Linux Indicators of Compromise (IOCs)", module=globals())
|
||||
|
||||
### Functions for each submenu option
|
||||
|
||||
@ -169,20 +155,4 @@ def linux_analysis_resources():
|
||||
- Malware Analysis: Analyze suspicious files with tools like Cuckoo Sandbox.
|
||||
- Log Analysis: Parse logs using tools like Logstash or Elastic.
|
||||
"""
|
||||
print_info(title, content)
|
||||
|
||||
def all_linux_iocs():
|
||||
"""
|
||||
Displays all Linux IOC content sequentially.
|
||||
"""
|
||||
linux_basics()
|
||||
linux_common_malware_names()
|
||||
linux_common_malware_locations()
|
||||
linux_interesting_search_terms()
|
||||
linux_locations_of_persistence()
|
||||
linux_types_of_persistence()
|
||||
linux_advanced_persistence()
|
||||
linux_event_ids_to_watch()
|
||||
linux_memory_acquisition()
|
||||
linux_filesystem_artifacts()
|
||||
linux_analysis_resources()
|
||||
print_info(title, content)
|
Reference in New Issue
Block a user