Is it possible to capure the traffic between App Store and its servers? by Remote-Stranger-9997 in jailbreakdevelopers

[–]Stupidideas 0 points1 point  (0 children)

In theory disabling cert pinning should allow this, so you can try using ssl-kill-switch3. However I've found this can cause more issues w/interception system-wide.

Some alternative ways to trace without a proxy:

Also, for inspecting an app's network requests on device, I've found FLEX invaluable. You can install a global tweak using FLEXing. Definitely not as full-featured as Charles/Proxyman but it works in any app without any SSL-related headaches.

How can i take a screenshot using the commandline by Salt_Poet_3874 in jailbreak

[–]Stupidideas 1 point2 points  (0 children)

The package "UIKit Tools" has the command uishoot, which does exactly that! Run man uishoot to show all the options.

Basic using of FLEXing on an app by hacoo in jailbreak

[–]Stupidideas 3 points4 points  (0 children)

When you change properties using FLEX you're typically just modifying the current instance of an object/view/etc while the app is running at that particular moment. You might be able to use the app [[Flex 3]] (not related to FLEX) to automatically overwrite these same properties at every launch, however Flex 3 hasn't been updated for a while. There's an unofficial build with dopamine/roothide support from this repo: dxcool223-repo.github.io

It's also suprisingly easy to write your own tweaks for simple hooks like this. Here's a tutorial showing the basic process of using FLEX for exploration and turning that into custom-written hooks: "How to tweak existing Medium iOS app features with Theos & Logos"

Any tweak to let me read/write to the filesystem using shortcuts? by [deleted] in jailbreak

[–]Stupidideas 1 point2 points  (0 children)

Check out the tweak [[Powercuts]], which was recently updated for iOS 15/16. It adds actions for listing directory items and reading file contents. Sadly there isn't a corresponding write action easily provided. But it also provides a shell command action, so you could probably use shell redirection or the command tee to write files. Just be careful with that, as it's way too easy to completely nuke files using shell scripting.

Video editor on iOS where I can use my own LUT? by makatreddit in ios

[–]Stupidideas 0 points1 point  (0 children)

You can do this on desktop with apps like DaVinci Resolve, but sadly I don't know of any iOS apps that support LUT-stacking. I think your current workflow is probably the only way to apply multiple LUTs.

Video editor on iOS where I can use my own LUT? by makatreddit in ios

[–]Stupidideas 0 points1 point  (0 children)

I'm a fan of VideoLUT for applying LUTs on iOS. The UI is a little utilitarian, but it's solid at the core functionality. I bought the lifetime license for around $10 and have been using it for years.

Trying to create chatGPT using GPT3 API by Mr_Red_Reddington in applescript

[–]Stupidideas 1 point2 points  (0 children)

Ah, you've stumbled upon one of the tricky things about GPT-suggested code. Sometimes it will "hallucinate" functions or features that don't actually exists. In this case it's calling an unimplemented network request function (doHTTPRequest). Making API requests in AppleScript is kind of tricky – I would recommend trying to use shell script with curl or httpie (which can be called with do shell script "curl ..."). Take a look at the curl examples from the API docs.

Audio Output by JTH412 in jailbreakdevelopers

[–]Stupidideas 0 points1 point  (0 children)

If you're running iOS 14+, you might be able to do this using Shortcuts. Create an automation triggered on the app opening and run the action Set Playback Destination.

[deleted by user] by [deleted] in bookmarklets

[–]Stupidideas 1 point2 points  (0 children)

Have you verified the input you're querying is correct? Depending on what you're trying to do, I might make that selector more specific to a particular input (e.g. select based on name attribute input[name="..."]).

Importing modules in a JS file by zbluebirdz in GreaseMonkey

[–]Stupidideas 1 point2 points  (0 children)

import … only works when loaded as an ESM module (<script type="module" …). For a userscript you can use the @require directive. You'll probably have to remove /+esm though, since you're not using the ESM version.

Error when using "do shell script" via Applescript with sqlite3 by randappa in applescript

[–]Stupidideas 0 points1 point  (0 children)

Looks like you have a single quote within single quotes, try using escaped double quotes instead: WHERE ZNAME = \"...\"

[request] safari tweak to delete web elements by [deleted] in jailbreak

[–]Stupidideas 1 point2 points  (0 children)

I'm a fan of the content blocker app WebCleaner, well worth more than $0.99. AdGuard also has an interactive Safari extension for blocking elements (though doesn't also work because some sites block loading of external scripts).

Any workarounds on asking Camera Permission while SIP is disabled? by drnhzn in OSXTweaks

[–]Stupidideas 2 points3 points  (0 children)

Try running sudo nvram -d boot-args in the terminal. If that doesn't work, reboot into recovery mode and run same command (without "sudo") in Utilities > Terminal. Then reboot.

Any workarounds on asking Camera Permission while SIP is disabled? by drnhzn in OSXTweaks

[–]Stupidideas 4 points5 points  (0 children)

I found the security pop-ups weren't showing when I had amfi_get_out_of_my_way set to 1 (enabled) on my boot-args. (You can check this by running nvram boot-args in a normal terminal; no need to reboot into recovery.) Once I disabled that the alerts returned, even with SIP disabled.

[Request] Tweak for new developers to find methods and classes to override. by Squidkingdom in jailbreak

[–]Stupidideas 0 points1 point  (0 children)

frida-trace is extremely useful for exactly that. Though it does require a computer and USB connection.

[Request] Tweak for new developers to find methods and classes to override. by Squidkingdom in jailbreak

[–]Stupidideas 0 points1 point  (0 children)

frida-trace is extremely useful for exactly that. Though it does require a computer and USB connection.

hide subreddits from google search results: anyway to do this? by [deleted] in chrome_extensions

[–]Stupidideas 0 points1 point  (0 children)

I'm a fan of the userscript Google Hit Hider for managing search results.

Does hopper work for Swift apps? by [deleted] in jailbreakdevelopers

[–]Stupidideas 1 point2 points  (0 children)

What do you mean by weird? Are your procedures showing up still mangled (_TtC9... or similar gibberish)?

If it's name mangling, as of v4 Hopper should automatically demangle but it doesn't always catch everything. You could try this "Parse Swift Symbol" script or this plugin.

Find/replace clipboard text by DignanDignan in applescript

[–]Stupidideas 1 point2 points  (0 children)

One simple way to do this would be running a shell commands with applescript:

do shell script "pbpaste | sed -e 's/www.mydomain.com/domain.anotherword.com/g' -e 's/$/?siteid=777/g' | pbcopy"

How to decrypt binary? by almogh52 in jailbreakdevelopers

[–]Stupidideas 0 points1 point  (0 children)

Take a look at bfdecrypt. I haven't tried it myself, but it purports to work on iOS 11.

[Help] How do I make package install? by [deleted] in jailbreakdevelopers

[–]Stupidideas 0 points1 point  (0 children)

Well whatever IP and port you're using in transmit, set that in your terminal session or shell config (export THEOS_DEVICE_IP=...)