Board Archive
153 subscribers
11 photos
3 videos
197 files
42 links
The very collection of @GalaxyA14user's interests. Random yet useful to me.
Download Telegram
ExynosUnbound-R2.0-P_a14.zip
26.1 MB
ExynosUnbound R2.0
For Galaxy A145F 4G (Exynos 850)

Features & Changelog:
- Based on 5.10.189
- KSU-Next preinstalled
- SUSFs support
- Updated sdfat driver for OneUI 7
- Disabled AVB
- ext4, erofs and f2fs support for all partitions
- Disabled securities
- Overclocked CPU to 2210MHz
- rtl8xxxu wifi driver for pentesting (must apply vendor fw)

If you have problems with Enforcing, consider trying Permissive. Screenshots here.
๐Ÿ˜2๐Ÿ–•2๐Ÿ‘1
To fix this error from android shell
resetprop persist.sys.rescue_level 0
๐Ÿ‘17๐Ÿ–•3
fbpng
131.3 KB
fbpng v2.0 - Simple png displayer that directly writes images to framebuffer. Apparently it was more complicated than i thought. Of course written in C.

Changelog:
- Now ultra fast
- Multithreads row drawing
- Uses memcpy which is way better
usage: ./fbpng <img.png>
๐Ÿ‘4๐Ÿ–•3
ExynosUnbound R2.5
For Galaxy A145F 4G (Exynos 850)
Solely by Gabriel2392 ONLY.

Features & Changelog:
- Built-in hook for ${fps_position} bug on flagship FOD ports
- Overclocked CPU to 2210MHz
- Overclocked GPU to 1196MHz
- KSU-Next preinstalled with SUSFS support
- Updated sdfat driver to 2.8.1 from a33x
- ext4, erofs and f2fs support for all partitions
- Disabled AVB
- Disabled securities
- rtl8xxxu wifi driver for pentesting (must apply vendor fw)
- Based on 5.10.189

Download: message link
Screenshots: message link
Ifyou have problems with Enforcing, consider trying Permissive.
๐Ÿ‘7๐Ÿ–•5๐Ÿ—ฟ2โค1๐Ÿคก1
Installing aircrack-ng, mdk4 and reaver in a debian rootfs in Termux from scratch. A usb otg wifi adapter is required, which is defined as wlan1 here.

cd $HOME; mkdir debian; cd debian; pkg install wget openssl-tool tsu proot -y && hash -r && wget https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/Installer/Debian/debian.sh && bash debian.sh # kang anlinux script
./start-debian.sh # login to distro

apt update -y && apt upgrade -y && apt install aircrack-ng mdk4 reaver -y

exit # back to termux

Now we need to create the chroot login file,
nano run.sh and paste this code:

#!/bin/bash
[ "$EUID" -ne 0 ] && { echo "Run with sudo: sudo bash run.sh"; exit 1; }
DEBIAN_START_SCRIPT="./start-debian.sh"
DEBIAN_ROOT="./debian-fs"
BIND_MOUNTS=("/dev" "/sys" "/proc" "/sys/bus" "/sys/class" "/sys/module" "/mnt/termux" "/tmp")
[ ! -f "$DEBIAN_START_SCRIPT" ] && { echo "Error: '$DEBIAN_START_SCRIPT' not found!"; exit 1; }
[ ! -d "$DEBIAN_ROOT" ] && { echo "Error: '$DEBIAN_ROOT' not found!"; exit 1; }
for dir in "${BIND_MOUNTS[@]}"; do
CHROOT_DIR="${DEBIAN_ROOT}${dir}"
[ ! -d "$CHROOT_DIR" ] && mkdir -p "$CHROOT_DIR"
mount --bind "$dir" "$CHROOT_DIR" || echo "Warning: Failed to mount $dir to $CHROOT_DIR. Continuing..."
done
"$DEBIAN_START_SCRIPT"

Now, a simple optional automation. Writing x in terminal runs without root. Writing z runs in chroot.

echo "z() { sudo bash $HOME/debian/run.sh;}" >> $HOME/.bashrc
echo "x() { $HOME/debian/start-debian.sh;}" >> $HOME/.bashrc
. $HOME/.bashrc
๐Ÿ–•9๐Ÿคฏ4โค1๐Ÿ‘1
python.nanorc
3.7 KB
Best python syntax highlighting for nano
Located at /usr/share/nano/
๐Ÿ–•16๐Ÿ‘7โค2๐Ÿ’˜2๐Ÿ”ฅ1๐Ÿ“1
why this reaction
โค13๐Ÿ‘Ž10๐Ÿ˜ก7๐Ÿ˜จ4๐Ÿฅฐ2๐Ÿ–•2๐Ÿคฃ1๐Ÿ—ฟ1