October 7, 2014 · Security, Server · 2 comments

On September 24, 2014, a GNU Bash vulnerability, referred to as Shellshock or the "Bash Bug", was disclosed. In short, the vulnerability allows remote attackers to execute arbitrary code given certain conditions, by passing strings of code following environment variable assignments.
Continue reading →

September 29, 2014 · Monitoring · (No comments)

httpry is a tool, written in C, designed for displaying and logging HTTP traffic. It parses traffic, online and offline,in an easy to read format. Daemonization is also supported for long-term logging. Before I discovered httpry I was parsing HTTP traffic from pcaps with ngrep and lots of ugly sed and awk to make my results readable. Doing this wasn’t very pretty and tended to consume more time than I would have liked, however, with httpry none of the extra work is needed.
Continue reading →

September 19, 2014 · Server · 1 comment

We made an extremely simple and clear interface. Instead of adding more elements to work with, we prefer to remove as much as possible. The main goal was to improve the ergonomics of the control panel by reducing unnecessary movements and operations. It is all about using less, because less is more. We hope you will love it as we do.

Continue reading →

September 15, 2014 · Server · (No comments)

Apache Tomcat (or simply Tomcat, formerly also Jakarta Tomcat) is an open source web server and servlet container developed by the Apache Software Foundation (ASF). Tomcat implements the Java Servlet and the JavaServer Pages (JSP) specifications from Oracle, and provides a "pure Java" HTTP web server environment for Java code to run in. In the simplest config Tomcat runs in a single operating system process. The process runs a Java virtual machine (JVM). Every single HTTP request from a browser to Tomcat is processed in the Tomcat process in a separate thread.
Continue reading →

September 12, 2014 · Server · (No comments)

The Pound program is a reverse proxy, load balancer and HTTPS front-end for Web server(s). Pound was developed to enable distributing the load among several Web-servers and to allow for a convenient SSL wrapper for those Web servers that do not offer it natively. Pound is distributed under the GPL -- no warranty, it's free to use, copy and give away.
Continue reading →