Skip to content

Logitech CVE usage in C#, uses Logitech's GHUB virtual mouse driver to input mouse functions.

Notifications You must be signed in to change notification settings

thoma5s/Logitech-CVE

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Logitech CVE

Purpose

Uses a vulnerability within the Logitech GHUB virtual mouse driver to input mouse functions (aka, mouse movement and clicks).

Usage

An older installation of Logitech GHUB must be installed due to Logitech removing the virtual mouse driver in the latest version(s) of GHUB.

public static void Move(int button, int x, int y, int wheel) {
    Struct.MOUSE_IO io;
    io.Unk1 = 0;
    io.Button = (byte)button;
    io.X = (byte)x;
    io.Y = (byte)y;
    io.Wheel = (byte)wheel;

    if (!Call(io)) {
        Close();
        Open();
    }
}

Credit to ekknod.

About

Logitech CVE usage in C#, uses Logitech's GHUB virtual mouse driver to input mouse functions.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages