Fading Coder

One Final Commit for the Last Sprint

Securing Apache Kafka with SASL-PLAIN Authentication and ACL Authorization

Core Security ConceptsSASL (Simple Authentication and Security Layer): Handles identity verification during client-to-server connections, ensuring credential data is handled securely.SSL/TLS: Encrypts the data transmitted over the network. Relying on SASL alone leaves the payload unencrypted after a...

Dispatching HTTP POST Requests from Oracle with Triggers and Network ACLs

Row-level database activity can drive outbonud HTTP calls by wiring a trigger to invoke a PL/SQL procedure that performs the request via UTL_HTTP. Network access must be permitted using ACLs, and character-set handling needs attention to prevent data corruption. Trigger to invoke an HTTP request CRE...