Coder Social home page Coder Social logo

syslog-sign's Introduction

syslog-sign

Open Source "Signed Syslog Messages" (id est: rfc5848 implementation) addon for syslog-ng.

This project aims to implement an rfc5848 compliant syslog-signer, to be used with (initially, at least) syslog-ng (open source version).

The idea is to have something like this in the syslog-ng.conf file:

destination d_program_syslog_sign {
program("/usr/local/sbin/syslog-sign.pl -f /usr/local/etc/syslog-sign.conf" flags("syslog-protocol") );
};

in order to properly generate all rfc5848 records.

Signature Blocks are already implemented, Certificate Blocks and Signature groups still missing. We have (optional) encryption for the output (this is outside the standard, and suboptimal)

Some (runtime configurable) deviations from the standards are present, as the previous optional output encryption layer.

Giovanni Faglioni < giova at faglioni dot it >

The code is under the GPLv2 or, at your option, any later version.

** INSTALL **

prerequisites (for ubuntu 14.04 LTS): apt-get install libcrypt-dsa-perl libcrypt-openssl-dsa-perl libtry-tiny-perl libpath-tiny-perl libfile-path-tiny-perl

copy syslog-sign.pl in /usr/local/sbin/syslog-sign.pl copy syslog-sign.conf in /usr/local/etc/syslog-sign.conf edit syslog-sign.conf to suit your needs. :) add

destination d_program_syslog_sign {
   program("/usr/local/sbin/syslog-sign.pl -f /usr/local/etc/syslog-sign.conf"
     flags("syslog-protocol")
   );
};

to your syslog-ng.conf file, and add the d_program_syslog_sign destination to at least one log {} section, for example:

log {    source(local);
   filter(f_auth_authpriv);
   destination(d_program_syslog_sign);
};

syslog-sign's People

Contributors

giova23 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.