├── README.md ├── .gitmodules ├── Search-By-Date-Windows.ps1 └── batch-decompress-7zip.bat /README.md: -------------------------------------------------------------------------------- 1 | # crowdstriked 2 | Useful files when using Crowdstrike Real Time Response API 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "BulkStrike"] 2 | path = BulkStrike 3 | url = https://github.com/Silv3rHorn/BulkStrike.git 4 | -------------------------------------------------------------------------------- /Search-By-Date-Windows.ps1: -------------------------------------------------------------------------------- 1 | # Search files by write date on windows 2 | Get-ChildItem . | Where-Object {$_.LastWriteTime -gt '1/1/2019' -and $_.LastWriteTime -lt '1/12/2020'} | Select-Object FullName | Out-File -FilePath .\outfile.txt 3 | -------------------------------------------------------------------------------- /batch-decompress-7zip.bat: -------------------------------------------------------------------------------- 1 | @echo on 2 | set yourZipPassword=infected 3 | set yourFolderPath= 4 | 5 | for /R "%yourFolderPath%" %%I in ("*.7z") do ( 6 | "C:\Program Files\7-Zip\7z.exe" x -p%yourZipPassword% -y -o"%%~dpI%%~nI" "%%~fI" 7 | ) 8 | --------------------------------------------------------------------------------