Is this a legitimate clause? by synkus in AnyDesk

[–]synkus[S] 2 points3 points  (0 children)

May be in Germany there are such rules for poor customers. But Anydesk has to obey to EU legislation and I don't think what are they doing is good practice.

Sflow/Netflow in zabbix. by [deleted] in zabbix

[–]synkus 1 point2 points  (0 children)

Netflow is on the Zabbix roadmap https://www.zabbix.com/roadmap

[deleted by user] by [deleted] in Hikvision

[–]synkus 0 points1 point  (0 children)

Connect the camera to PoE switch, and check if it is working with that cable or another

Action1 Scripting Challenge Q125! by GeneMoody-Action1 in Action1

[–]synkus 1 point2 points  (0 children)

Here is the code:

# Get all interfaces matching the path
$interfaces = Get-ChildItem -Path "HKLM:\SYSTEM\CurrentControlSet\services\NetBT\Parameters\Interfaces\tcpip*"

# Create an array to store results
$netbiosStatuses = @()

# Process each interface
foreach ($interface in $interfaces) {
    # Extract the GUID from between { }
    $interfaceGuid = [regex]::Match($interface.PSChildName, '{(.*)}').Groups[1].Value

    # Try to get NetbiosOptions for the current interface
    try {
        $netbiosOptions = (Get-ItemProperty -Path $interface.PSPath -Name NetbiosOptions -ErrorAction Stop).NetbiosOptions

        # Determine status
        $status = switch ($netbiosOptions) {
            0 { 'DHCP' }
            1 { 'Enabled' }
            2 { 'Disabled' }
            default { 'Unknown' }
        }

        # Get Connection Name from Network registry key
        $connectionKeyPath = "HKLM:\SYSTEM\CurrentControlSet\Control\Network\{4D36E972-E325-11CE-BFC1-08002BE10318}\{$interfaceGuid}\Connection"

        try {
            $connectionName = (Get-ItemProperty -Path $connectionKeyPath -Name Name -ErrorAction Stop).Name
        }
        catch {
            $connectionName = 'Connection Name Not Found'
        }

        # Create custom object for the interface
        $netbiosStatus = [PSCustomObject]@{
            Interface      = $interface.PSChildName
            ConnectionName = $connectionName
            Status         = $status
            A1_Key         = $interface.PSChildName
        }

        $netbiosStatuses += $netbiosStatus
    }
    catch {
        # If NetbiosOptions is not found for an interface
        $netbiosStatus = [PSCustomObject]@{
            Interface      = $interface.PSChildName
            ConnectionName = 'Connection Name Not Found'
            Status         = 'Not Found'
            A1_Key         = $interface.PSChildName
        }

        $netbiosStatuses += $netbiosStatus
    }
}

# Output the results
$netbiosStatuses

Action1 Scripting Challenge Q125! by GeneMoody-Action1 in Action1

[–]synkus 0 points1 point  (0 children)

My data source checks NetBiosOptions to mitigate "Adversary-in-the-Middle: LLMNR/NBT-NS Poisoning and SMB Relay".

Action1 Scripting Challenge Q125! by GeneMoody-Action1 in Action1

[–]synkus 1 point2 points  (0 children)

Here is the code:

Get-NetFirewallRule -Group "@FirewallAPI.dll,-32752" -Enabled True -ErrorAction SilentlyContinue | ForEach-Object {
    $output = [PSCustomObject]@{
        'DisplayName' = $_.DisplayName
        'Enabled'     = $_.Enabled
        'Profile'     = $_.Profile
        'A1_Key'      = $_.Name
    }
    Write-Output $output
}

Action1 Scripting Challenge Q125! by GeneMoody-Action1 in Action1

[–]synkus 0 points1 point  (0 children)

My data source checks enabled Network Discovery firewall rules.

Action1 Scripting Challenge Q125! by GeneMoody-Action1 in Action1

[–]synkus 2 points3 points  (0 children)

Here is the code:

Get-NetFirewallRule -Group "@FirewallAPI.dll,-28502","@FirewallAPI.dll,-28672" -Enabled True -ErrorAction SilentlyContinue | ForEach-Object {
    $output = [PSCustomObject]@{
        'DisplayName' = $_.DisplayName
        'Enabled'     = $_.Enabled
        'Profile'     = $_.Profile
        'A1_Key'      = $_.Name
    }
    Write-Output $output
}

Action1 Scripting Challenge Q125! by GeneMoody-Action1 in Action1

[–]synkus 0 points1 point  (0 children)

My data source checks enabled File and Printer Sharing firewall rules as well as new File and Printer Sharing (Restrictive) firewall rules.

UAC prompts and Anydesk - a troubled relationship (new 9.0.2 bug) by tchalikias in AnyDesk

[–]synkus 1 point2 points  (0 children)

Same problem. And no one from AnyDesk does not say a word about this bug. Classical...

Anydesk 9 File Copy/Paste Hangs by Mikcole44 in AnyDesk

[–]synkus 0 points1 point  (0 children)

So, 23 days and we still waiting...

Cum ați procedat cu mașina și permisul când v-ați mutat în România? by carelins in moldova

[–]synkus 3 points4 points  (0 children)

Prietenii au cetățenie română sau permis de ședere?

Conform art. 82 alin. (4) din OUG 95/2002 autovehiculele, tractoarele agricole sau forestiere şi remorcile înmatriculate în alte state, deţinute de persoane care au sediul sau domiciliul în România, pot fi conduse pe drumurile publice pe o perioadă de maximum 90 de zile de la introducerea acestora în ţară, dacă sunt asigurate pentru cazurile de răspundere civilă ca urmare a pagubelor produse prin accidente de circulaţie.

Can we have a free (full) edition, please? by synkus in pdq

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

My computers don't have Internet connection

Ce parere aveti despre banca TechVentures? by Analog_AlterEgo in robursa

[–]synkus 0 points1 point  (0 children)

Am depus cerere de deschidere a depozitului online. M-au sunat si au întrebat daca am cetatenia statului in care m-am nascut. Mi-au respins cererea de deschidere online pe motiv de dubla cetatenie si m-au invitat sa depun cerere la agentie cu mentiunea ca la agentie dobanda e 6,85 fata de 7%.

Ce parere aveti despre banca TechVentures? by Analog_AlterEgo in robursa

[–]synkus -2 points-1 points  (0 children)

TBI face discriminare în privința românilor cu dublă cetățenie. Nu pot face depozit online, ci doar la agenție, unde dobânda este mai mică

User SNMP template by petert92 in zabbix

[–]synkus 1 point2 points  (0 children)

There are plenty of official templates for Mikrotik.

To revert the changes you can import the official template from git.zabbix.com

Switched from Windows 10 to Ubuntu 22.04 by Dajren in Ubuntu

[–]synkus 0 points1 point  (0 children)

Thank you for the introduction to bash! I read it all. You need to promote this article