Can it be true?

This commit is contained in:
platinumstufff
2025-03-23 01:12:14 +03:00
committed by GitHub
parent ce505809be
commit 7f84ee709a
16 changed files with 92844 additions and 0 deletions

BIN
resources/bruteforce Normal file

Binary file not shown.

14
resources/dd_ent.plist Normal file
View File

@@ -0,0 +1,14 @@
<?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.no-container</key>
<true/>
<key>com.apple.skip-library-validation</key>
<true/>
<key>com.apple.private.security.disk-device-access</key>
<true/>
</dict>
</plist>

BIN
resources/device_infos Normal file

Binary file not shown.

49
resources/dropbear.plist Normal file
View File

@@ -0,0 +1,49 @@
<?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>Label</key>
<string>dropbear</string>
<key>Program</key>
<string>/usr/local/bin/dropbear</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/bin/dropbear</string>
<string>-i</string>
<string>--shell</string>
<string>/bin/bash</string>
<string>-r</string>
<string>/private/var/dropbear_rsa_host_key</string>
</array>
<key>SessionCreate</key>
<true/>
<key>Sockets</key>
<dict>
<key>DropbearV4Listener</key>
<dict>
<key>SockFamily</key>
<string>IPv4</string>
<key>SockNodeName</key>
<string>127.0.0.1</string>
<key>SockServiceName</key>
<string>22</string>
</dict>
<key>DropbearV6Listener</key>
<dict>
<key>SockFamily</key>
<string>IPv6</string>
<key>SockNodeName</key>
<string>::1</string>
<key>SockServiceName</key>
<string>22</string>
</dict>
</dict>
<key>StandardErrorPath</key>
<string>/dev/null</string>
<key>inetdCompatibility</key>
<dict>
<key>Wait</key>
<false/>
</dict>
</dict>
</plist>

91930
resources/firmware.json Normal file

File diff suppressed because it is too large Load Diff

BIN
resources/restored_external Normal file

Binary file not shown.

44
resources/setup.sh Normal file
View File

@@ -0,0 +1,44 @@
#!/bin/bash
echo "32-bit Bruteforce SSH Ramdisk by meowcat454,AJAIZ and platinumstuff"
echo "--------------------------------"
echo "RAMDISK SETUP: STARTING" > /dev/console
# remount r/w
echo "RAMDISK SETUP: REMOUNTING ROOTFS" > /dev/console
mount -o rw,union,update /
# free space
#rm /usr/local/standalone/firmware/*
#rm /usr/standalone/firmware/*
#mv /sbin/reboot /sbin/reboot_bak
# Fix the auto-boot
echo "RAMDISK SETUP: SETTING AUTOBOOT" > /dev/console
nvram auto-boot=1
# Start SSHD
echo "RAMDISK SETUP: STARTING SSHD" > /dev/console
/sbin/sshd
# Run restored_external
echo "RAMDISK SETUP: COMPLETE" > /dev/console
/usr/local/bin/restored_external.sshrd > /dev/console
echo "Mounting Partitions..." > /dev/console
/bin/mount.sh > /dev/console
echo "Starting bruteforce..." > /dev/console
/usr/bin/bruteforce > /dev/console
echo "Fixing disabled"
cd /mnt2/mobile/Library/Preferences/ > /mnt1/private/etc/antilock.txt
for file in com.apple.springboard.plist.???????; do
if [ -f "$file" ]; then
rm "$file"
echo "Deleted: $file"
fi
done
mv /mnt2/mobile/Library/Preferences/com.apple.springboard.plist /mnt2/mobile/Library/Preferences/com.apple.springboard.plist.bak
rm /mnt2/mobile/Library/Preferences/com.apple.springboard.plist > /dev/null
rm /mnt2/mobile/Library/SpringBoard/LockoutStateJournal.plist > /dev/null

BIN
resources/ssh.tar.gz Normal file

Binary file not shown.