-
Notifications
You must be signed in to change notification settings - Fork 0
replace access logs with fifo, SEC reads the fifo and process custom rules for API calls, encrypted then signed transaction chain
License
jpegleg/badger-chainz
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
# badger-chainz See https://simple-evcorr.github.io/ replace access.log with a FIFO (named pipe of the same name), read the data off the FIFO, encrypt then signed transaction chain. A critical aspect is to ensure the FIFO is non-blocking, which the install and enforce scripts will set: exec 4<>$myfifo Important note about default badger-chainz and alternate configurations: With badger-chainz, the data is always stored encrypted but the transaction keys on the server are not with the default badger-chainz. This means that this transaction chain component does not provide much secrecy in terms of server side data storage, but it does provide a layer of client validation, data control (for purging individual sources, managing sources independently), and method for encrypted data distribution: all of the data for a specific customer or device can be sent to them encrypted in a way that they can decrypt. To solve for this, we'll layer up GPG/PGP on top of this. If you need to add data storage secrecy, edit then deploy the badger-chainz-secret-mode to /usr/local/sbin/badger-chainz The edit is to ensure the email address or identifier for the gpg public key is set in the script where the template has "PGPEMAIL". You will need to have a gpg/pgp public key imported into the user's keyring, and not have that private key anywhere on the server. This will mean that the admin will have to pull the encrypted chain down to his decryption device that has the gpg private key to decrypt the chain and do anything with it. Use this if top security is needed and when possible. Not using secret mode does not make it insecure, but certainly the default is more focused on identity, granularity, and validation. The third mode is not actually badger-chainz, but should be used if you don't need to create the transaction chain and you just need to encrypt the data. This mode is badger-weblog. The badger-weblog setup doesn't separate or validate anything, doesn't create the blockchain, but uses the FIFO for the access.log and just writes all of the log data encrypted to badger-weblog_access.log.$stamp.enc The install script does not expect you to use badger-chainz blockchain AND badger-weblog, one or the other. You can modify the scripts to run both if you really want to, but the design is to use badger-chainz-secret-mode if you want both together. chmod +x install ./install Or install your way (automated or otherwise) example: sed -i 's/TEMPLATEINSTANCENAME/myinstancename/g' badger-chainz sed -i 's/HEXCUSTPUBKEY/2d2d2d2d2d424547494e205055424c4943204b45592d2d2d2d2d0a4d485977454159484b6f5a497a6a3043415159464b3445454143494459674145336e467753542f485267576f4f7943443848353143304d47534a592b594b4a630a70616c5669754776466c65345036447672383473307056623065635630304e6c45714b496a77626d31624653464c74425453573442326e4a57767a724a6a6c430a517a4f754b6268747148767a566f7737653730554a4334546e376445576a68430a2d2d2d2d2d454e44205055424c4943204b45592d2d2d2d2d0a/g' chainz.cfg mkdir -p /opt/badger-chainz/workspace mkdir -p /opt/badger-chainz/etc cp chainz.cfg /opt/badger-chainz/etc/ chmod +x badger-chainz cp badger-chainz /usr/local/sbin/ chmod +x badger-enforce cp badger-enforce /usr/local/sbin cd /opt/badger-chainz/workspace openssl genrsa 4096 > secret-rsa.pem openssl ecparam -name secp384r1 -genkey -noout -out secp384r1.pem openssl ec -in secp384r1.pem -pubout -out secp384r1.pub cp secp384r1.pem chain.key cp secret-rsa.pem rsa.pem rm /var/log/nginx/access.log mkfifo /var/log/nginx/access.log exec 4<>/var/log/nginx/access.log chown www-data:root /var/log/nginx/access.log systemctl restart nginx grep badger-enforce /etc/crontab || echo "*/1 * * * * root /usr/local/sbin/badger-enforce >/dev/null 2>&1" >> /etc/crontab Contact carefuldata@protonmail.com if you would like help setting up badger-chainz or customized features developed for you. Enjoy!
About
replace access logs with fifo, SEC reads the fifo and process custom rules for API calls, encrypted then signed transaction chain
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published