Enable AVX2 on a Virtual Machine

We had a request to enable AVX2 on a virtual machine. AVX2 are virtualisation extensions, essentially its providing processor instructions through from the physical CPU that are for optimizing virtualisation. In simple terms allow a virtual machine to be able to run virtualised workloads. You would need to enable this setting if you wanted to … Read more

Ping Scan a Subnet – Simple

If you need to perform a Ping scan of a subnet, you can use the following command, its quick and dirty approach, although its not really that quick when it comes to actually running. The below will scan the subnet 192.168.1.0/24, from 192.168.1.1 to 192.168.1.254. If you want to speed things up a bit, you … Read more

Ideas for Meeting Etiquette

Time spent in meetings is time spent not working on tasks. Meetings however are essential, but also must be structured and conducted in a way to ensure they are not wasting valuable time. A way of ensuring this is a robust “meeting etiquette”, i.e. rules of engagement to ensure that your time is not unduly … Read more

SSH – Show Supported (Encryption) Algorithms

If you want to verify what your SSH server is providing to clients as options of supported algorithms you can use the following command: It makes use of an NMAP script “ssh2-enum-algos.nse” to enumerate the list of algorithms that the SSH server supports. Useful if you are having issues with clients connecting using supported methods, … Read more