Skip to content
View K3rn3l-P's full-sized avatar
  • iNet
  • 18:58 (UTC +02:00)

Block or report K3rn3l-P

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
K3rn3l-P/README.md

Kernel

Most of my repositories are private — they're backups and working notes for machines I actually run. What the work looks like:

  • Networks. pfSense and OPNsense edges, Catalyst from the serial console, Ubiquiti point-to-point radio links, UniFi gateways. VLAN segmentation with zone-based firewalling, policy routing to per-segment VPN egress, chained VPN relay with mid-tunnel IPS, 802.1X port profiles over RADIUS, scoped multicast reflection, split-horizon DNS behind a single reverse proxy, WAF and identity-aware access at the edge, DNS-01 certificates so internal hostnames carry real TLS.
  • Forks I keep alive. Heavy changes on upstream code, parked on their own branch and re-synced against upstream every release instead of left to drift: a C++ codebase running tens of thousands of lines ahead of upstream across dozens of files, each sync with its own pre-sync backup. The pinned Home Assistant integration below is the public sample of it.
  • Hardening after the fact. Per-IP rate limiting, brute-force protection, PBKDF2 and HMAC token auth with constant-time verification and a versioned hash scheme that migrates in place, HWID, structured audit logs, server-side integrity checks that survive a patched updater. Scheduled key rotation with payload re-encryption and session invalidation. And a privileged SQL CLR assembly moved out of a TRUSTWORTHY ON database into a signed, isolated one, reached only through wrappers that deny by default — migrated in stages on a live system, with rollback and a verification pass that tests the denials, not just the happy path.
  • Reverse engineering. Serial and Modbus device protocols, down to undocumented registers when the documented command silently fails, with strict CRC and frame-integrity handling. Radio and mobile APIs: band masks, carrier aggregation, cell identity decoding. Encrypted asset archives, packet crypto, anti-tamper and integrity checks, tooling injected into closed binaries, assembly hooks and memory injection — usually because the hardware is fine and the vendor's software isn't.
  • Machines I can rebuild. Root-less, package-manager-agnostic bootstrap for a clean Linux or Windows install. Idempotent installers with backup on overwrite, privilege separation between user-scope and system steps, pre-reboot verification of full-disk-encryption unlock. Unattended Windows VM provisioning.
  • Agentic coding, on rails. Refine → Plan → Act, model rotation per phase, my own overrides on top of upstream skills. And guardrails in code rather than in the prompt for an agent acting on a live server: tiered actions, deny-by-default allowlists with an independent second check, a file kill-switch, read-only credentials by default, and mandatory human approval for anything irreversible.
  • Languages. C++, C, Assembly, C#, Java, Python, JavaScript, TypeScript, PHP, Lua, Shell, PowerShell, TSQL, HLSL, QML, Liquid.

On stars, followers and the rest: antirez, news/171.

Pinned Loading

  1. sysadmin-field-notes sysadmin-field-notes Public

    Field notes and ready-to-use scripts for Proxmox VE, GPU passthrough and Linux/Windows administration — one self-contained folder per problem, each with its own README.

    Shell 1

  2. Chained VPN relay for a self-hosted ... Chained VPN relay for a self-hosted game server: per-hop least privilege, mid-point IPS
    1
    # Chained VPN relay for a self-hosted game server: per-hop least privilege, mid-point IPS
    2
    
                  
    3
    *Retired setup — none of the machines described here still exist. Written up from the original
    4
    OPNsense config export.*
    5
    
                  
  3. PSM_Cmd-SecureCommandChannel PSM_Cmd-SecureCommandChannel Public archive

    Hardens a legacy SQL CLR admin-command bridge: signed assembly instead of TRUSTWORTHY ON, isolated database, deny-by-default wrappers with audit, staged migration with rollback and negative-test ve…

    TSQL 1

  4. UltimateAntiCheat UltimateAntiCheat Public archive

    Archived fork adding client integrity attestation and server-side detection management to AlSch092/UltimateAnticheat (C++/C#, AGPL-3.0)

    C++

  5. anern-eco6200-eybond anern-eco6200-eybond Public

    Forked from Antoxa1081/home-assistant-dess-monitor-local

    Home Assistant integration for Anern ECO-6200 / SCI-EVO-6200 inverters via EyBond Wi-Fi Plug Pro-05 dongle (Reverse-TCP & Modbus).

    Python 1

  6. How I work with coding agents — note... How I work with coding agents — notes on spec-driven development with AI
    1
    # How I work with coding agents
    2
    
                  
    3
    A few notes on using AI for development. Nothing theoretical — this is what I've settled into
    4
    after using these tools daily on a large legacy C++ codebase.
    5