Developer Extensions 2.9

NB! A new version of Developer Extensions 2.9 with important bug fixes is now available in the Microsoft Store. Uninstall existing version first. Please click Subscribe to get a valid license. Developer Extensions 2.9 is a comprehensive suite of tools designed to enhance the functionality of File Explorer on Windows 10/11 version 1903 and above.Continue reading “Developer Extensions 2.9”

Hostility or peaceful co-existence

The war in Ukraine has led me to now see that politicians and others behave and do things in such a manner that it leads to war and conflict. Instead, they should behave and do things in such a way that it leads to a future of peaceful co-existence. Instead of complaining, demanding and fightingContinue reading “Hostility or peaceful co-existence”

Windows: Is Keyboard Rootkitted?

I created a keyboard SMM rootkitted detector that consist of a Windows driver, a simple C++ Win32 app that outputs the result, and a WiX 3.11 .msi installer. In Windows you have to sign the driver for this to work and get the driver installed. The app looks something like this: In order to compile,Continue reading “Windows: Is Keyboard Rootkitted?”

Linux: Is Keyboard Rootkitted?

I created a keyboard SMM rootkitted detector that consist of a Linux Loadable Kernel Module (LKM), a /proc/is-kbd-rkt file and a simple app that outputs the result. The app looks something like this: In order to try it out you first need: Then you should do a: git clone https://github.com/sith-ikjetil/is-kbd-rkt.git Then you need to buildContinue reading “Linux: Is Keyboard Rootkitted?”

.NET Language Integrated Query (LINQ)

As of C# 3.0 we have had a standard way of querying data through Language Integrated Query or LINQ for short. C# 3.0 introduces its query language as a first-class citizen. The querying are type checked by the C# compiler. C# 3.0 also introduced things like lamda expressions and extension methods et. al. Both ofContinue reading “.NET Language Integrated Query (LINQ)”