Added some fixes

This commit is contained in:
MunyDev 2024-08-10 06:34:17 -04:00
parent af751a84b7
commit 6f6562f559
No known key found for this signature in database
GPG Key ID: 7DFBB51356064F62
3 changed files with 9 additions and 6 deletions

4
get_original_data.sh Normal file → Executable file
View File

@ -1,8 +1,8 @@
#!/bin/bash
echo This script may be removed or disabled with discretion of google.
echo This script may be removed or disabled later with discretion of google.
# Search directory for versions
HIGHESTVERSIONAPPARENTLY=$(find $HOME/.config/google-chrome/PKIMetadata/ -maxdepth 1 -mindepth 1 -type d| head -n 1)
HIGHESTVERSIONAPPARENTLY=$(find "$HOME"/.config/google-chrome/PKIMetadata/ -maxdepth 1 -mindepth 1 -type d| head -n 1)
#Let the user know what version we are on
echo "$HIGHESTVERSIONAPPARENTLY"

View File

@ -12,16 +12,19 @@ mkdir "${SCRIPT_DIR}"/out
mkdir -p "${SCRIPT_DIR}"/out/PKIMetadata/2000/.
cp -rvf "${SCRIPT_DIR}"/original/PKIMetadata/2000/. "${SCRIPT_DIR}"/out/PKIMetadata/2000
rm -rvf "${SCRIPT_DIR}"out/PKIMetadata/2000/_metadata # verified contents not necessary
rm -rvf "${SCRIPT_DIR}out/PKIMetadata/2000/"*.fingerprint
python3 ./src/root_store_gen/generate_new_pbs.py "${SCRIPT_DIR}/original/PKIMetadata/2000/crs.pb" "$@" "${SCRIPT_DIR}/out/PKIMetadata/2000/crs.pb"
# Modify version in manifest
python3 <<EOF
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/2000/manifest.json')
dat = Path.read_text(mjs)
x = json.loads(dat)
x['version'] = "2000"
print(json.dumps(x))
mjs.write_text(json.dumps(x))
EOF

View File

@ -24,7 +24,7 @@ rs.ParseFromString(buf.read())
print(rs.trust_anchors)
for ca in cas:
with open(ca, 'rb') as file:
print(f"Loading Certificate Authority {ca} into rootstore")
print(f"""Loading Certificate Authority at path "{ca}" into rootstore""")
der = file.read()
next_trust_anchor = crs_pb2.TrustAnchor()
next_trust_anchor.Clear()