Too bad.
![]() |
https://www.time.com.my/omnimesh |
One thing I like Linux is about "command line", and the other is the terminal-based system monitoring tools.
Other the the standard "top" utility that helps to display al the running processes and gives some important information on the performance of the system.
Here are a list of "top" alternatives.
Just learn about VIM's visual mode today.
Visual mode can be useful for manipulate chunks of text. It has 3 modes: character, line and block.
Character Mode
Line Mode
Block Mode
Links:
Finally noPac exploit is confirmed and released. As mentioned in last month post, these 2 vulnerabilities (cve-2021-42278 and cve-2021-42287) effectively allow a regular domain user to take control of a domain controller. This is a serious concern as the exploit was confirmed as a low-effort exploit with critical impact.
Gaining domain privileges allows threat actors to gain control over a domain and use it as a starting point to deploy malware, including ransomware.
Immediate Actions:
Make sure all the domain controllers (DC) are patched and make no exception. The whole domain remains vulnerable even with one DC remain not patched successfully. The patch is available since Nov 2021.
Also do start with any detection and apply mitigation in my previous post.
Links:
Package managers may do the same general things, like installing managing, and uninstalling applications, but they don't do everything the same.
Common Linux package managers such as:
DNF uses 'libsolv' for dependency resolution with improved performance over YUM. DNF has fully documented API and well documented for creating new features. Most importantly, it uses less memory (to sync metadata from repositories), because it contains around 29K lines of code.
dnf | apt |
---|---|
Searching for applications | |
$ sudo dnf search zsh | $ sudo apt search ^zsh |
Finding an application's package | |
$ sudo dnf provides pgrep | $ sudo apt install apt-file |
Installing applications | |
$ sudo dnf install zsh $ sudo dnf group list -v $ sudo dnf group install design-suite $ sudo dnf install @design-suite |
$ sudo apt install zsh |
Upgrading applications | |
$ sudo dnf update | $ sudo apt update && apt upgrade |
Removing applications | |
$ sudo dnf remove zsh | $ sudo apt remove zsh $ sudo apt purge zsh |
Links: