Fading Coder

One Final Commit for the Last Sprint

Windows Persistence Techniques for Maintaining Access

Hidden Accounts One of the most common persistence methods involves creating hidden user accounts. First, create a hidden account via command line: net user attacker$ P@ssw0rd /add This account won't appear in standard net user queries. Next, grant it administrator privileges: net localgroup adminis...

Installation and Configuration of Nacos on Windows

Downloading and Extracting Nacos To set up Nacos, navigate to the official Nacos website or the release page on GitHub. Select the specific version tag you require and download the distribution package compatible with your operating system (Windows). Once downloaded, extract the archive to a local d...

Running PowerShell Scripts Continuously After Terminal Closes on Windows

Background Working with background tasks on Linux using nohup led to an investigation of whether PowerShell could maintain script execution after the terminal window is closed. Investigation The following solutions were explored based on community discussions. A test script was created that prints i...

Resolving Duplicate OneDrive Icons in Windows File Explorer

Windows File Explorer sometimes displays redundant OneDrive entries in the navigation pane. This behavior occurs because the system registers distinct CLSIDs (Class IDs) for personal and professional OneDrive accounts, leading the Shell Namespace to render multiple shortcuts. The Root Cause The Shel...

Complete Guide to Installing and Uninstalling MySQL on Ubuntu and Windows

Uninstalling MySQL on Ubuntu First, remove MySQL packages: sudo apt-get remove mysql-* Then clean up residual configuration files: dpkg -l | grep ^rc | awk '{print $2}' | sudo xargs dpkg -P A dialog may appear; select "Yes" to confirm. Installing MySQL on Ubuntu You can install MySQL using...

Deploying MySQL 8.0 on Windows Without an Active Internet Connection

Preparation and File Retrieval Obtain the distribution package for the latest stable build from the official archive. Alternatively, transfer a verified installer package from another machine to ensure compatibility with your environment. https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.39-wi...

Windows Incident Response: A Detailed Guide

1. Attack Classification To conduct an incident response, you must first understand what type of attack you are dealing with. Common attack categories include: System Intrusion: Viruses, Trojans, ransomware, remote control backdoors. Web Intrusion: Web page malware, homepage tampering, Webshell. Net...

Installing and Configuring MongoDB on Windows

Required Software Version The installation package used in this tutorial is: mongodb-win32-x86_64-2008plus-ssl-3.4.4-signed.msi Alternative version available: mongodb-win32-x86_64-2008plus-3.4.24-signed.msi Step-by-Step Installation Proces 1. MongoDB Installation Guide Execute the instaler file mong...

Resolving CUDA_ILLEGAL_INSTRUCTION and Event Polling Errors with tf.one_hot on Windows GPU

Exceuting standard TensorFlow operations on a Windows system equipped with an NVIDIA GPU can trigger specific runtime failrues. A common scenario involves the following crash logs: 2019-04-02 09:50:47.986024: I C:\users\nwani\_bazel_nwani\swultrt5\execroot\org_tensorflow\tensorflow\core\common_runti...

Installing and Configuring MongoDB on Windows

Obtaining the Installation Package Head to the MongoDB Community download page and choose the MSI installer for Windows. Running the Installer Launch the downloaded MSI and follow these steps. When the setup type selection appears, pick the Custom option so you can specify the installation path—for...