mirror of
https://github.com/CyberSecurityUP/NeuroSploit.git
synced 2026-03-01 07:13:23 +00:00
10 lines
244 B
Python
10 lines
244 B
Python
"""
|
|
Persistence Tools
|
|
Contains modules for maintaining access to compromised systems
|
|
"""
|
|
|
|
from .cron_persistence import CronPersistence
|
|
from .registry_persistence import RegistryPersistence
|
|
|
|
__all__ = ['CronPersistence', 'RegistryPersistence']
|