-
How to Hide a User Account in Windows
October 10, 2024In this tutorial, I will show you the steps to prevent a Windows account (local or domain) from appearing on the login screen. Note that the account will remain visible in Local Users and Groups, Active Directory Users and Computers,...
-
Browser History Extraction in Windows
August 27, 2024In this tutorial, I will show you how to extract browsing history from Google Chrome, Mozilla Firefox and Microsoft Edge in Windows operating systems using DB Browser for SQLite and Python.
-
KLCP Comprehensive Exam Guide 2024
August 22, 2024In this guide, I'll highlight key points to focus on for each chapter based on my exam experience and the new course layout from this year. While the layout may change in the future, the advice should still be useful.
-
Simple Python HTTPS Server
July 28, 2024The default HTTP modules SimpleHTTPServer and http.server are only able to interpret basic GET and HEAD requests. They do not interpret any POST requests nor do they support HTTPS (TLS). We are going to extend the default modules by customizing the POST request handler, then add HTTPS support.