Created
January 14, 2019 12:44
-
-
Save kanazux/48c31e7ae18b575513e0fb45e19511a1 to your computer and use it in GitHub Desktop.
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
[Console]::TreatControlCAsInput = $true | |
function Rotate-files | |
{ | |
Param ([int]$processNumber) | |
while ((Get-ChildItem -Recurse -Include capture_*.pcap -Path C:\lapi_logs\).Count -gt 5) | |
{ | |
(Get-ChildItem -Recurse -Include capture_*.pcap -Path C:\lapi_logs\ | Select-Object -First 1).Delete() | |
} | |
if (Test-Path -Path "C:\lapi_logs\capture$processNumber.pcap") | |
{ | |
$_date = date -Format ddMMyyhhmmss | |
move "C:\lapi_logs\capture$processNumber.pcap" "C:\lapi_logs\capture_$_date.pcap" | |
} | |
if ($processNumber -eq 0) { $newProcess = 1 } else { $newProcess = 0 } | |
Init-Process -logActive $newProcess | |
} | |
function Init-Process | |
{ | |
Param ([int]$logActive) | |
if ($logActive -eq 0) { $nextProcess = 1 } else { $nextProcess = 0 } | |
$command = "C:\Users\silvio.silva\WinDump.exe -s0 -U -w C:\lapi_logs\capture$nextProcess.pcap" | |
$scriptBlock = [scriptblock]::Create($command) | |
Start-Job -Name "Pcap$nextProcess" -ScriptBlock $scriptBlock | |
Stop-Job -Name "Pcap$logActive" -ea SilentlyContinue | |
Remove-Job -Name "Pcap$logActive" -ea SilentlyContinue | |
Start-Sleep -Milliseconds 2000 | |
while ((Get-Item -Path "C:\lapi_logs\capture$nextProcess.pcap").length / 1GB -lt 1) { Start-Sleep -Milliseconds 100 } | |
Rotate-Files -processNumber $logActive | |
} | |
Init-Process -logActive 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment