Enterprise Vulnerabilities
From DHS/US-CERT's National Vulnerability Database
CVE-2023-33196PUBLISHED: 2023-05-26Craft is a CMS for creating custom digital experiences. Cross site scripting (XSS) can be triggered by review volumes. This issue has been fixed in version 4.4.7.
CVE-2023-33185PUBLISHED: 2023-05-26
Django-SES is a drop-in mail backend for Django. The django_ses library implements a mail backend for Django using AWS Simple Email Service. The library exports the `SESEventWebhookView class` intended to receive signed requests from AWS to handle email bounces, subscriptions, etc. These requests ar...
CVE-2023-33187PUBLISHED: 2023-05-26
Highlight is an open source, full-stack monitoring platform. Highlight may record passwords on customer deployments when a password html input is switched to `type="text"` via a javascript "Show Password" button. This differs from the expected behavior which always obfuscates `ty...
CVE-2023-33194PUBLISHED: 2023-05-26
Craft is a CMS for creating custom digital experiences on the web.The platform does not filter input and encode output in Quick Post validation error message, which can deliver an XSS payload. Old CVE fixed the XSS in label HTML but didn’t fix it when clicking save. This issue was...
CVE-2023-2879PUBLISHED: 2023-05-26GDSDB infinite loop in Wireshark 4.0.0 to 4.0.5 and 3.6.0 to 3.6.13 allows denial of service via packet injection or crafted capture file
User Rank: Ninja
6/25/2019 | 10:53:56 AM
Write-Host " "
Write-Host "Block Triton ICS Port 39929"
Write-Host "-------------------------------"
$Name = "Triton-ICS-Attack-Port-39929"
$Triton = (Get-NetFirewallRule -DisplayName $Name)
$TPort = (Get-NetFirewallrule -DisplayName $Name | Get-NetFirewallPortFilter).LocalPort
if ( ( ($Triton).DisplayName -eq $Name) -And ($TPort -eq 39929) ) {
Write-Host $Name "exists - ok"
} else {
New-Netfirewallrule -Action Block -Enabled True -Direction Inbound -LocalPort 39929 -RemoteAddress Localsubnet -Name $Name -Profile Any -Protocol TCP -DisplayName $Name -RemotePort Any -Description "Triton-ICS-Attack-Port-39929"
Get-NetFirewallRule -Name $Name
}
Antivirus Entry - Go to antivirus and program the software to look for "imain.bin, inject.bin and trilog.exe". Also, I recommend using Comodo HIDS or other software solutions that initiate system baselines. If the system identifies any changes, then the application would stop the file from executing if it was considered nefarious.
From a linux standpoint:
iptables -I INPUT 1 -p tcp -m multiport --dport 39929 -m conntrack --ctstate NEW,ESTABLISHED -j DROP (iptables FW that tracks and Drops the port)
or
ufw allow in proto tcp from 0.0.0.0/0 to 0.0.0.0 port 39929 comment "Triton Blocked Port" (UFW Firewall Entry)
Download chkrootkit and/or rkhunter on the Linux/Unix machines to help find this potential problem.
Todd S,
Enterprise Architect
https://itotsnetworks.com