-
Site Latency
Anyone else experiencing latency on API calls back to the database?
We're seeing 15ms+ response times and some modules take upwards of a minute to pull in data.Anyone else experiencing latency on API calls back to the database?
We're seeing 15ms+ response times and some modules take upwards of a minute to pull in data.
Started by:
MarcStone
in: General Discussions
- 3
- 4
-
MarcStone
-
Script to Update Devices Apt Repos
#!/bin/sh
# Backup the original sources.list
mv /etc/apt/sources.list /etc/apt/sources.list.bak
# Create a new sources.list file in the sources.list.d directory
touch /etc/apt/sources.list.d/sources.list
# Get the OS version
os_version=$(lsb_release -sr)
echo "OS version is $os_version"
# Populate t...#!/bin/sh
# Backup the original sources.list
mv /etc/apt/sources.list /etc/apt/sources.list.bak
# Create a new sources.list file in the sources.list.d directory
touch /etc/apt/sources.list.d/sources.list
# Get the OS version
os_version=$(lsb_release -sr)
echo "OS version is $os_version"
# Populate t...
Started by:
Community Manager
in: SanerScript
- 1
- 1
-
Community Manager
-
Patch repository creation for Amazon Linux
#!/bin/bash
# Exit script on any error
set -e
# Update the system and install necessary packages
sudo yum update -y
sudo yum install -y httpd createrepo yum-utils
# Start and enable Apache web server
sudo systemctl start httpd
sudo systemctl enable httpd
# Create directory for the repository
REP...#!/bin/bash
# Exit script on any error
set -e
# Update the system and install necessary packages
sudo yum update -y
sudo yum install -y httpd createrepo yum-utils
# Start and enable Apache web server
sudo systemctl start httpd
sudo systemctl enable httpd
# Create directory for the repository
REP...
Started by:
Community Manager
in: SanerScript
- 1
- 1
-
Community Manager
-
Do low-risk vulnerabilities hide in plain sight, waiting to strike?
Does Risk-Based Vulnerability Management Leave Low-Risk Vulnerabilities Exposed for Too Long?
What's your thought on this? Let's discussDoes Risk-Based Vulnerability Management Leave Low-Risk Vulnerabilities Exposed for Too Long?
What's your thought on this? Let's discuss
Started by:
Community Manager
in: Debate Central
- 1
- 1
-
Community Manager
-
Business Disruptions
How do you ensure patches won’t disrupt business operations?How do you ensure patches won’t disrupt business operations?
Started by:
Abhinav
in: Ask an Expert
- 2
- 2
-
Community Manager
-
Is Patch Prioritization Based on CVSS Scores Alone Misleading?
CVSS scores are widely recognized as the industry standard for assessing vulnerability risk. But is it enough to prioritize patching based solely on CVSS scores. Let's talk about it.CVSS scores are widely recognized as the industry standard for assessing vulnerability risk. But is it enough to prioritize patching based solely on CVSS scores. Let's talk about it.
Started by:
Bhuvan Srikanta
in: Debate Central
- 5
- 6
-
Srivatsa
-
Cyber Hygiene Score
Unstable Cyber Hygiene Score: We can discuss this topic along with other usersUnstable Cyber Hygiene Score: We can discuss this topic along with other users
Started by:
lingaraj
in: General Discussions
- 3
- 3
-
Preeti
-
SecPod Cyber Bulletin 33rd Issue
1. Trellix Enterprise Security Manager Flaw
A security flaw (CVE-2023-38545) in Trellix Enterprise Security Manager has been discovered, potentially exposing sensitive enterprise data.
CVSS Score: 9.8
2. IBM Security Verify Vulnerabilities
IBM’s Security Verify platform has been found with vario...1. Trellix Enterprise Security Manager Flaw
A security flaw (CVE-2023-38545) in Trellix Enterprise Security Manager has been discovered, potentially exposing sensitive enterprise data.
CVSS Score: 9.8
2. IBM Security Verify Vulnerabilities
IBM’s Security Verify platform has been found with vario...
Started by:
Bhuvan Srikanta
in: Cyber Bulletin
- 1
- 1
-
Bhuvan Srikanta
-
Easily Exploitable
Hi,
I need your help because, i not idea from Easily Exploitable and the porcent.
The calculation at the moment is not very good vrs my higieneHi,
I need your help because, i not idea from Easily Exploitable and the porcent.
The calculation at the moment is not very good vrs my higiene
Started by:
yoyi24
in: General Discussions
- 2
- 2
-
Community Manager
-
Integration with ticket systems
Does the service have any integration with some ticket systems?Does the service have any integration with some ticket systems?
Started by:
Samhith
in: Ask an Expert
- 3
- 4
-
Community Manager
-
Mac Updates
Having issues with Mac updates, OS and Adobe in general. Anyone else having issues? Adobe updates keep failing, Mac OS updates seem like they never update until I get on a computer and manually tell it to update or restart. Adobe just keep failing, I then have to manually open adobe go to Help, then...Having issues with Mac updates, OS and Adobe in general. Anyone else having issues? Adobe updates keep failing, Mac OS updates seem like they never update until I get on a computer and manually tell it to update or restart. Adobe just keep failing, I then have to manually open adobe go to Help, then...
Started by:
SixAxis
in: Ask an Expert
- 2
- 2
-
Community Manager
-
Macbook HostName
Best practice for Macbook hosts:
Scenarios: If your MacBook hostname is represented as an IP number other than a name, please ensure that you have set the Hostname, local Host Name, and ComputerName correctly.
You can use the below commands: You can run all three at a time
Note: Here I have taken ...Best practice for Macbook hosts:
Scenarios: If your MacBook hostname is represented as an IP number other than a name, please ensure that you have set the Hostname, local Host Name, and ComputerName correctly.
You can use the below commands: You can run all three at a time
Note: Here I have taken ...
Started by:
lingaraj
in: Ask an Expert
- 2
- 2
-
Community Manager
-
Patch repository creation for ubuntu 18,20,22 LTS
Ubuntu ClientSide
#!/bin/sh
log_file="/var/log/create_sources_list.log"
ip_address="192.168.2.50" # Replace with your desired IP address
protocol="https" # Replace with your desired protocol (http/https)
# Create a backup of the existing sources.list
mv /etc/apt/sources.list /etc/apt/sources.list...Ubuntu ClientSide
#!/bin/sh
log_file="/var/log/create_sources_list.log"
ip_address="192.168.2.50" # Replace with your desired IP address
protocol="https" # Replace with your desired protocol (http/https)
# Create a backup of the existing sources.list
mv /etc/apt/sources.list /etc/apt/sources.list...
Started by:
Community Manager
in: SanerScript
- 1
- 2
-
Community Manager
-
Patch repository creation for RHEL 8 and 9
RHEL 8 and 9 ClientSide
#!/bin/bash
# Specify the values
ip_address="192.168.2.50"
protocol="https"
rhel_version="8"
# Generate the repository configuration dynamically
repo_filename="/etc/yum.repos.d/rhel${rhel_version}.repo"
cat <<EOL > "$repo_filename"
[RepoBaseOS]
name = rhel-${rhel_...RHEL 8 and 9 ClientSide
#!/bin/bash
# Specify the values
ip_address="192.168.2.50"
protocol="https"
rhel_version="8"
# Generate the repository configuration dynamically
repo_filename="/etc/yum.repos.d/rhel${rhel_version}.repo"
cat <<EOL > "$repo_filename"
[RepoBaseOS]
name = rhel-${rhel_...
Started by:
Community Manager
in: SanerScript
- 1
- 3
-
Community Manager
-
SecPod Cyber Bulletin 32nd Issue
1. Windows Zero-Days and Firefox Issues
The RomCom group has been exploiting zero-day vulnerabilities (CVE-2024-9680 and CVE-2024-49039) in Windows and Firefox, emphasizing the need for continuous monitoring and timely updates.
CVSS Score: 9.8,8.8
2. Critical Flaw Detected in ProjectSend
A criti...1. Windows Zero-Days and Firefox Issues
The RomCom group has been exploiting zero-day vulnerabilities (CVE-2024-9680 and CVE-2024-49039) in Windows and Firefox, emphasizing the need for continuous monitoring and timely updates.
CVSS Score: 9.8,8.8
2. Critical Flaw Detected in ProjectSend
A criti...
Started by:
Bhuvan Srikanta
in: Cyber Bulletin
- 1
- 1
-
Bhuvan Srikanta