repo_full_name
stringlengths
6
93
repo_url
stringlengths
25
112
repo_api_url
stringclasses
28 values
owner
stringclasses
28 values
repo_name
stringclasses
28 values
description
stringclasses
28 values
stars
int64
617
98.8k
forks
int64
31
355
watchers
int64
990
999
license
stringclasses
2 values
default_branch
stringclasses
2 values
repo_created_at
timestamp[s]date
2012-07-24 23:12:50
2025-06-16 08:07:28
repo_updated_at
timestamp[s]date
2026-02-23 15:23:15
2026-05-03 18:52:12
repo_topics
listlengths
0
13
repo_languages
unknown
is_fork
bool
1 class
open_issues
int64
3
104
file_path
stringlengths
3
208
file_name
stringclasses
509 values
file_extension
stringclasses
1 value
file_size_bytes
int64
101
84k
file_url
stringclasses
627 values
file_raw_url
stringclasses
627 values
file_sha
stringclasses
624 values
language
stringclasses
8 values
parsed_at
stringdate
2026-05-04 01:12:36
2026-05-04 19:41:55
text
stringlengths
100
102k
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 4 - Address Translation Using Extended Page Table (EPT)/MyHypervisorDriver/MyHypervisorDriver/Driver.h
null
null
null
null
null
null
C
2026-05-04T18:38:28.375208
#pragma once #include <ntddk.h> #include <wdf.h> #include <wdm.h> extern void inline AsmEnableVmxOperation(void); NTSTATUS DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath); VOID DrvUnload(PDRIVER_OBJECT DriverObject); NTSTATUS DrvCreate(IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp); NTSTATUS DrvR...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 4 - Address Translation Using Extended Page Table (EPT)/MyHypervisorDriver/MyHypervisorDriver/Memory.c
null
null
null
null
null
null
C
2026-05-04T18:38:28.404255
#include <ntddk.h> #include <wdf.h> #include <wdm.h> #include "MSR.h" #include "Vmx.h" UINT64 VirtualToPhysicalAddress(void * Va) { return MmGetPhysicalAddress(Va).QuadPart; } UINT64 PhysicalToVirtualAddress(UINT64 Pa) { PHYSICAL_ADDRESS PhysicalAddr; PhysicalAddr.QuadPart = Pa; ret...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 4 - Address Translation Using Extended Page Table (EPT)/MyHypervisorDriver/MyHypervisorDriver/Driver.c
null
null
null
null
null
null
C
2026-05-04T18:38:28.404887
#include <ntddk.h> #include <wdf.h> #include <wdm.h> #include "Driver.h" #include "Vmx.h" #include "EPT.h" NTSTATUS DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath) { NTSTATUS NtStatus = STATUS_SUCCESS; UINT64 Index = 0; PDEVICE_OBJECT DeviceObject...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 5 - Setting up VMCS & Running Guest Code/MyHypervisorDriver/MyHypervisorDriver/EPT.h
null
null
null
null
null
null
C
2026-05-04T18:38:29.374128
#pragma once #define MAX_NUM_OF_PAGES 0x20000 #define EPTE_READ 0x1 #define EPTE_READEXEC 0x5 #define EPTE_WRITE 0x2 #define EPTE_EXECUTE 0x4 #define EPTE_ATTR_MASK 0xFFF #define EPTE_MT_SHIFT 3 #define EPT_LEVELS 4 #define CACHE_TYPE_UC 0x00 /* Uncacheable */ #define ...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 5 - Setting up VMCS & Running Guest Code/MyHypervisorDriver/MyHypervisorDriver/MSR.h
null
null
null
null
null
null
C
2026-05-04T18:38:29.378491
#pragma once #include <ntddk.h> // // Constants // #define MSR_APIC_BASE 0x01B #define MSR_IA32_FEATURE_CONTROL 0x03A #define MSR_IA32_VMX_BASIC 0x480 #define MSR_IA32_VMX_PINBASED_CTLS 0x481 #define MSR_IA32_VMX_PROCBASED_CTLS 0x482 #define MSR_IA32_VMX_EXIT_CTLS ...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 5 - Setting up VMCS & Running Guest Code/MyHypervisorDriver/MyHypervisorDriver/EPT.c
null
null
null
null
null
null
C
2026-05-04T18:38:29.379556
#include <ntddk.h> #include "VMX.h" #include "EPT.h" UINT64 g_VirtualGuestMemoryAddress; PEPTP InitializeEptp() { PAGED_CODE(); // // Allocate EPTP // PEPTP EPTPointer = ExAllocatePoolWithTag(NonPagedPool, PAGE_SIZE, POOLTAG); if (!EPTPointer) { return NULL; ...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 5 - Setting up VMCS & Running Guest Code/MyHypervisorDriver/MyHypervisorDriver/ProtectedMode.h
null
null
null
null
null
null
C
2026-05-04T18:38:29.381126
#pragma once #include <ntddk.h> #include <wdf.h> #include <wdm.h> typedef struct _GDT_ENTRY { UINT16 LIMIT15_0; UINT16 BASE15_0; UINT8 BASE23_16; UINT8 TYPE : 1; UINT8 SUBTYPE : 1; UINT8 Accessibility : 1; UINT8 Access : 1; UINT8 S : 1; UINT8 DPL : 2; UINT8 PRESENT : 1; UINT8 LIMIT...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 5 - Setting up VMCS & Running Guest Code/MyHypervisorDriver/MyHypervisorDriver/Memory.c
null
null
null
null
null
null
C
2026-05-04T18:38:29.387449
#include <ntddk.h> #include <wdf.h> #include <wdm.h> #include "MSR.h" #include "VMX.h" #include "Common.h" UINT64 VirtualToPhysicalAddress(void * Va) { return MmGetPhysicalAddress(Va).QuadPart; } UINT64 PhysicalToVirtualAddress(UINT64 Pa) { PHYSICAL_ADDRESS PhysicalAddr; PhysicalAddr.Quad...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 5 - Setting up VMCS & Running Guest Code/MyHypervisorDriver/MyHypervisorDriver/Processor.c
null
null
null
null
null
null
C
2026-05-04T18:38:29.388426
#include <ntddk.h> #include <wdf.h> #include <wdm.h> #include "MSR.h" #include "Common.h" #include "VMX.h" int MathPower(int Base, int Exp) { int Result = 1; for (;;) { if (Exp & 1) { Result *= Base; } Exp >>= 1; if (!Exp) { ...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 5 - Setting up VMCS & Running Guest Code/MyHypervisorDriver/MyHypervisorDriver/VMX.c
null
null
null
null
null
null
C
2026-05-04T18:38:29.399834
#include "MSR.h" #include "VMX.h" #include "Common.h" #include "EPT.h" VIRTUAL_MACHINE_STATE * g_GuestState; int g_ProcessorCounts; VOID InitiateVmx() { if (!IsVmxSupported()) { DbgPrint("[*] VMX is not supported in this machine !\n"); return; } PA...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 5 - Setting up VMCS & Running Guest Code/MyHypervisorDriver/MyHypervisorDriver/Driver.c
null
null
null
null
null
null
C
2026-05-04T18:38:29.426298
#include <ntddk.h> #include <wdf.h> #include <wdm.h> #include "Common.h" #include "VMX.h" #include "EPT.h" NTSTATUS DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath) { NTSTATUS NtStatus = STATUS_SUCCESS; UINT64 Index = 0; PDEVICE_OBJECT DeviceObject...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 6 - Virtualizing An Already Running System/MyHypervisorDriver/MyHypervisorDriver/EPT.c
null
null
null
null
null
null
C
2026-05-04T18:38:30.040016
#include <ntddk.h> #include "VMX.h" #include "Common.h" #include "EPT.h" UINT64 g_VirtualGuestMemoryAddress; PEPTP InitializeEptp() { PAGED_CODE(); // // Allocate EPTP // PEPTP EptPointer = ExAllocatePoolWithTag(NonPagedPool, PAGE_SIZE, POOLTAG); if (!EptPointer) { ...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 6 - Virtualizing An Already Running System/MyHypervisorDriver/MyHypervisorDriver/Common.h
null
null
null
null
null
null
C
2026-05-04T18:38:30.041269
#pragma once #include <ntddk.h> #include <wdf.h> #include <wdm.h> #include "EPT.h" // // Globals // UINT64 g_StackPointerForReturning; UINT64 g_BasePointerForReturning; /* Trap/fault mnemonics */ #define TRAP_DIVIDE_ERROR 0 #define TRAP_DEBUG 1 #define TRAP_NMI 2 #define TRAP_...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 6 - Virtualizing An Already Running System/MyHypervisorApp/MyHypervisorApp/Ioctl.h
null
null
null
null
null
null
C
2026-05-04T18:38:30.069945
#pragma once //////////////////////////////////////////// // IOCTL Codes and Its meanings // //////////////////////////////////////////// // // Device type -- in the "User Defined" range." // #define SIOCTL_TYPE 40000 // // The IOCTL function codes from 0x800 to 0xFFF are for customer use. // #de...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 6 - Virtualizing An Already Running System/MyHypervisorDriver/MyHypervisorDriver/EPT.h
null
null
null
null
null
null
C
2026-05-04T18:38:30.070530
#pragma once #define MAX_NUM_OF_PAGES 0x20000 #define EPTE_READ 0x1 #define EPTE_READEXEC 0x5 #define EPTE_WRITE 0x2 #define EPTE_EXECUTE 0x4 #define EPTE_ATTR_MASK 0xFFF #define EPTE_MT_SHIFT 3 #define EPT_LEVELS 4 #define CACHE_TYPE_UC 0x00 /* Uncacheable */ #define ...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 6 - Virtualizing An Already Running System/MyHypervisorDriver/MyHypervisorDriver/Processor.c
null
null
null
null
null
null
C
2026-05-04T18:38:30.072937
#include <ntddk.h> #include <wdf.h> #include <wdm.h> #include "MSR.h" #include "Common.h" #include "VMX.h" int MathPower(int Base, int Exp) { int Result = 1; for (;;) { if (Exp & 1) { Result *= Base; } Exp >>= 1; if (!Exp) { ...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 6 - Virtualizing An Already Running System/MyHypervisorDriver/MyHypervisorDriver/Driver.c
null
null
null
null
null
null
C
2026-05-04T18:38:30.074285
#include <ntddk.h> #include <wdf.h> #include <wdm.h> #include "Common.h" #include "VMX.h" #include "EPT.h" NTSTATUS DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath) { NTSTATUS NtStatus = STATUS_SUCCESS; UINT64 Index = 0; PDEVICE_OBJECT DeviceObject...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 6 - Virtualizing An Already Running System/MyHypervisorDriver/MyHypervisorDriver/Memory.c
null
null
null
null
null
null
C
2026-05-04T18:38:30.097148
#include <ntddk.h> #include <wdf.h> #include <wdm.h> #include "MSR.h" #include "VMX.h" #include "Common.h" UINT64 VirtualToPhysicalAddress(void * Va) { return MmGetPhysicalAddress(Va).QuadPart; } UINT64 PhysicalToVirtualAddress(UINT64 Pa) { PHYSICAL_ADDRESS PhysicalAddr; PhysicalAddr.Quad...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 6 - Virtualizing An Already Running System/MyHypervisorDriver/MyHypervisorDriver/MSR.h
null
null
null
null
null
null
C
2026-05-04T18:38:30.097699
#pragma once #include <ntddk.h> #define MSR_APIC_BASE 0x01B #define MSR_IA32_FEATURE_CONTROL 0x03A #define MSR_IA32_VMX_BASIC 0x480 #define MSR_IA32_VMX_PINBASED_CTLS 0x481 #define MSR_IA32_VMX_PROCBASED_CTLS 0x482 #define MSR_IA32_VMX_EXIT_CTLS 0x483 #define MS...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 5 - Setting up VMCS & Running Guest Code/MyHypervisorDriver/MyHypervisorDriver/VMX.h
null
null
null
null
null
null
C
2026-05-04T18:38:30.266313
#pragma once #include <ntddk.h> #include "EPT.h" // // Structures // typedef struct _VIRTUAL_MACHINE_STATE { UINT64 VmxoRegion; // VMXON region UINT64 VmcsRegion; // VMCS region UINT64 Eptp; // Extended-Page-Table Pointer UINT64 VmmStack; // Stack for VMM...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 5 - Setting up VMCS & Running Guest Code/VMCS-Checks/CheckGuestVmcsFieldsForVmEntry.c
null
null
null
null
null
null
C
2026-05-04T18:38:30.436693
/** * @file CheckGuestVmcsFieldsForVmEntry.c * @author Satoshi Tanda (tanda.sat@gmail.com) * @brief Checks validity of the guest VMCS fields for VM-entry as per * 26.3 CHECKING AND LOADING GUEST STATE * @version 0.1 * @date 2021-02-20 * * @details This file implements part of checks performed by a processo...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 7 - Using EPT & Page-level Monitoring Features/MyHypervisorDriver/MyHypervisorDriver/Driver.c
null
null
null
null
null
null
C
2026-05-04T18:38:30.969017
#include <ntddk.h> #include <wdf.h> #include <wdm.h> #include "Common.h" #include "HypervisorRoutines.h" /* Main Driver Entry in the case of driver load */ NTSTATUS DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath) { NTSTATUS Ntstatus = STATUS_SUCCESS; UINT64 Index = 0; PDEVICE_OBJ...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 7 - Using EPT & Page-level Monitoring Features/MyHypervisorDriver/MyHypervisorDriver/Dpc.h
null
null
null
null
null
null
C
2026-05-04T18:38:30.976688
#include<ntddk.h> ////////////////////////////////////////////////// // Functions // ////////////////////////////////////////////////// NTKERNELAPI _IRQL_requires_max_(APC_LEVEL) _IRQL_requires_min_(PASSIVE_LEVEL) _IRQL_requires_same_ VOID KeGenericCallDpc( _In_ PKDEFERRED_ROUTINE Routine, ...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 7 - Using EPT & Page-level Monitoring Features/MyHypervisorDriver/MyHypervisorDriver/Common.h
null
null
null
null
null
null
C
2026-05-04T18:38:30.978644
#include "Ept.h" ////////////////////////////////////////////////// // Enums // ////////////////////////////////////////////////// typedef enum _SEGMENT_REGISTERS { ES = 0, CS, SS, DS, FS, GS, LDTR, TR }; ////////////////////////////////////////////////// // Constants ...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 7 - Using EPT & Page-level Monitoring Features/MyHypervisorDriver/MyHypervisorDriver/Ept.c
null
null
null
null
null
null
C
2026-05-04T18:38:30.979404
#include "Vmx.h" #include "Ept.h" #include "Common.h" #include "InlineAsm.h" #include "GlobalVariables.h" #include "Invept.h" #include "HypervisorRoutines.h" #include "Vmcall.h" /* Check whether EPT features are present or not */ BOOLEAN EptCheckFeatures() { IA32_VMX_EPT_VPID_CAP_REGISTER VpidRegister; ...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 6 - Virtualizing An Already Running System/MyHypervisorDriver/MyHypervisorDriver/VMX.h
null
null
null
null
null
null
C
2026-05-04T18:38:30.984408
#pragma once #include <ntddk.h> #include "EPT.h" #define POOLTAG 0x48564653 // [H]yper[V]isor [F]rom [S]cratch (HVFS) #define VMM_STACK_SIZE 0x8000 #define RPL_MASK 3 #define ALIGNMENT_PAGE_SIZE 4096 #define MAXIMUM_ADDRESS 0xffffffffffffffff #define VMCS_SIZE 4096 #define VMXON_...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 7 - Using EPT & Page-level Monitoring Features/MyHypervisorApp/MyHypervisorApp/targetver.h
null
null
null
null
null
null
C
2026-05-04T18:38:30.985478
#pragma once // Including SDKDDKVer.h defines the highest available Windows platform. // If you wish to build your application for a previous Windows platform, include WinSDKVer.h and // set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h. #include <SDKDDKVer.h>
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 6 - Virtualizing An Already Running System/MyHypervisorDriver/MyHypervisorDriver/VMX.c
null
null
null
null
null
null
C
2026-05-04T18:38:30.991019
#include "MSR.h" #include "VMX.h" #include "Common.h" #include "EPT.h" VIRTUAL_MACHINE_STATE * g_GuestState; int g_ProcessorCounts; VOID InitializeVmx() { KAFFINITY AffinityMask; if (!IsVmxSupported()) { DbgPrint("[*] VMX is not supported in this machine !\n"); ...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 7 - Using EPT & Page-level Monitoring Features/MyHypervisorApp/MyHypervisorApp/stdafx.h
null
null
null
null
null
null
C
2026-05-04T18:38:30.992354
// stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #pragma once #include "targetver.h" #include <stdio.h> #include <tchar.h> // TODO: reference additional headers your program requires here
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 7 - Using EPT & Page-level Monitoring Features/MyHypervisorDriver/MyHypervisorDriver/Common.c
null
null
null
null
null
null
C
2026-05-04T18:38:31.175192
#include <ntddk.h> #include <wdf.h> #include "Msr.h" #include "Common.h" #include "Vmx.h" /* Power function in order to computer address for MSR bitmaps */ int MathPower(int Base, int Exp) { int result; result = 1; for (;;) { if (Exp & 1) { result *= Base; } Exp >>= 1; if (!Exp)...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 7 - Using EPT & Page-level Monitoring Features/MyHypervisorDriver/MyHypervisorDriver/Ept.h
null
null
null
null
null
null
C
2026-05-04T18:38:31.178001
#pragma once ////////////////////////////////////////////////// // Constants // ////////////////////////////////////////////////// // MTRR Physical Base MSRs #define MSR_IA32_MTRR_PHYSBASE0 0x00000200 #define MSR_IA32_MTRR_PHYSBASE1 ...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 7 - Using EPT & Page-level Monitoring Features/MyHypervisorDriver/MyHypervisorDriver/GlobalVariables.h
null
null
null
null
null
null
C
2026-05-04T18:38:31.763541
#pragma once #include <ntddk.h> ////////////////////////////////////////////////// // Global Variables // ////////////////////////////////////////////////// // Save the state and variables related to each to logical core VIRTUAL_MACHINE_STATE* GuestState; // Save the state and variables related to EP...
SinaKarvandi/Hypervisor-From-Scratch
https://github.com/SinaKarvandi/Hypervisor-From-Scratch
null
null
null
null
2,559
null
null
mit
null
null
null
null
null
null
null
Part 7 - Using EPT & Page-level Monitoring Features/MyHypervisorDriver/MyHypervisorDriver/HypervisorRoutines.c
null
null
null
null
null
null
C
2026-05-04T18:38:31.792665
// This file describe the routines in Hypervisor #include "Msr.h" #include "Vmx.h" #include "Common.h" #include "GlobalVariables.h" #include "HypervisorRoutines.h" #include "Invept.h" #include "InlineAsm.h" #include "Vmcall.h" #include "Dpc.h" /* Initialize Vmx */ BOOLEAN HvVmxInitialize() { int Logi...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/HID-APIs/DefaultKeyboardAPI.h
null
null
null
null
null
null
C
2026-05-04T18:38:35.844074
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
extras/rawhid/rawhid_test.c
null
null
null
null
null
null
C
2026-05-04T18:38:35.845711
#include <stdio.h> #include <stdlib.h> #include <stdarg.h> #if defined(OS_LINUX) || defined(OS_MACOSX) #include <sys/ioctl.h> #include <termios.h> #elif defined(OS_WINDOWS) #include <conio.h> #endif #include "hid.h" static char get_keystroke(void); int main() { int i, r, num; char c, buf[200]; // C-based exam...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/HID-APIs/AbsoluteMouseAPI.h
null
null
null
null
null
null
C
2026-05-04T18:38:35.850322
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/HID-APIs/ConsumerAPI.h
null
null
null
null
null
null
C
2026-05-04T18:38:35.851177
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
extras/rawhid/hid.h
null
null
null
null
null
null
C
2026-05-04T18:38:35.869138
int rawhid_open(int max, int vid, int pid, int usage_page, int usage); int rawhid_recv(int num, void *buf, int len, int timeout); int rawhid_send(int num, void *buf, int len, int timeout); void rawhid_close(int num);
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
extras/rawhid/hid_MACOSX.c
null
null
null
null
null
null
C
2026-05-04T18:38:35.870547
/* Simple Raw HID functions for Linux - for use with Teensy RawHID example * http://www.pjrc.com/teensy/rawhid.html * Copyright (c) 2009 PJRC.COM, LLC * * rawhid_open - open 1 or more devices * rawhid_recv - receive a packet * rawhid_send - send a packet * rawhid_close - close a device * * Permission is he...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/HID-APIs/GamepadAPI.h
null
null
null
null
null
null
C
2026-05-04T18:38:35.896225
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
extras/rawhid/hid_WINDOWS.c
null
null
null
null
null
null
C
2026-05-04T18:38:35.896747
/* Simple Raw HID functions for Windows - for use with Teensy RawHID example * http://www.pjrc.com/teensy/rawhid.html * Copyright (c) 2009 PJRC.COM, LLC * * rawhid_open - open 1 or more devices * rawhid_recv - receive a packet * rawhid_send - send a packet * rawhid_close - close a device * * Permission is ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/HID-APIs/KeyboardAPI.h
null
null
null
null
null
null
C
2026-05-04T18:38:35.897804
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
extras/rawhid/hid_LINUX.c
null
null
null
null
null
null
C
2026-05-04T18:38:35.926050
/* Simple Raw HID functions for Linux - for use with Teensy RawHID example * http://www.pjrc.com/teensy/rawhid.html * Copyright (c) 2009 PJRC.COM, LLC * * rawhid_open - open 1 or more devices * rawhid_recv - receive a packet * rawhid_send - send a packet * rawhid_close - close a device * * Permission is he...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/HID-APIs/MouseAPI.h
null
null
null
null
null
null
C
2026-05-04T18:38:36.862475
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/HID-APIs/SurfaceDialAPI.h
null
null
null
null
null
null
C
2026-05-04T18:38:36.892411
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/HID-APIs/NKROKeyboardAPI.h
null
null
null
null
null
null
C
2026-05-04T18:38:36.893496
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/HID-APIs/SystemAPI.h
null
null
null
null
null
null
C
2026-05-04T18:38:36.975445
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/KeyboardLayouts/ImprovedKeylayoutsDE.h
null
null
null
null
null
null
C
2026-05-04T18:38:37.478277
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/KeyboardLayouts/ImprovedKeylayoutsDK.h
null
null
null
null
null
null
C
2026-05-04T18:38:37.840622
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/HID-Project.h
null
null
null
null
null
null
C
2026-05-04T18:38:37.842612
/* Copyright (c) 2014-2021 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/HID-APIs/TeensyKeyboardAPI.h
null
null
null
null
null
null
C
2026-05-04T18:38:37.881596
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/KeyboardLayouts/ImprovedKeylayoutsFR.h
null
null
null
null
null
null
C
2026-05-04T18:38:37.882611
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/KeyboardLayouts/ImprovedKeylayouts.h
null
null
null
null
null
null
C
2026-05-04T18:38:37.994559
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/KeyboardLayouts/ImprovedKeylayoutsBE.h
null
null
null
null
null
null
C
2026-05-04T18:38:37.995168
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/HID-Settings.h
null
null
null
null
null
null
C
2026-05-04T18:38:38.025134
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/KeyboardLayouts/ImprovedKeylayoutsCH.h
null
null
null
null
null
null
C
2026-05-04T18:38:38.055265
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/KeyboardLayouts/ImprovedKeylayoutsES.h
null
null
null
null
null
null
C
2026-05-04T18:38:38.096316
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/KeyboardLayouts/ImprovedKeylayoutsNO.h
null
null
null
null
null
null
C
2026-05-04T18:38:38.861504
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/MultiReport/Gamepad.h
null
null
null
null
null
null
C
2026-05-04T18:38:38.988732
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/KeyboardLayouts/ImprovedKeylayoutsSE.h
null
null
null
null
null
null
C
2026-05-04T18:38:39.506585
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/MultiReport/ImprovedKeyboard.h
null
null
null
null
null
null
C
2026-05-04T18:38:39.530526
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/MultiReport/ImprovedMouse.h
null
null
null
null
null
null
C
2026-05-04T18:38:39.618191
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/KeyboardLayouts/ImprovedKeylayoutsPT.h
null
null
null
null
null
null
C
2026-05-04T18:38:39.637628
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/KeyboardLayouts/ImprovedKeylayoutsJP.h
null
null
null
null
null
null
C
2026-05-04T18:38:39.643104
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/MultiReport/NKROKeyboard.h
null
null
null
null
null
null
C
2026-05-04T18:38:40.093018
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/MultiReport/SurfaceDial.h
null
null
null
null
null
null
C
2026-05-04T18:38:40.194942
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/SingleReport/BootKeyboard.h
null
null
null
null
null
null
C
2026-05-04T18:38:40.240827
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/SingleReport/BootMouse.h
null
null
null
null
null
null
C
2026-05-04T18:38:40.309004
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/MultiReport/System.h
null
null
null
null
null
null
C
2026-05-04T18:38:40.340118
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/SingleReport/RawHID.h
null
null
null
null
null
null
C
2026-05-04T18:38:40.721600
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/SingleReport/SingleAbsoluteMouse.h
null
null
null
null
null
null
C
2026-05-04T18:38:40.808364
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/SingleReport/SingleConsumer.h
null
null
null
null
null
null
C
2026-05-04T18:38:40.886378
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/SingleReport/SingleGamepad.h
null
null
null
null
null
null
C
2026-05-04T18:38:40.962726
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/SingleReport/SingleNKROKeyboard.h
null
null
null
null
null
null
C
2026-05-04T18:38:40.980118
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/SingleReport/SingleSystem.h
null
null
null
null
null
null
C
2026-05-04T18:38:41.408658
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/KeyboardLayouts/ImprovedKeylayoutsIT.h
null
null
null
null
null
null
C
2026-05-04T18:38:43.305583
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights t...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/KeyboardLayouts/ImprovedKeylayoutsUK.h
null
null
null
null
null
null
C
2026-05-04T18:38:43.626467
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/KeyboardLayouts/ImprovedKeylayoutsUS.h
null
null
null
null
null
null
C
2026-05-04T18:38:43.656317
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/MultiReport/Consumer.h
null
null
null
null
null
null
C
2026-05-04T18:38:43.698645
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
NicoHood/HID
https://github.com/NicoHood/HID
null
null
null
null
2,555
null
null
mit
null
null
null
null
null
null
null
src/MultiReport/AbsoluteMouse.h
null
null
null
null
null
null
C
2026-05-04T18:38:43.738714
/* Copyright (c) 2014-2015 NicoHood See the readme for credit to other people. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, ...
brendan-rius/c-jwt-cracker
https://github.com/brendan-rius/c-jwt-cracker
null
null
null
null
2,544
null
null
mit
null
null
null
null
null
null
null
main.c
null
null
null
null
null
null
C
2026-05-04T18:38:46.224602
/* Copyright (c) 2017 Brendan Rius. All rights reserved Configurable HMAC hash functions implemented in 2021 by Maxim Masiutin, see the "README.md" file for more details. */ #include <stdlib.h> #include <stdio.h> #include <string.h> #include <openssl/evp.h> #include <openssl/hmac.h> #include <stdbool.h> #include <p...
brendan-rius/c-jwt-cracker
https://github.com/brendan-rius/c-jwt-cracker
null
null
null
null
2,544
null
null
mit
null
null
null
null
null
null
null
base64.c
null
null
null
null
null
null
C
2026-05-04T18:38:46.270687
/* * Copyright (c) 2003 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source L...
brendan-rius/c-jwt-cracker
https://github.com/brendan-rius/c-jwt-cracker
null
null
null
null
2,544
null
null
mit
null
null
null
null
null
null
null
base64.h
null
null
null
null
null
null
C
2026-05-04T18:38:46.331676
/* * Copyright (c) 2003 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source L...
aws/amazon-freertos
https://github.com/aws/amazon-freertos
null
null
null
null
2,531
null
null
mit
null
null
null
null
null
null
null
demos/common/mqtt_demo_helpers/mqtt_demo_helpers.c
null
null
null
null
null
null
C
2026-05-04T18:38:50.406315
/* * FreeRTOS V202203.00 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including ...
aws/amazon-freertos
https://github.com/aws/amazon-freertos
null
null
null
null
2,531
null
null
mit
null
null
null
null
null
null
null
demos/common/mqtt_demo_helpers/mqtt_demo_helpers.h
null
null
null
null
null
null
C
2026-05-04T18:38:50.423466
/* * FreeRTOS V202203.00 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including ...
aws/amazon-freertos
https://github.com/aws/amazon-freertos
null
null
null
null
2,531
null
null
mit
null
null
null
null
null
null
null
demos/common/http_demo_helpers/http_demo_utils.c
null
null
null
null
null
null
C
2026-05-04T18:38:50.424813
/* * FreeRTOS V202203.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including ...
aws/amazon-freertos
https://github.com/aws/amazon-freertos
null
null
null
null
2,531
null
null
mit
null
null
null
null
null
null
null
demos/ble/ota_ble/ota_demo_mqtt_ble_transport.c
null
null
null
null
null
null
C
2026-05-04T18:38:50.428840
/* * FreeRTOS V202203.00 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including ...
aws/amazon-freertos
https://github.com/aws/amazon-freertos
null
null
null
null
2,531
null
null
mit
null
null
null
null
null
null
null
demos/cli/cli_uart_demo.c
null
null
null
null
null
null
C
2026-05-04T18:38:50.431605
/* * FreeRTOS V202203.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including ...
aws/amazon-freertos
https://github.com/aws/amazon-freertos
null
null
null
null
2,531
null
null
mit
null
null
null
null
null
null
null
demos/common/http_demo_helpers/http_demo_utils.h
null
null
null
null
null
null
C
2026-05-04T18:38:50.432784
/* * FreeRTOS V202203.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including ...
aws/amazon-freertos
https://github.com/aws/amazon-freertos
null
null
null
null
2,531
null
null
mit
null
null
null
null
null
null
null
demos/ble/gatt_server/iot_ble_gatt_server_demo.c
null
null
null
null
null
null
C
2026-05-04T18:38:50.442275
/* * FreeRTOS V202203.00 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including ...
aws/amazon-freertos
https://github.com/aws/amazon-freertos
null
null
null
null
2,531
null
null
mit
null
null
null
null
null
null
null
demos/ble/numeric_comparison/iot_ble_numericComparison.c
null
null
null
null
null
null
C
2026-05-04T18:38:50.443388
/* * FreeRTOS V202203.00 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including ...
aws/amazon-freertos
https://github.com/aws/amazon-freertos
null
null
null
null
2,531
null
null
mit
null
null
null
null
null
null
null
demos/ble/shadow_ble/shadow_demo_ble_transport.c
null
null
null
null
null
null
C
2026-05-04T18:38:50.475453
/* * FreeRTOS V202203.00 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including ...
aws/amazon-freertos
https://github.com/aws/amazon-freertos
null
null
null
null
2,531
null
null
mit
null
null
null
null
null
null
null
demos/ble/mqtt_ble/mqtt_demo_ble_transport.c
null
null
null
null
null
null
C
2026-05-04T18:38:50.486974
/* * FreeRTOS V202203.00 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including ...
aws/amazon-freertos
https://github.com/aws/amazon-freertos
null
null
null
null
2,531
null
null
mit
null
null
null
null
null
null
null
demos/common/ota_demo_helpers/ota_application_version.c
null
null
null
null
null
null
C
2026-05-04T18:38:51.234773
/* * FreeRTOS V202203.00 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including ...
aws/amazon-freertos
https://github.com/aws/amazon-freertos
null
null
null
null
2,531
null
null
mit
null
null
null
null
null
null
null
demos/common/pkcs11_helpers/pkcs11_helpers.h
null
null
null
null
null
null
C
2026-05-04T18:38:51.236609
/* * FreeRTOS V202203.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including ...
aws/amazon-freertos
https://github.com/aws/amazon-freertos
null
null
null
null
2,531
null
null
mit
null
null
null
null
null
null
null
demos/common/mqtt_subscription_manager/mqtt_subscription_manager.h
null
null
null
null
null
null
C
2026-05-04T18:38:51.239071
/* * FreeRTOS V202203.00 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including ...
aws/amazon-freertos
https://github.com/aws/amazon-freertos
null
null
null
null
2,531
null
null
mit
null
null
null
null
null
null
null
demos/common/mqtt_subscription_manager/mqtt_subscription_manager.c
null
null
null
null
null
null
C
2026-05-04T18:38:51.240017
/* * FreeRTOS V202203.00 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including ...
aws/amazon-freertos
https://github.com/aws/amazon-freertos
null
null
null
null
2,531
null
null
mit
null
null
null
null
null
null
null
demos/common/pkcs11_helpers/pkcs11_helpers.c
null
null
null
null
null
null
C
2026-05-04T18:38:51.241257
/* * FreeRTOS V202203.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including ...
aws/amazon-freertos
https://github.com/aws/amazon-freertos
null
null
null
null
2,531
null
null
mit
null
null
null
null
null
null
null
demos/coreHTTP/http_demo_mutual_auth.c
null
null
null
null
null
null
C
2026-05-04T18:38:51.242564
/* * FreeRTOS V202203.00 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including ...
aws/amazon-freertos
https://github.com/aws/amazon-freertos
null
null
null
null
2,531
null
null
mit
null
null
null
null
null
null
null
demos/coreHTTP/http_demo_s3_download.c
null
null
null
null
null
null
C
2026-05-04T18:38:51.244132
/* * FreeRTOS V202203.00 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including ...