UNFINISHED COMMIT! A LOT OF CHANGES I DONT WANT TO DESCRIBE

This commit is contained in:
kxtzownsu 2025-03-08 03:49:35 +00:00
parent 84e664cf03
commit 2427f48f99
13 changed files with 87 additions and 97 deletions

5
.gitmodules vendored
View File

@ -1,4 +1,9 @@
[submodule "httpmitm"] [submodule "httpmitm"]
path = httpmitm path = httpmitm
url = https://git.kxtz.dev/kxtzownsu/Icarus-Lite.git
branch = main
[submodule "httpmitm-old"]
path = httpmitm-old
url = https://git.kxtz.dev/kxtzownsu/httpmitm.git url = https://git.kxtz.dev/kxtzownsu/httpmitm.git
branch = main branch = main

View File

@ -1,28 +1,27 @@
setup-venv: venv:
python3 -m venv .venv bash venv.sh
bash setup_venv.sh
exit
enter-venv:
bash enter_venv.sh
setup-python: setup-python:
mkdir -p gen/python mkdir -p gen/python
protoc --python_out=gen/python crs.proto protoc --python_out=gen/python proto/crs.proto
protoc --python_out=gen/python pins.proto protoc --python_out=gen/python proto/pins.proto
protoc --python_out=gen/python ct.proto protoc --python_out=gen/python cproto/t.proto
cp gen/python/crs_pb2.py src/root_store_gen cp gen/python/crs_pb2.py src/root_store_gen
cp gen/python/pins_pb2.py src/root_store_gen cp gen/python/pins_pb2.py src/root_store_gen
cp gen/python/ct_pb2.py src/root_store_gen cp gen/python/ct_pb2.py src/root_store_gen
exit exit
build-packed-data: build-packed-data:
mkdir -p out/PKIMetadata mkdir -p out/PKIMetadata
make setup-venv make venv
make setup-python make setup-python
clean: clean:
rm -rf out/ rm -rf out/
start-server: start-httpmitm
start-httpmitm: start-server:
cd httpmitm; bash start-proxy.sh bash -c "while tmux has-session -t icarus; do tmux kill-session -t icarus; done"
echo "set -g mouse on" > ~/.tmux.conf
start-dmbackend: tmux new -d -s icarus "cd httpmitm; bash start_proxy.sh"
bash httpmitm/dmbackend/start_server.sh tmux splitw -t icarus -h "cd httpmitm/dmbackend; bash start_server.sh"
tmux a -t icarus

View File

