opa334 / Dopamine

Dopamine is a semi-untethered jailbreak for iOS 15 and 16
MIT License
3.09k stars 1.29k forks source link

executable can not run after dopamine jailbroken #514

Closed WYK15 closed 3 months ago

WYK15 commented 3 months ago

Please help me. I have a Mach-O 64-bit executable arm64 file:SeeDaemon,it just NSLog pid. I move it to /var/jb/usr/bin on iPhone(dopamine jailbroken) and run it, but it can not run,here is output: image

But it can run succeed on iphone(checkrain jailbroken),located at /usr/bin image

is this problem related to the way jailbroken, why is that and how can i fix this

BTW, here is my executable file: SeeDaemon.zip

opa334 commented 3 months ago

This binary lacks the platform-application and unsandbox entitlements, sign it with those using Procursus ldid https://github.com/ProcursusTeam/ldid

WYK15 commented 3 months ago

This binary lacks the platform-application and unsandbox entitlements, sign it with those using Procursus ldid https://github.com/ProcursusTeam/ldid

Thanks for so quick reply, I tried, but still the same error. :( here is my entitlement:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>com.apple.security.app-sandbox</key>
    <true/>
    <key>platform-application</key>
    <true/>
</dict>
</plist>
opa334 commented 3 months ago

This binary lacks the platform-application and unsandbox entitlements, sign it with those using Procursus ldid https://github.com/ProcursusTeam/ldid

Thanks for so quick reply, I tried, but still the same error. :( here is my entitlement:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
  <key>com.apple.security.app-sandbox</key>
  <true/>
  <key>platform-application</key>
  <true/>
</dict>
</plist>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>platform-application</key>
    <true/>
    <key>com.apple.private.security.container-required</key>
    <false/>
</dict>
</plist>
WYK15 commented 3 months ago

it works , thank you so much, you made my day!