SSH Client improvements

SSH Client improvements

This article is going to concentrate several SSH client related topics and optimisations I have implemented. Amongst are: SSH client modular configuration Initially, the configuration for SSH client should be present (per-user) in the user’s home directory, under .ssh/config. I believe that this configuration file is not modular enough, and when you want to add/edit/remove…

Oracle Linux 8 RPM installation broken
|

Oracle Linux 8 RPM installation broken

I got the following error message when attempting to upgrade RPM packages: Oracle Linux 8 introduced a bug with a package called rpm-plugin-selinux (details: rpm-plugin-selinux-4.14.3-28.0.1.el8_9) which prevents RPM packages from being installed correctly, either by dnf/yum or manually. The solution, as shown in this Oracle community forum is to downgrade the package rpm-plugin-selinux like that:…

Cisco AnyConnect on Linux solution to “Authentication failure due to problem verifying server certificate” error message

Cisco AnyConnect on Linux solution to “Authentication failure due to problem verifying server certificate” error message

This is a very technical and a limited solution to Cisco AnyConnect issue with unknown certificate on Linux (Ubuntu 22.04). AnyConnect version is 4.10. I hope this post will help others with a similar problem. The issue is around SAML authentication (an embedded web browser attempting to complete the authentication process), and its failure to…

Allow Postfix to call custom scripts by using mail aliases
| |

Allow Postfix to call custom scripts by using mail aliases

Using custom mail aliases to run scripts is an existing practice. However, on modern Linux distributions it is blocked as a security risk. Following Postfix common guidelines do not allow for it to run the scripts. It reports the script as called, however – it does actually nothing. This has been verified on Oracle Linux…

WordPress Multi-Site on Docker – How to Add Apache mod_headers to Solve CORS Issues and php File Size Limit
|

WordPress Multi-Site on Docker – How to Add Apache mod_headers to Solve CORS Issues and php File Size Limit

I’ve been using a WordPress Docker for some time now. My Docker is invoked through the docker-compose toolset, and it generally functions well. However, at times, specific configurations are needed. For instance, when adjusting the PHP file size limitation or adding mod_headers to address CORS issues on WordPress. The key is to override the Docker…