AGIX is a Linux & Cybersecurity services business. But we do plenty of Windows Server work too. Browse our articles on this page to find out more.
This article demonstrates how to mount “https://live.sysinternals.com/tools” on Linux so that it’s accessible at “/mnt/sysinternals”, for example. On CentOS: yum install davfs2 On Ubuntu: apt install davfs2 Mount it: mount -t davfs https://live.sysinternals.com/tools /mnt/sysinternals Now you can access it at: # ls /mnt/sysinternals/ accesschk64.exe diskext.exe pipelist.exe RegDelNull.exe accesschk.exe Diskmon.exe PORTMON.CNT
Read more
This article explains how to extract various Windows dumps of passwords from a target system. To follow along with this article, you’ll need to have administrative access to the target Windows machine, and any endpoint security will need to be tolerant of your activities. Any good AV will likely prevent
Read more
We don’t tend to install Windows very often these days. It seems to be far more stable than the old days and it mostly just works. But from time to time we do need to install it fresh and there’s a list of things we need to do to make
Read more
If you have a “Work or School” Office 365 account, you’re likely able to use it as your Windows Domain service, allowing you go join your Windows 10 Pro (or higher, but not Home) to it as a domain member much like you would with an on-prem domain controller We’ll
Read more
This article shows a one lines (well, 4 lines) that output any updates that are waiting to be installed on your local computer. Open PowerShell and run the following commands: $UpdateSession = New-Object -ComObject Microsoft.Update.Session $UpdateSearcher = $UpdateSession.CreateupdateSearcher() $Updates = @($UpdateSearcher.Search(“IsHidden=0 and IsInstalled=0”).Updates) $Updates | Select-Object Title The output should
Read more
This article demonstrates one way to get and crack Windows 10 passwords. All the steps are completed on Windows 10. The last step of running the hashes through the Rainbow attack process could be replaced with John (JtR). The tools we’ll use are: Windows 10 Pro samdump2 mimikatz https://crackstation.net Step
Read more
Trouble installing Windows 10 Updates? This article is for you. Visit the site: https://www.microsoft.com/en-us/software-download/windows10 … and click the “Update Now” button. The program that downloads helps you manually update Windows. Execute it and go through the Wizard. Warning, this takes your computer into a process of uninterruptible reboots and updates
Read more
This article shows how to download and apply a Windows patch (update) manually. The following uses “cmd” with Administrative permissions. Start by downloading the patch. You need to visit the following URL and search for the KBxxxxxx file manually. https://catalog.update.microsoft.com Click on the “Download” link next to the result you’re
Read more
If you’re a Windows system administrator with a need to log into a Linux server and troubleshoot it, this article is for you. Log into Linux Logging into a Linux server can be done via any of the following: Login with to a remote Linux server using SSH. Login at
Read more
There are several ways to configure a web browser to use a proxy. This article focuses on the DNS & WPAD method but we’ll cover other options too. The objective is to force workstations to use a proxy server if and how the business needs depending on where the workstation
Read more