Friday, July 1, 2022

Minicom for Linux

Minicom is a text-based serial port communications program. It is used to communicate with external RS-232 devices via serial console ports.

To install the application within Linux Mint, use the following command:

sudo apt install minicom

Once the console cable is connected, use the following command:

dmesg | grep tty

The output should include the tty path being used.

Use the following command to configure minicom:

sudo minicom -s

When testing with a Cisco switch, the following settings were required:

Serial Device -> /dev/ttyUSB0
Serial port setup -> 9600 8 1 none
Hardware Flow Control -> Off

https://www.ismoothblog.com/2019/07/access-cisco-switch-serial-console-linux.html

https://help.ubuntu.com/community/CiscoConsole




vSphere Diagnostic Tool

vSphere Diagnostic Tool is a python script that runs diagnostic commands on the vCenter Server Photon Appliance to return useful troubleshooting data.

https://flings.vmware.com/vsphere-diagnostic-tool

https://4sysops.com/archives/troubleshoot-vmware-using-vsphere-diagnostic-tool/

AutoPWN Suite

AutoPWN Suite is a project for scanning vulnerabilities and exploiting systems automatically.

https://github.com/GamehunterKaan/AutoPWN-Suite


BeaKer

BeaKer combines Microsoft Sysmon, WinLogBeat, Elasticsearch, and Kibana to provide insights into network traffic.

https://www.activecountermeasures.com/free-tools/beaker/

https://www.activecountermeasures.com/beaker-instant-forensics/

https://github.com/activecm/BeaKer

Ventoy

Ventoy is an utility to boot multiple operating systems from a single USB drive.

https://www.ventoy.net/

https://www.howtogeek.com/802328/how-to-boot-multiple-linux-distributions-with-ventoy/

 

OSBoxes web site

OSBoxes is a web site with Linux virtual machines available for either VMware or VirtualBox.

https://www.osboxes.org/

Wednesday, June 1, 2022

PowerShell command to list Active Directory users that are active and are sorted by when the password was last set

Get-ADUser -LDAPFilter '(!userAccountControl:1.2.840.113556.1.4.803:=2)' -Properties PasswordLastSet | Select-Object Name, Enabled, PasswordLastSet | Sort PasswordLastSet –Desc

SuperCharger for Windows Event Logs collection

SuperCharger for Windows Event Logs is an utility to management the forwarding and collection of Event Log data within Windows.  A limited free version is available.

https://www.logbinder.com/Products/Supercharger/

ExchangeRecipientAdmin

This is an utility to manage Exchange Online Attributes stored in your local AD without Exchange Server.

https://github.com/spgoodman/ExchangeRecipientAdmin

http://practical365.com/a-new-tool-to-manage-exchange-related-attributes-without-exchange-server/

QuickBuck

QuickBuck is a ransomware simulator.  It is designed to offer a harmless method to check a security application's protection on ransomware.

https://github.com/NextronSystems/ransomware-simulator/