# run the container
docker run -v ./kali:/root --privileged --cap-add=NET_ADMIN --cap-add=NET_RAW --sysctl net.ipv4.ip_forward=1 --tty --interactive kalilinux/kali-rolling
| *PPD-Adobe: "4.3" | |
| *% Adobe Systems PostScript(R) Printer Description File | |
| *% Copyright 2009-2010 Xerox Corporation. | |
| *FileVersion: "5.519.0.0" | |
| *FormatVersion: "4.3" | |
| *LanguageEncoding: ISOLatin1 | |
| *LanguageVersion: German |
| function Convert-BinaryToBase64String { | |
| [CmdletBinding()] param ( | |
| [string] $FilePath | |
| ) | |
| try { | |
| $ByteArray = [System.IO.File]::ReadAllBytes($FilePath); | |
| } | |
| catch { | |
| throw "Failed to read file. Ensure that you have permission to the file, and that the file path is correct."; |
| #!/bin/bash | |
| # Author: Shoaloak (Axel Koolhaas) 2024 | |
| # Description: Fix iOS binary entitlements/access for "Operation not permitted" | |
| ENTITLEMENT="com.apple.private.security.container-manager" | |
| binaries=("sh" "bash" "zsh" "dash" # Shell | |
| "ls" "cat" "find" "cp" "mv" # File management | |
| "rm" "mkdir" "rmdir" "touch" | |
| "file" "ln" "du" "scp" | |
| "chmod" "chown" "chgrp" # Permissions |
| # install dependencies for netifaces | |
| sudo apt install python2-dev -y | |
| # get python2 pip | |
| wget https://bootstrap.pypa.io/pip/2.7/get-pip.py | |
| sudo python2.7 get-pip.py | |
| rm get-pip.py | |
| # downgrade virtualenv to support python2.7 venvs | |
| # see https://github.com/pypa/virtualenv/releases/tag/20.22.0 - drops python2.7 support |
# download an official eflasher image from friendlyelec.com
# 01_Official_images > 02_SD-to-eMMC images > rk3568-eflasher-debian-bullseye-minimal-6.1-arm64-20250613.img.gz
firefox https://download.friendlyelec.com/NanoPiR5C
# extract the downloaded image archive
gunzip rk3568-eflasher-debian-bullseye-minimal-6.1-arm64-20250613.img.gz
# flash the image onto an sd card with minimum 8GB
sudo dd if=rk3568-eflasher-debian-bullseye-minimal-6.1-arm64-20250613.img of=/dev/sdb bs=4M status=progress