Elliot Chernofsky
Elliot Chernofsky
This seems fairly possible to do if we used this: https://docs.chocolatey.org/en-us/create/functions/get-packageparameters Note the part: `choco install --params "'/LICENSE:value;"`. We would use something like `run` instead, then inside of packages we...
Is this something that we could automate and do early during the installation process? It seems to just require running `WMIC USERACCOUNT WHERE Name='' SET PasswordExpires=FALSE`, but I could be...
Whoops. That is how you would do it in `Command Prompt`. It would be a little different if doing it from Powershell: `Set-LocalUser -Name "" -PasswordNeverExpires $true ` **Command Prompt**...
The current package selection interface in the GUI is starting to get more difficult to sift through as more packages get added. It would be nice to have drop down...
I'm planning to take a stab at improving the FlareVM GUI packages interface and sorting things into categories. My initial attempt has led me to realizing that we may need...
I can make that happen. 🙂 I personally don't use powershell too much outside of testing things here and there, but I do think there could be some use for...
@heap-s Definitely still being considered though it is unfortunately not on our high priority list at the moment. We do have a plan to work on improving the GUI interface,...
This sort of also applies to https://github.com/mandiant/flare-fakenet-ng/issues/172 After our discussion, it seems like a good route to take for this may be to do some research into which processes are...
After discussion, a good path to take for this may be to add a flag (or possibly flags) for `fakenet` to be run in a way that is sort of...
Cyberchef is not normally a console application, but due to how I would like to have `chrome` open the local `cyberchef` .html page (programmatically modifying Chrome config files is fairly...