mirror of
https://github.com/CyberSecurityUP/NeuroSploit.git
synced 2026-02-12 22:12:45 +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']
|