Jump to content
11 posts in this topic

Recommended Posts

  • 1 year later...
Workflow:

- chmod -R 755 test/Apple*
- chown -R root:wheel test/Apple*
- move the files to /L/E
- delete /Library/KernelCollections/AuxiliaryKernelExtensions.kc
- redo chown -R root:wheel /Library/Extensions/Apple*
- sudo kextcache -i /
(if System asks you permissions, just allow and restart before to test)

(maybe necessary this below also)

sudo kmutil load -p /Library/Extensions/AppleIntelTGLGraphics.kext 2>&1
sudo kextcache -i /

- and - important - also set IOPCIPrimaryMatch in kexts to probe your device-id
Edited by Stezza88
  • Like 1
  • 2 weeks later...
  • 3 weeks later...
Posted (edited)

For who wanna have fun with strip down code signature, some infos about (or maybe because system isn't asking him permissions)

 

FB examples

# 1. Rename bundle ID
sudo sed -i '' 's|com\.apple\.driver\.AppleIntelTGLGraphicsFramebuffer|com.xxxxx.driver.AppleIntelTGLGraphicsFramebuffer|g' ~/Downloads/sle_Internal/sle/AppleIntelTGLGraphicsFramebuffer.kext/Contents/Info.plist

# 2. Remove OSBundleRequired
sudo /usr/libexec/PlistBuddy -c "Delete :OSBundleRequired" ~/Downloads/sle_Internal/sle/AppleIntelTGLGraphicsFramebuffer.kext/Contents/Info.plist

# 3. Remove kpi.private
sudo /usr/libexec/PlistBuddy -c "Delete :OSBundleLibraries:com.apple.kpi.private" ~/Downloads/sle_Internal/sle/AppleIntelTGLGraphicsFramebuffer.kext/Contents/Info.plist

# 4. Remove _CodeSignature
sudo rm -rf ~/Downloads/sle_Internal/sle/AppleIntelTGLGraphicsFramebuffer.kext/Contents/_CodeSignature

# 5. Add HookCase dep — THIS is what triggers the macOS permission prompt
sudo /usr/libexec/PlistBuddy -c "Add :OSBundleLibraries:org.smichaud.HookCase string 1.0" ~/Downloads/sle_Internal/sle/AppleIntelTGLGraphicsFramebuffer.kext/Contents/Info.plist

GFX examples

rm -rf AppleIntelTGLGraphics.kext/Contents/_CodeSignature

sudo /usr/libexec/PlistBuddy -c "Add :OSBundleLibraries:org.smichaud.HookCase string 1.0" AppleIntelTGLGraphics.kext/Contents/Info.plist

sudo sed -i '' 's|com\.apple\.driver\.AppleIntelTGLGraphics|com.xxxxx.driver.AppleIntelTGLGraphics|g' ~/Downloads/sle_Internal/sle/AppleIntelTGLGraphics.kext/Contents/Info.plist

 

On 5/16/2026 at 11:48 PM, jalavoui said:

project files in github https://github.com/macintelk/drm

 

Big up for big jala

Edited by Stezza88
  • Like 1
×
×
  • Create New...