Hello Tengku,
You can exclude the alert entirely. Follow the below steps to achieve that.
1. Edit the file
/var/ossec/etc/rules/local_rules.xml2. Add the below rule.
<group name="audit,laravel,php,false_positive">
<rule id="100200" level="3">
<if_sid>80700</if_sid>
<field name="comm">php</field>
<field name="exe">/usr/bin/php8.2</field>
<match>artisan queue:work</match>
<description>
Laravel queue worker opening network socket (expected behavior)
</description>
<options>no_full_log</options>
</rule>
</group>
3. Save and restart your wazuh manager.
If you want to be a little more strict. you can use the below rule.
<group name="audit,laravel,php,false_positive">
<rule id="100200" level="3" noalert="1">
<if_sid>80700</if_sid>
<field name="comm">php</field>
<field name="exe">/usr/bin/php8.2</field>
<match>queue:work</match>
<description>
Laravel queue worker opening network socket (expected behavior)
</description>
<options>no_full_log</options>
</rule>
</group>
Let me know how it goes.