Monthly Archives: July 2022

How to change the web server identification string of your OpenVPN AS Server on Ubuntu 22.04

The default web server identification string of your OpenVPN Server can be one way to identify it in automated vulnerability scanners such as nmap. To change it to an arbitrary value to reduce the chance of being identified by vulnerability … Continue reading

Posted in Linux | Tagged , | Leave a comment

How to enable/disable a network interface on Windows from command line

Assuming “Ethernet” is the name of the network connection you need to enable or disable: To enable: netsh interface set interface “Ethernet” enable To disable: netsh interface set interface “Ethernet” disable

Posted in Windows | Tagged , , | Leave a comment