@ -12,15 +12,13 @@ Clone the repo with ``git clone --recursive https://git.kxtz.dev/kxtzownsu/icaru
Set up the environment by running the following commands (Make sure you have python3, python3-venv, and protobuf installed beforehand): Set up the environment by running the following commands (Make sure you have python3, python3-venv, and protobuf installed beforehand):
- `make setup-venv` - `make venv`
- `make enter-venv`
- `make setup-python`
- `make build-packed-data` - `make build-packed-data`
- `make ca-keys`
Before continuing, open Chrome on your build machine and go to chrome://components. Press CTRL + F and search for "PKIMetadata". Once you find it, press "Check for Updates". Make sure it says up-to-date before continuing (and that the version is below 2000.) Before continuing, open Chrome on your build machine and go to chrome://components. Press CTRL + F and search for "PKIMetadata". Once you find it, press "Check for Updates". Make sure it says up-to-date before continuing (and that the version is below 9999.)
- `bash get_original_data.sh` - `bash create_out.sh myCA.der`
- `bash make_out.sh myCA.der`
After doing this the output directory (from here on reffered to as PKIMetadata) will be generated, which is the custom Certificate Authority. After doing this the output directory (from here on reffered to as PKIMetadata) will be generated, which is the custom Certificate Authority.
@ -58,12 +56,6 @@ Reboot the device. You'll boot into verified mode. Once you have your server run
- If that didn't work, powerwash your device and re-run the modified shim, and keep the server running. - If that didn't work, powerwash your device and re-run the modified shim, and keep the server running.
</details> </details>
<details>
<summary>make_out.sh is prompting me for a password!</summary>
The password is 'icarus' without quotes.
</details>
## New Credits ## New Credits
- [kxtzownsu](https://github.com/kxtzownsu) - rolling ssl keys, maintaining this fork :D - [kxtzownsu](https://github.com/kxtzownsu) - rolling ssl keys, maintaining this fork :D

View File

@ -1,36 +0,0 @@
#!/bin/bash
echo This script may be removed or disabled later with discretion of google.
echo "using chrome ${CHROME:="google-chrome"}"
if [ ! -d "$HOME/.config/$CHROME/PKIMetadata" ]
then
"$CHROME" chrome://components &> /dev/null &
exit 0
fi
# Search directory for versions
HIGHESTVERSIONAPPARENTLY=$(find "$HOME/.config/$CHROME/PKIMetadata/" -maxdepth 1 -mindepth 1 -type d| head -n 1)
if [ -z ${HIGHESTVERSIONAPPARENTLY} ]; then
echo "Failed to find PKIMetadata directory"
exit 1
fi
#Let the user know what version we are on
echo "$HIGHESTVERSIONAPPARENTLY"
# Prepare output directory (version is 2000 for now. Don't ask why)
mkdir -p original/PKIMetadata/2000
#Copy latest version as base (idk if this is reliable)
if [ "$HIGHESTVERSIONAPPARENTLY" != "" ]; then
cp -rvf "$HIGHESTVERSIONAPPARENTLY"/. original/PKIMetadata/2000
else
echo "Variable HIGHESTVERSIONAPPARENTLY returned empty, failing."
exit 1
fi
#Remove metadata and fingerprint(just sha256 of manifest) to be accepted
rm -rvf original/PKIMetadata/2000/_metadata
rm -rvf original/PKIMetadata/2000/manifest.fingerprint
#end of script

1
httpmitm-old Submodule

@ -0,0 +1 @@
Subproject commit 81119bef0c029d9bbde827acb1022f8434cec829

View File

@ -1,30 +0,0 @@
#!/bin/bash
mkdir -p out/PKIMetadata/
SCRIPT_DIR=$(dirname $0)
if [ $# -lt 1 ]
then
echo "Usage: <root certificates...>"
exit 1
fi
# Copy all directories, and will be modified by future calls
rm -rvf "${SCRIPT_DIR}"/out
mkdir "${SCRIPT_DIR}"/out
mkdir -p "${SCRIPT_DIR}"/out/PKIMetadata/.
cp -rvf "${SCRIPT_DIR}"/original/PKIMetadata/2000/. "${SCRIPT_DIR}"/out/PKIMetadata
rm -rvf "${SCRIPT_DIR}"/out/PKIMetadata/_metadata # verified contents not necessary
rm -rvf "${SCRIPT_DIR}out/PKIMetadata/"*.fingerprint
python3 ./src/root_store_gen/generate_new_pbs.py "${SCRIPT_DIR}/original/PKIMetadata/2000/crs.pb" "$@" "${SCRIPT_DIR}/out/PKIMetadata/crs.pb"
# Modify version in manifest
python3 <<EOF # Set version in manifest
import json
from pathlib import Path
mjs = '${SCRIPT_DIR}/original/PKIMetadata/2000/manifest.json'
mjs = Path(mjs)
newfile = Path('${SCRIPT_DIR}/out/PKIMetadata/manifest.json')
dat = Path.read_text(mjs)
x = json.loads(dat)
x['version'] = "2000"
print(json.dumps(x))
newfile.write_text(json.dumps(x))
EOF

61
scripts/create_out.sh Executable file
View File

@ -0,0 +1,61 @@
#!/bin/bash
SCRIPT_DIR=$(dirname $0)
mkdir -p out/PKIMetadata/
if [ $# -lt 1 ]
then
echo "Usage: $0 <root certificates...>"
exit 1
fi
for file in "$@"; do
if [ ! -f "$file" ]; then
echo "$file missing!"
exit 1
fi
done
echo "using chrome ${CHROME:="google-chrome"}"
if [ ! -d "$HOME/.config/$CHROME/PKIMetadata" ]
then
echo "Opened chrome automatically, make sure you follow the README!"
"$CHROME" chrome://components &> /dev/null &
exit 0
fi
HIGHESTVERSIONAPPARENTLY=$(find "$HOME/.config/$CHROME/PKIMetadata/" -maxdepth 1 -mindepth 1 -type d| head -n 1)
if [ -z ${HIGHESTVERSIONAPPARENTLY} ]; then
echo "Failed to find PKIMetadata directory"
exit 1
fi
mkdir -p original/PKIMetadata/9999
if [ "$HIGHESTVERSIONAPPARENTLY" != "" ]; then
cp -rvf "$HIGHESTVERSIONAPPARENTLY"/. original/PKIMetadata/9999
else
echo "Variable HIGHESTVERSIONAPPARENTLY returned empty, failing."
exit 1
fi
rm -rvf original/PKIMetadata/9999/_metadata
rm -rvf original/PKIMetadata/9999/manifest.fingerprint
# Copy all directories, and will be modified by future calls
rm -rvf "${SCRIPT_DIR}"/out
mkdir "${SCRIPT_DIR}"/out
mkdir -p "${SCRIPT_DIR}"/out/PKIMetadata/.
cp -rvf "${SCRIPT_DIR}"/original/PKIMetadata/9999/. "${SCRIPT_DIR}"/out/PKIMetadata
rm -rvf "${SCRIPT_DIR}"/out/PKIMetadata/_metadata # verified contents not necessary
rm -rvf "${SCRIPT_DIR}out/PKIMetadata/"*.fingerprint
python3 ./src/root_store_gen/generate_new_pbs.py "${SCRIPT_DIR}/original/PKIMetadata/9999/crs.pb" "$@" "${SCRIPT_DIR}/out/PKIMetadata/crs.pb"
# Modify version in manifest
python3 <<EOF # Set version in manifest
import json
from pathlib import Path
mjs = '${SCRIPT_DIR}/original/PKIMetadata/9999/manifest.json'
mjs = Path(mjs)
newfile = Path('${SCRIPT_DIR}/out/PKIMetadata/manifest.json')
dat = Path.read_text(mjs)
x = json.loads(dat)
x['version'] = "9999"
print(json.dumps(x))
newfile.write_text(json.dumps(x))
EOF

View File

@ -1,3 +1,4 @@
#!/bin/bash #!/bin/bash
source ./.venv/bin/activate source ./.venv/bin/activate
pip3 install protobuf
bash bash

View File

@ -1,3 +0,0 @@
#!/bin/bash
source ./.venv/bin/activate
pip3 install protobuf