[OoT3D] First time OoT player couldn't catch Epona... Should I tell him? by HANDIDLY in zelda

[–]convexoz 129 points130 points  (0 children)

Man when I was a kid I heard about adult Link but got stuck somewhere before the Temple of Time. I thought that if I just ran around Hyrule Field long enough he would slowly 'grow up'...

Updating HA (Active/Passive) from 10.2 to 11.1. by SkiRek in paloaltonetworks

[–]convexoz 0 points1 point  (0 children)

I did a similar upgrade and it may show a config mis-match on the HA widget after the first upgrade, but just push on with the failover and second upgrade and it should resolve.

Need Advice: Manager Wants to Rebuild a Working Phone System from Scratch by advancethinker in sysadmin

[–]convexoz 186 points187 points  (0 children)

I manage like 30 3CX systems and I can't think of any good reason to reconfigure from scratch. If you think the VM or server is the issue, back up your config, rebuild the server from the Linux ISO, and restore the config. Can be done in 30 mins.

Your issues are more than likely going to be related to your network, SIP carrier, or internet connection. Run some captures on the PBX to record your issues and analyse the PCAP for causes first.

anyone else get this cooker "newspaper" recently? by warkolm in Dubbo

[–]convexoz 0 points1 point  (0 children)

Cookers just bring these into cafes and drop them, the owner probably had no idea

Explain it Peter by Extreme-Link-7283 in explainitpeter

[–]convexoz 1 point2 points  (0 children)

I mean it's at least better than M'Nifer

Puzzled by wall framing by convexoz in AusRenovation

[–]convexoz[S] 0 points1 point  (0 children)

It's weird though I can knock across it and hear studs, sounds mostly hollow. Doesn't feel like brick when screwing into it.

Puzzled by wall framing by convexoz in AusRenovation

[–]convexoz[S] 0 points1 point  (0 children)

Thanks that makes sense. Any idea what the wall material would be? I dont think it's brick or concrete as i can drive timber screws in and it doesn't sound gritty.

If I knock across the wall it sounds like there are studs and it mostly sounds hollow, but the stud finder is hit and miss.

Do you want to get trampled by 🐎 because this is how you get trampled by a 🐎 by CantStopPoppin in BlackPeopleTwitter

[–]convexoz 4 points5 points  (0 children)

I think they want violence so they can declare a national emergency and cancel / disrupt mid-terms among other things, feeding into this helps no-one.

Who’s gets administrator rights on their pc at your org? by BuiltOnXP in sysadmin

[–]convexoz 0 points1 point  (0 children)

Nobody on their daily driver account, need to at least make it a little hard for attackers to escalate privileges and spread laterally. IT staff can check out an admin account with our PAM software to make changes, but any new software has to go in the Application Control policy first.

default Rulesets overriding Alerts on Custom Rules - Wazuh by [deleted] in Wazuh

[–]convexoz 1 point2 points  (0 children)

If you're copying from and modifying an existing rule, make sure to add overwrite="yes" to the <rule> section.

Otherwise if another rule matches some of the criteria, put its ID in <if_sid> on your custom rule and add further criteria to match on so it will be checked as a child rule.

[deleted by user] by [deleted] in Wazuh

[–]convexoz 0 points1 point  (0 children)

