11/16/11

SSH connection through putty gives Access Denied error

Solution for the "Access Denied" error message when connecting to a remote box through putty even though the remote machine accepts your login credentials & let's you in:

In Putty Configuration for that session:

Resolve auditd warning asking to specify arch type

This is to resolve auditd warning asking to specify an arch type for syscall events

Sample auditd warning message:

WARNING - 32/64 bit syscall mismatch in line 14, you should specify an arch

Sample audit.rules line in question:
-a entry,always -S umask

Solution: add "-F arch=64" - without the quotes-  before the -S for the line to read like this:

-a entry,always -F arch=b64 -S umask

Google Code's RE2 REGEX Lib Syntax


This page lists the regular expression syntax accepted by RE2.
It also lists syntax accepted by PCRE, PERL, and VIM.
Grayed out expressions are not supported by RE2.

Quick HTTP to HTTPS - Apache2

There are several methods for redirecting your Apache-based website visitors who might type your servers URL using the plain (non-secure) HT...