{"id":20408377,"url":"https://github.com/i32-sudo/psloadedmodulelist-dkom-unlinking","last_synced_at":"2025-03-05T02:29:32.722Z","repository":{"id":243599664,"uuid":"812866705","full_name":"i32-Sudo/PsLoadedModuleList-Dkom-Unlinking","owner":"i32-Sudo","description":"PsLoadedModuleList Unlinking through DKOM Manipulation","archived":false,"fork":false,"pushed_at":"2024-06-10T03:51:06.000Z","size":5,"stargazers_count":3,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-15T13:06:59.592Z","etag":null,"topics":["dkom","eprocess","list","module","ntoskrnl","patchguard","process","psloadedmodulelist","undetected","unlinking"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/i32-Sudo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-10T03:46:59.000Z","updated_at":"2024-10-11T01:27:10.000Z","dependencies_parsed_at":"2024-06-10T04:47:11.285Z","dependency_job_id":null,"html_url":"https://github.com/i32-Sudo/PsLoadedModuleList-Dkom-Unlinking","commit_stats":null,"previous_names":["i32-sudo/psloadedmodulelist-dkom-unlinking"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/i32-Sudo%2FPsLoadedModuleList-Dkom-Unlinking","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/i32-Sudo%2FPsLoadedModuleList-Dkom-Unlinking/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/i32-Sudo%2FPsLoadedModuleList-Dkom-Unlinking/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/i32-Sudo%2FPsLoadedModuleList-Dkom-Unlinking/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/i32-Sudo","download_url":"https://codeload.github.com/i32-Sudo/PsLoadedModuleList-Dkom-Unlinking/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241953045,"owners_count":20048118,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dkom","eprocess","list","module","ntoskrnl","patchguard","process","psloadedmodulelist","undetected","unlinking"],"created_at":"2024-11-15T05:31:00.463Z","updated_at":"2025-03-05T02:29:32.699Z","avatar_url":"https://github.com/i32-Sudo.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# PsLoadedModuleList-Dkom-Unlinking\nPsLoadedModuleList Unlinking through DKOM Manipulation\n\n\n```cpp\n\nEXTERN_C\nPLIST_ENTRY PsLoadedModuleList;\n\ntypedef struct _KLDR_DATA_TABLE_ENTRY\n{\n\tLIST_ENTRY InLoadOrderLinks;\n\tPVOID ExceptionTable;\n\tULONG ExceptionTableSize;\n\t// ULONG padding on IA64\n\tPVOID GpValue;\n\t/*PNON_PAGED_DEBUG_INFO*/ PVOID NonPagedDebugInfo;\n\tPVOID DllBase;\n\tPVOID EntryPoint;\n\tULONG SizeOfImage;\n\tUNICODE_STRING FullDllName;\n\tUNICODE_STRING BaseDllName;\n\tULONG Flags;\n\tUSHORT LoadCount;\n\tUSHORT __Unused5;\n\tPVOID SectionPointer;\n\tULONG CheckSum;\n\t// ULONG padding on IA64\n\tPVOID LoadedImports;\n\tPVOID PatchInformation;\n} KLDR_DATA_TABLE_ENTRY, * PKLDR_DATA_TABLE_ENTRY;\n\nextern \"C\" void DkomUnlinking() {\n\tPKLDR_DATA_TABLE_ENTRY pSelfEntry = nullptr;\n\tauto pNext = PsLoadedModuleList-\u003eFlink;\n\tif (pNext != NULL)\n\t{\n\t\twhile (pNext != PsLoadedModuleList)\n\t\t{\n\t\t\tauto pEntry = CONTAINING_RECORD(pNext, KLDR_DATA_TABLE_ENTRY, InLoadOrderLinks);\n\n\t\t\tauto pBase = pEntry-\u003eDllBase;\n\t\t\tif (DriverObject-\u003eDriverStart == pBase)\n\t\t\t{\n\t\t\t\tpSelfEntry = pEntry;\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tpNext = pNext-\u003eFlink;\n\t\t}\n\t}\n\n\t//////////////////////////////////////////////////////////////////////////////////////////////////////////\n\n\tif (pSelfEntry)\n\t{\n\t\tKIRQL kIrql = KeRaiseIrqlToDpcLevel();\n\t\tauto pPrevEntry = (PKLDR_DATA_TABLE_ENTRY)pSelfEntry-\u003eInLoadOrderLinks.Blink;\n\t\tauto pNextEntry = (PKLDR_DATA_TABLE_ENTRY)pSelfEntry-\u003eInLoadOrderLinks.Flink;\n\t\tif (pPrevEntry)\n\t\t{\n\t\t\tpPrevEntry-\u003eInLoadOrderLinks.Flink = pSelfEntry-\u003eInLoadOrderLinks.Flink;\n\t\t}\n\t\tif (pNextEntry)\n\t\t{\n\t\t\tpNextEntry-\u003eInLoadOrderLinks.Blink = pSelfEntry-\u003eInLoadOrderLinks.Blink;\n\t\t}\n\t\tpSelfEntry-\u003eInLoadOrderLinks.Flink = (PLIST_ENTRY)pSelfEntry;\n\t\tpSelfEntry-\u003eInLoadOrderLinks.Blink = (PLIST_ENTRY)pSelfEntry;\n\t\tKeLowerIrql(kIrql);\n\t}\n\n\t//////////////////////////////////////////////////////////////////////////////////////////////////////////\n}\n```\n\n# Contact\nIf you want an actually good Kernel Level Cheat that is UD My discord is -\u003e `_ambitza`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fi32-sudo%2Fpsloadedmodulelist-dkom-unlinking","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fi32-sudo%2Fpsloadedmodulelist-dkom-unlinking","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fi32-sudo%2Fpsloadedmodulelist-dkom-unlinking/lists"}