From d8f44423b57335c288a279d7c4f9ce163ff5a4cf Mon Sep 17 00:00:00 2001 From: kxtzownsu Date: Sun, 9 Mar 2025 16:25:29 -0400 Subject: [PATCH 1/7] fix venv.sh --- scripts/venv.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/venv.sh b/scripts/venv.sh index b74382c..b566492 100644 --- a/scripts/venv.sh +++ b/scripts/venv.sh @@ -3,6 +3,6 @@ SCRIPT_DIR=$(readlink -f "$(dirname "$0")") if [ ! -e "${SCRIPT_DIR}/../.venv" ]; then python3 -m venv ${SCRIPT_DIR}/../.venv fi -source ${SCRIPT_DIR}/.venv/bin/activate +source ${SCRIPT_DIR}/../.venv/bin/activate pip3 install protobuf -bash \ No newline at end of file +bash From e98d6a6eb693e5261d98583570b24e6cdbf2690e Mon Sep 17 00:00:00 2001 From: kxtzownsu Date: Sun, 9 Mar 2025 16:28:04 -0400 Subject: [PATCH 2/7] fix venv and setup-python --- Makefile | 1 - scripts/venv.sh | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e7fbeff..a7369bc 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,6 @@ setup-python: build-packed-data: mkdir -p out/PKIMetadata make venv - make setup-python ca-keys: cd httpmitm; bash generate_certs.sh diff --git a/scripts/venv.sh b/scripts/venv.sh index b566492..06750f3 100644 --- a/scripts/venv.sh +++ b/scripts/venv.sh @@ -5,4 +5,5 @@ if [ ! -e "${SCRIPT_DIR}/../.venv" ]; then fi source ${SCRIPT_DIR}/../.venv/bin/activate pip3 install protobuf +make setup-python bash From b87787bf7c65d7e067d7172c6b2d43437fc11081 Mon Sep 17 00:00:00 2001 From: kxtzownsu Date: Sun, 9 Mar 2025 17:34:19 -0400 Subject: [PATCH 3/7] remove 5s timeout --- modify.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/modify.sh b/modify.sh index 897c669..7d51b10 100644 --- a/modify.sh +++ b/modify.sh @@ -74,7 +74,6 @@ echo "Script Developer: jeffplays1292@gmail.com" echo "This tool will modify your shim. There is a chance this tool will render it useless. This tool is in BETA. DO NOT SHARE THIS TOOL! " echo "It is recommended to make a backup of your shim before continuing (Press ctrl-c in 5 seconds to stop this tool and make a backup)" -sleep 5 losetup -fP "$1" echo "Using loop dev at $LOOP_DEV" From 0276fe10da4db01405358ec2f445512d6d1d7ccf Mon Sep 17 00:00:00 2001 From: kxtzownsu Date: Mon, 10 Mar 2025 13:50:05 -0400 Subject: [PATCH 4/7] damn it writable (1/2) Signed-off-by: kxtzownsu --- modify.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modify.sh b/modify.sh index 7d51b10..eb4d91e 100644 --- a/modify.sh +++ b/modify.sh @@ -90,6 +90,8 @@ cp "$SCRIPT_DIR/scripts/inshim.sh" "$MOUNT_DIR/usr/sbin/factory_install.sh" chmod +x "$MOUNT_DIR/usr/sbin/factory_install.sh" umount "$MOUNT_DIR" +e2label "$LOOP_DEV"p3 ICARUS + losetup -D sync sync From b4537d91febd6ee45bcc7cc935861758b0d9ccfa Mon Sep 17 00:00:00 2001 From: kxtzownsu Date: Mon, 10 Mar 2025 13:50:28 -0400 Subject: [PATCH 5/7] damn it writable (2/2) Signed-off-by: kxtzownsu --- scripts/inshim.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/inshim.sh b/scripts/inshim.sh index 0325761..eb7fb53 100644 --- a/scripts/inshim.sh +++ b/scripts/inshim.sh @@ -33,7 +33,7 @@ format_part_number() { echo "$2" } -mount /dev/disk/by-label/STATE /mnt/stateful_partition/ +mount /dev/disk/by-label/ICARUS /mnt/stateful_partition/ cros_dev="$(get_largest_cros_blockdev)" if [ -z "$cros_dev" ]; then echo "No CrOS SSD found on device. Failing." From b556e58b3881e9e00497bafd5552d0a060510dd4 Mon Sep 17 00:00:00 2001 From: kxtzownsu Date: Mon, 10 Mar 2025 13:51:02 -0400 Subject: [PATCH 6/7] typo Signed-off-by: kxtzownsu --- modify.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modify.sh b/modify.sh index eb4d91e..10092c4 100644 --- a/modify.sh +++ b/modify.sh @@ -90,7 +90,7 @@ cp "$SCRIPT_DIR/scripts/inshim.sh" "$MOUNT_DIR/usr/sbin/factory_install.sh" chmod +x "$MOUNT_DIR/usr/sbin/factory_install.sh" umount "$MOUNT_DIR" -e2label "$LOOP_DEV"p3 ICARUS +e2label "$LOOP_DEV"p1 ICARUS losetup -D sync From 90d1292cf348e3f741ed46d4920675b401b199da Mon Sep 17 00:00:00 2001 From: kxtzownsu Date: Mon, 10 Mar 2025 14:02:10 -0400 Subject: [PATCH 7/7] typo lol Signed-off-by: kxtzownsu --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 18f8183..0cf877b 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ An exploit for Chrome devices which allows people to unenroll devices with devic --> ## Setup and installation instructions -Clone the repo with ``git clone --recursive https://git.kxtz.dev/kxtzownsu/icarus/` and change directory to it. +Clone the repo with `git clone --recursive https://git.kxtz.dev/kxtzownsu/icarus/` and change directory to it. Set up the environment by running the following commands (Make sure you have python3, python3-venv, and protobuf installed beforehand):