Skip to content

Instantly share code, notes, and snippets.

View barthez-kenwou's full-sized avatar
:atom:
Code is not just what I do; it’s how I bring ideas to life,commit by commit✨🔥

Barthez Kenwou barthez-kenwou

:atom:
Code is not just what I do; it’s how I bring ideas to life,commit by commit✨🔥
View GitHub Profile
@barthez-kenwou
barthez-kenwou / readme.md
Created June 19, 2026 15:11
TLS Security Analyzer

TLS Security Analyzer

Overview

Transport Layer Security (TLS) is the foundation of secure communication on the Internet.

Misconfigured TLS services can expose organizations to:

  • Man-in-the-Middle attacks
  • Weak encryption
@barthez-kenwou
barthez-kenwou / readme.md
Last active June 19, 2026 15:08
Git Secret Scanner

Git Secret Scanner

Overview

Accidentally committing secrets to Git repositories is one of the most common security mistakes in modern software development.

Leaked secrets can lead to:

  • Cloud account compromise
  • Data breaches
@barthez-kenwou
barthez-kenwou / alertmanager.yml
Created June 19, 2026 15:03
Docker Monitoring Stack with Prometheus and Grafana
route:
receiver: default
receivers:
- name: default
@barthez-kenwou
barthez-kenwou / readme.md
Created June 19, 2026 14:58
Enterprise SSH Hardening Script

Enterprise SSH Hardening Script

Overview

Secure Shell (SSH) is one of the most critical services exposed on Linux servers.

A poorly configured SSH server can lead to:

  • Brute-force attacks
  • Credential stuffing
@barthez-kenwou
barthez-kenwou / password-generator.sh
Created June 19, 2026 14:53
Enterprise Password Generator
#!/usr/bin/env bash
##########################################################
# Enterprise Password Generator
#
# Author: DevSecOps Community
#
# Features:
# - Cryptographically secure
# - Entropy calculation
@barthez-kenwou
barthez-kenwou / readme.md
Last active June 19, 2026 14:46
Universal Dependency Vulnerability Scanner

Universal Dependency Vulnerability Scanner

Overview

Modern applications rely heavily on third-party dependencies.

Unfortunately, vulnerable dependencies are one of the most common attack vectors exploited by attackers.

This script provides a unified way to scan multiple programming ecosystems for known vulnerabilities using industry-standard tools.

@barthez-kenwou
barthez-kenwou / linux_audit.sh
Created June 19, 2026 14:39
Linux Audit - Complete Server Security & Health Audit Script
#!/usr/bin/env bash
# =============================================================================
# linux_audit.sh — Complete Linux Server Security & Health Audit
# Version : 2.0.0
# Author : Security Audit Framework
# License : MIT
# =============================================================================
#
# USAGE:
# sudo bash linux_audit.sh [OPTIONS]
@barthez-kenwou
barthez-kenwou / Dockerfile
Created June 19, 2026 14:31
Secure Production-Ready Dockerfile for Node.js
########################################
# Stage 1: Build Stage
########################################
# Use a lightweight official Node.js image
FROM node:22-alpine AS builder
# Set working directory
WORKDIR /app