Skip to content

Instantly share code, notes, and snippets.

View adrianjagielak's full-sized avatar
🚀
Deploying stuff

Jagi ᯅ adrianjagielak

🚀
Deploying stuff
View GitHub Profile
@dhinakg
dhinakg / tutorial.md
Last active September 16, 2024 13:12
iOS/iPadOS 14.3 OTA
@makipe
makipe / main.dart
Created January 29, 2021 08:15
Convert Uint8List to Stream<List<int>>
import 'dart:typed_data';
void main() {
final testData = List.filled(1000000, 1);
final uint8List = Uint8List.fromList(testData);
final sw1 = Stopwatch()..start();
final result1 = Stream.value(
List<int>.from(uint8List),
);
@burritosoftware
burritosoftware / whyimleavingrjailbreak.md
Last active September 18, 2023 20:30
The reasons why I am leaving the r/Jailbreak Discord community, and everything that came to this.

Hello.

I'm Burrito. You may know me from making AuthKit, AppDefense, Wander, or some other projects like my jailbreak guides. I'm one of the youngest people in the jailbreak community, and probably one of the youngest tool creators. Today, I would like to share some harsh experiences I've had, and why I am leaving the community.

For starters, I should mention that my experience only applies to the r/Jailbreak Discord community. Also, I should mention that you should read everything. There is no tl;dr, and the people who actually read the entire message with a serious mind would earn lots of respect and trust from me. I know this message will surface to r/Jailbreak's Discord, in one way or another, and I know people will skim over this, and I know that many people will not agree. I also know, in the terms of the r/Jailbreak Discord, that I will get a lot of "who the **** asked" and "who cares" jokes and comments. I also strongly know that the staff of the server will mock and meme this writing I ma

@insi2304
insi2304 / static_dynamic_ios_inspection.md
Created July 10, 2020 11:12 — forked from rustymagnet3000/ios_introspection.md
Static and Dynamic iOS inspection

Static / Dynamic iOS app inspection

Get App Store encrypted iPAs

https://ipa.rocks/

Unzip the IPA file to reveal the Payload folder

unzip myApp.ipa

Check binary AppStore Encrypted
otool -l foobar | grep -i LC_ENCRYPTION -B1 -A4
Load command 12
 cmd LC_ENCRYPTION_INFO
@Siguza
Siguza / pallas.sh
Last active May 30, 2025 02:36
newstyle OTA
#!/usr/bin/env zsh
set -e;
set +m; # Job control would've been nice, but manual round robin it is, sigh.
if [ -z "${ZSH_VERSION+x}" ]; then
echo 'Try again with zsh.';
exit 1;
fi;
@wildonion
wildonion / starter
Last active June 5, 2021 06:50
VPS config
.....[copy from local to vps using ssh]
sudo scp file_name user@ip:/home/$USER/
.....[copy from vps to local using rsync excluding .git folder]
rsync -av -e ssh --exclude='.git' [email protected]:/home/cds/cds2_cockpitBackend/ /home/wildonion/Documents/cds_backend_backup
.....[jekyll installation]
https://jekyllrb.com/docs/installation/ubuntu/
@esutton
esutton / macos-installer-to-iso.sh
Last active January 12, 2023 05:25
Create macOS Catalina Bootable ISO Image
#!/bin/sh
#
# File: macos-installer-to-iso.sh
#
# Create a bootable ISO image from a macOS installer to install VMware ESXi guests.
#
# https://gist.github.com/Kutkovsky/613e29f35d3ef420b23b59ecdf7a28e0
# Debug on: set -x
set -eux
@talaviram
talaviram / add_debug_entitlement.sh
Last active May 12, 2025 11:00
Simple Utility Script for allowing debug of hardened macOS apps.
#! /bin/bash
# Simple Utility Script for allowing debug of hardened macOS apps.
# This is useful mostly for plug-in developer that would like keep developing without turning SIP off.
# Credit for idea goes to (McMartin): https://forum.juce.com/t/apple-gatekeeper-notarised-distributables/29952/57?u=ttg
# Update 2022-03-10: Based on Fabian's feedback, add capability to inject DYLD for sanitizers.
#
# Please note:
# - Modern Logic (on M1s) uses `AUHostingService` which resides within the system thus not patchable and REQUIRES to turn-off SIP.
# - Some hosts uses separate plug-in scanning or sandboxing.
# if that's the case, it's required to patch those (if needed) and attach debugger to them instead.
@theothernt
theothernt / apple-tv-screen-saver-feeds.txt
Last active June 1, 2025 18:31
A list of the feeds Apple uses for its video screensavers
tvOS 10: 1080p + H.264
http://a1.phobos.apple.com/us/r1000/000/Features/atv/AutumnResources/videos/entries.json
tvOS 11: 1080p/4K + SDR/HDR + HEVC
https://sylvan.apple.com/Aerials/2x/entries.json
https://t27q97zg19.execute-api.us-east-1.amazonaws.com/prod/aerialAltJSON/4kEntites.json
tvOS 12: 4K + SDR/HDR + HEVC, 1080p + H.264, localised descriptions
https://sylvan.apple.com/Aerials/resources.tar
@Wh1terat
Wh1terat / ztools.py
Created September 23, 2019 12:12
Z-Link Firmware Tools
#!/usr/bin/env python3
import os
import mmap
import argparse
from collections import OrderedDict
__title__ = "Z-Link Firmware Tools"
__version__ = "0.1"
__author__ = "Gareth Bryan"
__license__ = "MIT"