MY PROJECTS

Swiftrix
PC optimization tool written in .NET CLR C++ that communicates with a
private cloud hosted backend written in javascript.
Became available in the Microsoft store on October 12th, and now has
over 20,000 active users daily.
Was the first commercial app to allow users to modify their
motherboard's BIOS firmware without the need of a hard reboot.
Users have access to over 200 windows optimizations leading to an
average 67% increase in overall FPS (frames per second) in select titles.
The app was entirely coded, researched, and published by Enzo Genovese
in August 2024

IGLOO
Gaming utility that leveraged AI to automatically determine the most
optimal path to follow in order to land first in Fortnite.
Written entirely in C++, implementing a custom made API to integrate
tensorflow model and OCR into the codebase.
Users could pick between 3 different pricing tiers, each unlocking
various features within the app. Including automatic drop path calculation, zone predictor, and
in-app coaching
Utilized ImGui to natively draw the UI on screen to avoid conflicts
with the video game's anticheat.

Scudo
C++ function encryption library capable of obfuscating and encrypting
functions at runtime.
Was built using a vulnerability discovered by Enzo Genovese that
allowed threat actors to hide malicious code in the SEH (structured exception handler) to avoid
detection by the popular antivirus, Malwarebytes.
Leveraged the SEH chain to dynamically encrypt and decrypt when needed
any function in memory.
Allows developers to specify which functions to encrypt prior to
compilation and have granular control over its protection in memory.
Developers can choose whether to use a Instrumentation Callback
(kernel level hook) or Vectored handler (usermode level hook) to decrypt and encrypt data.

BitBlocks
C++ library designed to efficiently cut down on memory allocated for
booleans in applications.
Leverages the binary nature of booleans by packing a set of 8 booleans
into a single char variable saving 6 times as much space.
Primarily utilized by video game developers to store game states,
player states, or any state based application in small manageable chunks with granular access.

Smoothplay
C++ PC optimization app capable of improving PC frametimes by 23% and
decreasing average system latency by 74% (measured using 12 samples).
Allowed users to customize their gaming experience by prioritizing
lower system latency or higher FPS (frames per second).
Implemented the first iteration of my BIOS optimization method,
leveraging a kernel driver to access system NVRAM variables and tune them on a per-motherboard
basis.