Chkrootkit is an open source rootkit scanner for Linux systems. Rootkits are hard to detect software & programs that allow access to a computer where…
View More Scan your Linux Ubuntu machine for rootkits or malwareCategory: Tools
Compress files or folders with PowerShell
The Compress-Archive cmdlet creates a compressed, or zipped, archive file from one or more specified files or directories. An archive packages multiple files, with optional compression,…
View More Compress files or folders with PowerShellWhat is God Mode in Windows 11
What is God Mode in Windows 11? The so-called God Mode is a direct access to over 200 system administration tools. It gets this curious name because many…
View More What is God Mode in Windows 11Bypass Paywalls – Chrome and Edge web extension
Interesting project – Bypass Paywalls has been posted on GitHub. It is a web extension for Chrome or MS Edge that will allow you to…
View More Bypass Paywalls – Chrome and Edge web extensionKasm Seamless Browser Isolation
KASM WORKSPACES is great solution for secure browsing. The Workspaces platform provides enterprise-class orchestration, data loss prevention, and web streaming technology to enable the delivery…
View More Kasm Seamless Browser IsolationAdd SMTP-ProxyAddress to users in AD with PowerShell
Here is a quick way to add new SMTP/ProxyAddress for the users in Active Directory with use of PowerShell. Create a csv file with two…
View More Add SMTP-ProxyAddress to users in AD with PowerShellGet Computer Vendor and model via PowerShell
Simple script to get information via PowerShell from the computer about model of the machine and vendor. 123456789101112131415<# Get information about vendor and model of…
View More Get Computer Vendor and model via PowerShellGet battery health report on Windows laptop
You can gen easily two reports about your laptop battery under Windows 10. Simply press [Windows]+[R] and type [cmd]. Once in command line window you…
View More Get battery health report on Windows laptopPowerShell – Get user’s Manager, Department and Title information
Here is another quick helper for Help Desk guys to pull quickly information about user in PowerShell: SamAccountName Title Department Manager In this case the…
View More PowerShell – Get user’s Manager, Department and Title informationReset Password for user in Active Directory
Quick Help Desk script tool in PowerShell to reset user password : 1234567891011121314Clear-Host Import-Module ActiveDirectory $newpwd = Read-Host "[ Enter the new password ]" -AsSecureString…
View More Reset Password for user in Active Directory