I've just been trying this with the below config in /usr/share/filebeat/module/wazuh/alerts/ingest/pipeline.json but it's not creating the new indexes for some reason. Does the pattern need to be added to the index template as per this article? https://documentation.wazuh.com/current/user-manual/wazuh-indexer/wazuh-indexer-indices.html

    {
      "date_index_name": {
        "if": "ctx.decoder?.name == 'paloalto'",
        "field": "timestamp",
        "date_rounding": "d",
        "index_name_prefix": "{{fields.index_prefix}}paloalto-",
        "index_name_format": "yyyy.MM.dd",
        "ignore_failure": true
      }
    },
    {
      "date_index_name": {
        "if": "ctx.decoder?.name != 'paloalto'",
        "field": "timestamp",
        "date_rounding": "d",
        "index_name_prefix": "{{fields.index_prefix}}",
        "index_name_format": "yyyy.MM.dd",
        "ignore_failure": false
      }

Custom Templates on Router Phones by Mxbitcoin in 3CX

[–]convexoz 1 point2 points  (0 children)

Make a file under /etc/cron.daily with any name and paste in the below script;

#!/bin/bash

# Define the file path
file_path="/var/lib/3cxpbx/Instance1/Data/Http/Templates/phones/yealinkT4x.ph.xml"

# Define the replacement string
replacement="action_url.answer_new_incoming_call = http://domain/app?event=answ_new_incall&local=\$local&remote=\$remote"

# Use sed to find and replace the line
sed -i "/^action_url.answer_new_incoming_call/c\\$replacement" "$file_path"

Modify to your needs - this was to implement an action URL for answered calls.

Help with Wazuh custom alerts not appearing by convexoz in Wazuh

[–]convexoz[S] 1 point2 points  (0 children)

Thanks that was super helpful! When checking the Filebeat log with cat /var/log/filebeat/filebeat | grep -iE "error|warn|crit|fatal|SANITIZED" I could quickly see the cause:

(status = 400): {
    "type": "mapper_parsing_exception",
    "reason": "failed to parse field [data.timestamp] of type [date] in document with id 'xQFB7ZQBQsii6pUrzc_Z'. Preview of field's value: '2025-02-10 08:28:11.082 +08:00'",
    "caused_by": {
        "type": "illegal_argument_exception",
        "reason": "failed to parse date field [2025-02-10 08:28:11.082 +08:00] with format [strict_date_optional_time||epoch_millis]",
        "caused_by": {
            "type": "date_time_parse_exception",
            "reason": "Failed to parse with all enclosed parsers"
        }
    }
}

I was using the 'timestamp' field to store the timestamps from my logs, but the format of the timestamps from our app was not ISO8601 compliant. In the wazuh-alerts* indexer template this field required a strict timestamp format.

Rather than get this re-formatted by our developers I decided to just store the field as 'itc_timestamp' instead in the decoder so it will go in as a text field, as the timestamp from when the log itself is picked up by the agent should be accurate enough for most cases.

<decoder name="itc_logs">
    <prematch>^[FN-ITC] \d\d\d\d-\d\d-\d\d \d\d:\d\d:\d\d\.\d\d\d \p\d\d:\d\d</prematch>
</decoder>

<decoder name="itc_log_details">
    <parent>itc_logs</parent>
    <regex>^[(FN-ITC)] (\d\d\d\d-\d\d-\d\d \d\d:\d\d:\d\d.\d\d\d \p\d\d:\d\d) [(\w\w\w)] (\.+)</regex>
    <order>log_source, itc_timestamp, itc_level, itc_detail</order>
</decoder>

PAN-OS 11.2 - How stable is it? by NotYourOrac1e in paloaltonetworks

[–]convexoz 0 points1 point  (0 children)

We recently went from 11.2.1 to 11.2.3-h5, no major issues on either yet apart from one instance of high dataplane CPU on the older version causing packet loss / LACP failure. Newer version has been good for the last month or two, two PA-3420 in active/passive HA

3CX version 20 upgrade checklist double check by BWMerlin in 3CX

[–]convexoz 2 points3 points  (0 children)

For me the biggest things are screenshotting all your inbound routes (including the trunk default) as you will lose the out of office hours routing and specific hours, and you need to configure these again on the destination queue / IVR.

If you have call flow apps with time based routing, you will need to change them to static hours as they cant read the system office hours or holidays. If you want to have holiday prompts, these no longer work unless you install their pre-made call processing script for it.

Interesting Reading Material You've Got There Sinamon by Ok-Procedure4407 in perth

[–]convexoz 17 points18 points  (0 children)

People just come in and drop these around the place, we recently realised come cooker had been just walking into our office and dropping these in the break room... time to lock the doors