hkelley

Results 72 comments of hkelley

Yes, it looks like Sharphound could either go to .NET 4.5 and use Console.IsInputRedirected or use the Console.WindowHeight + Console.WindowWidth hack shown at this URL. https://stackoverflow.com/questions/3453220/how-to-detect-if-console-in-stdin-has-been-redirected I built against 4.5...

This also seems to work (and allows you to leave the project as .NET 3.5) `if (0 != (Console.WindowHeight + Console.WindowWidth) && Console.KeyAvailable && Console.ReadKey(true).Key == ConsoleKey.Escape) `

This works for me on Windows, no special encoding required. ``` $headers = @{Authorization = "Bearer $thehiveKey"} $alertBody = $alert | ConvertTo-Json Invoke-RestMethod -Method Post -Uri $uri -ContentType 'application/json' -Headers...

I manually created a data folder and fido.db file under the application path. That seems to be what it's expecting. Unfortunately that still doesn't create a schema in it. Now...

When I delete the files myself, from the shell, either explicitly or by wildcard, the files are deleted. I updated logstash-input-file 4.1.11 to 4.1.14 but I get the same result...

- I am creating the files and running Logstash as the same user. This should eliminate any chance of a permission deficit. I confirmed that the user can delete the...

@JPvRiel 's script is very helpful. I found that a small (and ignorable) exception is thrown when the Configuration mode for the subscription is not Custom (mine is MinLatency) -...

Thank you. If the custom directory feature (a server setting?) is coming soon then I can keep doing my current stash/delete via CLI before using the MISP UI for the...