You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be super helpful to have a mocked data (preferably with some real security issues detected). We're building a GenAI Cyber project and we would be happy to integrate Flaco as a data source.
Thank you :)
The text was updated successfully, but these errors were encountered:
The event-generator allows you to generate suspicious events (actions) which will trigger Falco rules. You can collect the generated alerts and feed them into your project.
You can use
# See all the available actions
event-generator list --all
# Run the actions matching the regular expression [regexp]
event-generator run [regexp]
I think it would be useful for you also to take a look at --loop and --sleep options:
--loop to run actions in a loop --sleep to set the length of time to wait before running an action (default to 100ms)
If you want to generate custom actions triggering your own custom rules, you can add your own custom implementation or try the (still-in-development) declarative-testing branch.
# Run test(s) specified via a YAML description
event-generator declarative run ...
# Run test(s) specified via a YAML description and verify that they produce the expected outcomes
event-generator declarative test ...
These commands are similar to their counterpart event-generator run and event-generator test, but allows to write your own action using a YAML based syntax. Take a look at these PRs to see some examples of usage:
Add mocked outputs
It would be super helpful to have a mocked data (preferably with some real security issues detected). We're building a GenAI Cyber project and we would be happy to integrate Flaco as a data source.
Thank you :)
The text was updated successfully, but these errors were encountered: