Iogly – Real time application level intrusion detection system

I’m very pleased to announce the release of Iogly. Iogly is a real time application level intrusion detection system that I developed with my co-founder Florian Heidenreich. Iogly aims to offer a hosted intrusion detection solution tailored to specific web applications. In this initial release we only support Magento (1 & 2) but aim to release support for further platforms in the near fututre.

If you are interested please check it out at Iogly.com

Iogly – Real time application level intrusion detection system

Cross compile rsync for OpenELEC

In earlier releases of OpenELEC support for rsync was included. At some point it was moved to the unofficial addon repository. Unfortunately it looks like the unofficial addon repo has been abandoned. OpenElec 8 has been out for a year and there is still no unofficial addon support for it. I would assume that there won’t be any support for it in the future either.

I run OpenELEC on a RaspberryPi and really needed rsync support for it.

To get it working I cross compiled rsync for armv7 on my regular Linux machine and then copied the binary to my OpenElec box. I figured this might be handy for someone running into the same issue. This workflow is specific for ARM.

Continue reading “Cross compile rsync for OpenELEC”

Cross compile rsync for OpenELEC

Fixing Chrome 58 – NET::ERR_CERT_AUTHORITY_INVALID error

As of Chrome 58 SSL certificates must have a “Subject Alternative Name” (SAN) field, “Common Name” (CN) is not sufficient anymore. This breaks many self signed certificates on dev machines.

If you previously had a working self signed certificate and now you see the “NET::ERR_CERT_AUTHORITY_INVALID” error, these steps should fix the issue:

Continue reading “Fixing Chrome 58 – NET::ERR_CERT_AUTHORITY_INVALID error”

Fixing Chrome 58 – NET::ERR_CERT_AUTHORITY_INVALID error

gomainr – Interactive terminal tool to find available domains for various combinations of keywords and TLDs

I was trying to find available domain names for a project I’m planning to start. All the ones that came to mind were already taken. I wrote a simple script that would query the Namecheap API with various combinations of keywords and TLDs to see which combinations are still available. That script worked fairly well. Then I came across gocui which allows you to build ncurses style terminal GUI apps in Go. I decided to extend my simple script and build a full fledged GUI app.

gomainr demo

Continue reading “gomainr – Interactive terminal tool to find available domains for various combinations of keywords and TLDs”

gomainr – Interactive terminal tool to find available domains for various combinations of keywords and TLDs