-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
from config import WINDUMP_BINARY_WINDOWS | ||
from contextlib import asynccontextmanager | ||
from typing import AsyncIterator, Optional, List | ||
from utils.connection import TargetOS, Connection | ||
from utils.process import Process | ||
|
||
PCAP_FILE_PATH = "/dump.pcap" | ||
|
||
|
||
class TcpDump: | ||
interface: str | ||
connection: Connection | ||
process: Process | ||
verbose: bool | ||
stdout: str | ||
stderr: str | ||
output_file: str | ||
|
||
def __init__( | ||
self, | ||
connection: Connection, | ||
interface: Optional[str], | ||
output_file: Optional[str], | ||
filters: List[str], | ||
verbose: bool = False, | ||
) -> None: | ||
self.connection = connection | ||
self.interface = interface or "any" | ||
self.output_file = output_file or PCAP_FILE_PATH | ||
self.process = self.connection.create_process( | ||
[ | ||
self.get_tcpdump_binary(connection.target_os), | ||
f"-i {self.interface}", | ||
f"-w {self.output_file}", | ||
] | ||
+ filters | ||
) | ||
self.verbose = verbose | ||
self.stdout = "" | ||
self.stderr = "" | ||
|
||
@staticmethod | ||
def get_tcpdump_binary(target_os: TargetOS) -> str: | ||
if target_os in [TargetOS.Linux, TargetOS.Mac]: | ||
return "tcpdump" | ||
|
||
if target_os == TargetOS.Windows: | ||
return WINDUMP_BINARY_WINDOWS | ||
|
||
raise ValueError(f"target_os not supported {target_os}") | ||
|
||
def get_stdout(self) -> str: | ||
return self.stdout | ||
|
||
def get_stderr(self) -> str: | ||
return self.stderr | ||
|
||
async def on_stdout(self, output: str) -> None: | ||
self.stdout += output | ||
if self.verbose: | ||
print(f"TCPDUMP: {output}") | ||
|
||
async def on_stderr(self, output: str) -> None: | ||
self.stderr += output | ||
if self.verbose: | ||
print(f"TCPDUMP ERROR: {output}") | ||
|
||
async def execute(self) -> None: | ||
try: | ||
await self.process.execute(self.on_stdout, self.on_stderr) | ||
except Exception as e: | ||
print(f"Error executing tcpdump: {e}") | ||
raise | ||
|
||
@asynccontextmanager | ||
async def run(self) -> AsyncIterator["TcpDump"]: | ||
async with self.process.run(self.on_stdout, self.on_stderr): | ||
yield self |