mirror of
https://github.com/CyberSecurityUP/NeuroSploit.git
synced 2026-02-13 06:22:44 +00:00
10 lines
198 B
Python
10 lines
198 B
Python
"""
|
|
Lateral Movement Tools
|
|
Contains modules for moving laterally across networks
|
|
"""
|
|
|
|
from .smb_lateral import SMBLateral
|
|
from .ssh_lateral import SSHLateral
|
|
|
|
__all__ = ['SMBLateral', 'SSHLateral']
|