Author Archives: Eelco Ligtvoet

About Eelco Ligtvoet

Dutch nerd

Hardening your PI: SSHD protection

      0 Comments

Steps to take to protect an internet-facing Raspberry PI (or other Debian) from brute-force SSH logins from subnets Note: Fail2ban 0.10.2 on 2020/12/22 Install firewall ufw and log analyzer fail2ban: sudo apt update sudo apt install ufw fail2ban (PiOS Buster: the sshd jail is enabled by default via /etc/fail2ban/jail.d/defaults-debian.conf) Copy… Read more »

Powershell: Get an indented process tree

      0 Comments
Process Tree

In PowerShell, there is the Get-Process cmdlet. However, this does not return the ParentProcessId property, so it is unsuitable for displaying an indented process tree, which you, for instance, could send by email. Luckily, there is the Get-WMIObject cmdlet that can return the ParentProcessId. How to get a Process Tree… Read more »

Find text in files and report filenames

      0 Comments

The “find” command usually reports too much information, because find “some_text” *.* also reports names of the files that do not contain the text. A useful oneliner to have at hand is to start a cmd.exe window in the right folder, and enter: for %I in (*.*) do @(find /i… Read more »