Dallas Moore

Results 11 comments of Dallas Moore

Ah - from the buildraw file, looks like brofish is another core Firewalla service. I checked the status of brofish, but it seems stuck: ``` pi@firewalla:~ $ sudo systemctl status...

@davidt99 I've encountered that error on a few samples I've attempted to analyze, so in that regard, yes, it is constant.

I'll throw my hat in the ring too - I cannot convert the dwarfdump from macOS 10.15.6 - I get the same error as @snoozesecurity

1. Did you enable PSRemoting on the target? Run 'Enable-PSRemoting -SkipNetworkProfileCheck -Force' just to make sure. 2. Try running with the -Credential switch. '.\kansa.ps1 -Target $env:COMPUTERNAME -Credential (Get-Credential) -ModulePath .\Modules...

Alright, a few other things... - Kansa works by establishing remote connections with New-PSSession. New-PSSession establishes connections with remote machines via WinRM, so, by specifying a target of localhost or...

Try setting your Trusted Hosts with this command: `winrm s winrm/config/client '@{TrustedHosts="*"}'` In my test environment, I have Trusted Hosts set as above and I can Kansa my local machine...

Investigate your WS-man service config... Run `Get-Item WSMan:\localhost\Shell\AllowRemoteShellAccess` - if the return value is False (or anything other than True), you'll need to configure your local group policy to allow...

Functionally speaking, yes. There’s a check to see if the user specified any event IDs. If so, the function will iterate through each specified log for the requested IDs. If...

I messed that up - there's some parameter parsing issues that I need to work through. I'll see if I can get that fixed here in the next few days.