חזרה לפיד
articlesמקור: Google Project Zero26.2.2026

צלילה עמוקה ל-API בשם GetProcessHandleFromHwnd

A Deep Dive into the GetProcessHandleFromHwnd API

$cat article.txt

>המאמר מנתח את ה-API של Windows בשם GetProcessHandleFromHwnd, שנמצא בשימוש בפרצת UAC bypass. המחבר חוקר את התיעוד הקיים, התנהגותו, ומאפייני…

◆ סיכום AI

המאמר מנתח את ה-API של Windows בשם GetProcessHandleFromHwnd, שנמצא בשימוש בפרצת UAC bypass. המחבר חוקר את התיעוד הקיים, התנהגותו, ומאפייני האבטחה שלו, ומדגים כיצד ידע מעמיק על APIs פוטנציאליים יכול לחשוף וקטורי תקיפה חדשים במערכות הפעלה.

# מהמקור

In my previous blog post I mentioned the GetProcessHandleFromHwnd API. This was an API I didn’t know existed until I found a publicly disclosed UAC bypass using the Quick Assist UI Access application. This API looked interesting so I thought I should take a closer look. I typically start by reading the documentation for an API I don’t know about, assuming it’s documented at all. It can give you an idea of how long the API has existed as well as its security properties. The documentation’s remarks contain the following three statements that I thought were interesting: If the caller has UIAccess, however, they can use a windows hook to inject code into the target process, and from within the target process, send a handle back to the caller. GetProcessHandleFromHwnd is a convenience function

#windows-security#api-analysis#uac-bypass#exploit-research
קרא במקור