| 17 | import { $ } from "bun"; |
| 18 | |
| 19 | interface MassScanOptions { |
| 20 | ports?: string; |
| 21 | rate?: number; |
| 22 | banners?: boolean; |
| 23 | excludeFile?: string; |
| 24 | includeFile?: string; |
| 25 | adapter?: string; |
| 26 | adapterIp?: string; |
| 27 | adapterMac?: string; |
| 28 | routerMac?: string; |
| 29 | outputFile?: string; |
| 30 | json?: boolean; |
| 31 | wait?: number; |
| 32 | retries?: number; |
| 33 | excludePorts?: string; |
| 34 | } |
| 35 | |
| 36 | interface MassScanResult { |
| 37 | ip: string; |
nothing calls this directly
no outgoing calls
no test coverage detected