Wazuh VS alpine-pkg-glibc

Compare Wazuh vs alpine-pkg-glibc and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
Wazuh alpine-pkg-glibc
151 8
9,108 2,012
7.1% -
10.0 3.2
about 15 hours ago 6 months ago
C Shell
GNU General Public License v3.0 or later -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

Wazuh

Posts with mentions or reviews of Wazuh. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-07.
  • Exclude certain CIS (sca) rules from agents
    1 project | /r/Wazuh | 11 Dec 2023
    There is currently no feature for excluding specific SCA rules however this feature has been requested here and would be added to the roadmap for future releases.
  • Deployment issue
    1 project | /r/Wazuh | 11 Dec 2023
  • Greenbone
    1 project | /r/ITProTuesday | 8 Dec 2023
    I use Wazuh instead. Greenbone CE is severely limited and requires payment for anything beyond the very basic. Super simple installation more features.
  • Update vulnerability databases through proxy with authentication
    3 projects | /r/Wazuh | 7 Dec 2023
    Seems like something that should be documented somewhere more official than a random reddit post for sure. Added it to https://github.com/wazuh/wazuh/issues/1112 for good measure.
  • 💻 Introducing Wazuh 4.7.0.
    1 project | /r/Wazuh | 6 Dec 2023
    Hmm, I've really been wanting to try Wazuh but since all our endpoints (Win10/11) are running a German locale I've run into https://github.com/wazuh/wazuh/issues/16842 when checking the compliance checks (CIS benchmarks) on a test installation of 4.6.
  • Risks of hosting a website out of my house
    2 projects | /r/HomeNetworking | 6 Nov 2023
    Monitoring & Active Measures - Exporting firewall events to an external time-series database like I describe above is good to see who is touching your firewall or accessing your web site. Using an Intrusion Detection System / Intrusion Prevention System (IDS/IPS) such as open-source Suricata, which is a free package on pfSense, and deploying file system integrity monitoring, such as the open-source Wazuh on the exposed server are also good approaches to protecting yourself.
  • Ignore Vulnerability for specific CVE?
    1 project | /r/Wazuh | 23 Aug 2023
    We are actively working on enhancing the system to allow users to mark vulnerabilities as "not vulnerable" or hide them. You can track the progress of this enhancement on the following GitHub issue: (Enhancement - Mark Vulnerabilities as Not Vulnerable).
  • Account LockOuts
    1 project | /r/sysadmin | 12 Jul 2023
  • advice on building a vulnerability management dashboard
    1 project | /r/Wazuh | 9 Jul 2023
    Hello, thanks for using Wazuh, I will try to answer your questions: 1- I am going to check with the team in charge to see if there is a way. 2- Untriaged is a default value that is placed on vulnerabilities that do not have low, medium or high values https://github.com/wazuh/wazuh/issues/12675 3- As in the previous point, the providers of vulnerability lists have not provided the data.
  • Agents keep trying to re-register and event queues filling
    1 project | /r/Wazuh | 6 Jul 2023
    Agents getting frequently pending and disconnecting

alpine-pkg-glibc

Posts with mentions or reviews of alpine-pkg-glibc. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-11-16.
  • Wazuh Agent build on alpine linux
    10 projects | /r/Wazuh | 16 Nov 2022
    FROM alpine:latest RUN apk update && apk add make gcc automake autoconf libtool curl openssl openssl-dev libgcc cmake gnupg perl fakeroot brotli automake autoconf libtool gawk libsigsegv nodejs build-base python3 libc-dev gettext-dev zip procps --update alpine-sdk RUN apk --no-cache add ca-certificates wget RUN wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub RUN wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.35-r0/glibc-2.35-r0.apk RUN apk add --force-overwrite glibc-2.35-r0.apk RUN apk add linux-headers && ln -s /usr/include/linux/a.out.h /usr/include/a.out.h RUN wget https://github.com/wazuh/wazuh/archive/refs/heads/AlpineCompileForCommunity-4.3.10.zip RUN unzip AlpineCompileForCommunity-4.3.10.zip RUN cd wazuh-AlpineCompileForCommunity-4.3.10/src && make deps TARGET=agent EXTERNAL_SRC_ONLY=1 RUN addgroup -S wazuh && adduser -S wazuh RUN cd wazuh-AlpineCompileForCommunity-4.3.10/src && make TARGET=agent RUN cd wazuh-AlpineCompileForCommunity-4.3.10/ ./install.sh
  • Docker: Locales alpine 3.9 (glibc)
    1 project | dev.to | 9 Jun 2022
    FROM alpine:3.9 # Install language pack RUN apk --no-cache add ca-certificates wget && \ wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub && \ wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.25-r0/glibc-2.25-r0.apk && \ wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.25-r0/glibc-bin-2.25-r0.apk && \ wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.25-r0/glibc-i18n-2.25-r0.apk && \ apk add glibc-bin-2.25-r0.apk glibc-i18n-2.25-r0.apk glibc-2.25-r0.apk # Iterate through all locale and install it # Note that locale -a is not available in alpine linux, use `/usr/glibc-compat/bin/locale -a` instead COPY ./locale.md /locale.md RUN cat /locale.md | xargs -i /usr/glibc-compat/bin/localedef -i {} -f UTF-8 {}.UTF-8 # Set the lang, you can also specify it as as environment variable through docker-compose.yml ENV LANG=en_US.UTF-8 \ LANGUAGE=en_US.UTF-8
  • Is it possible to link against gnu libraries when compiling C/C++ code on alpine linux?
    1 project | /r/AlpineLinux | 2 Sep 2021
  • Alert transports with Docker (signal-cli)
    3 projects | /r/LibreNMS | 6 Jul 2021
    Installing glibc 2.33 (https://github.com/sgerrand/alpine-pkg-glibc) or libc6-compat doesn't seem to work on my side (I had hopes, maybe I did something wrong ? :/)
  • Docker isn't able to find my entrypoint.sh script in Apline container
    1 project | /r/docker | 30 Jun 2021

What are some alternatives?

When comparing Wazuh and alpine-pkg-glibc you can also consider the following projects:

security-onion - Security Onion 16.04 - Linux distro for threat hunting, enterprise security monitoring, and log management

code-server - Non-root Docker image running Debian and code-server.

Suricata - Suricata is a network Intrusion Detection System, Intrusion Prevention System and Network Security Monitoring engine developed by the OISF and the Suricata community.

signal-cli - signal-cli provides an unofficial commandline, JSON-RPC and dbus interface for the Signal messenger.

OSSEC - OSSEC is an Open Source Host-based Intrusion Detection System that performs log analysis, file integrity checking, policy monitoring, rootkit detection, real-time alerting and active response.

jekyll-docker - â›´ Docker images, and CI builders for Jekyll.

openvas-scanner - This repository contains the scanner component for Greenbone Community Edition.

aports - [MIRROR] Alpine packages build scripts

Snort - Snort++

qbittorrent-nox-static - A bash script which builds a fully static qbittorent-nox binary with current dependencies to use on any Linux OS

crowdsec - CrowdSec - the open-source and participative security solution offering crowdsourced protection against malicious IPs and access to the most advanced real-world CTI.

wazuh-packages - Wazuh - Tools for packages creation