Friday, January 1, 2021
Command line option to open the old System control panel app within Windows 10
Sysmon template files and resources
https://github.com/SwiftOnSecurity/sysmon-config
https://github.com/olafhartong/sysmon-modular
https://github.com/f8al/sysmon-config
https://github.com/randomuserid/Tylium/blob/master/Windows/sysmon-att%26ck.xml
https://github.com/wubbaroo/sysmon/blob/master/sysmon_config.xml
Below is a link to a guide for Sysmon.
https://github.com/trustedsec/SysmonCommunityGuide/releases
Below are the links to the deployment of Sysmon.
https://github.com/jokezone/Update-Sysmon
https://www.syspanda.com/index.php/2017/02/28/deploying-sysmon-through-gpo/
Wi-Fi QR Code generator
Diagrams.net
Restic
Restic is a backup application that supports Linux, Windows, and macOS. It supports several different destinations option such as SFTP.
https://github.com/restic/restic
https://restic.readthedocs.io/en/latest/
https://www.cloudsavvyit.com/9418/how-to-use-the-restic-backup-program-on-linux/
What2Log
What2Log is a web site that has information on logging parameters for different platforms.
http://what2log.com/
Wednesday, December 2, 2020
lshw command within Linux
The lshw command within Linux can return details concerning the hardware of a machine. The command below returns a list of all hardware.
sudo lshw -short
The command below shows just the entries for the disk class.
sudo lshw -short -C disk
More details can be obtained by excluding the -short parameter.
sudo lshw -C disk
https://www.cloudsavvyit.com/14863/how-to-use-lshw-in-linux-with-a-practical-example/
inxi for Linux
The inxi application is an utility for Linux to obtain system information. To install on a Debian-based system, use the command:
sudo apt install inxi
The command below will display CPU information.
inxi -C
The following command will return memory details.
sudo inxi -m
The command below will display a summary of various information.
sudo inxi -F
https://www.cloudsavvyit.com/8123/the-linux-system-information-tool-inxi/





