Added some fixes
This commit is contained in:
parent
af751a84b7
commit
6f6562f559
4
get_original_data.sh
Normal file → Executable file
4
get_original_data.sh
Normal file → Executable file
@ -1,8 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/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
|
# 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
|
#Let the user know what version we are on
|
||||||
echo "$HIGHESTVERSIONAPPARENTLY"
|
echo "$HIGHESTVERSIONAPPARENTLY"
|
||||||
|
@ -12,16 +12,19 @@ mkdir "${SCRIPT_DIR}"/out
|
|||||||
mkdir -p "${SCRIPT_DIR}"/out/PKIMetadata/2000/.
|
mkdir -p "${SCRIPT_DIR}"/out/PKIMetadata/2000/.
|
||||||
cp -rvf "${SCRIPT_DIR}"/original/PKIMetadata/2000/. "${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/_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"
|
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
|
# Modify version in manifest
|
||||||
|
|
||||||
python3 <<EOF
|
python3 <<EOF # Set version in manifest
|
||||||
import json
|
import json
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
mjs = '${SCRIPT_DIR}/original/PKIMetadata/2000/manifest.json'
|
mjs = '${SCRIPT_DIR}/original/PKIMetadata/2000/manifest.json'
|
||||||
mjs = Path(mjs)
|
mjs = Path(mjs)
|
||||||
|
newfile = Path('${SCRIPT_DIR}/out/PKIMetadata/2000/manifest.json')
|
||||||
dat = Path.read_text(mjs)
|
dat = Path.read_text(mjs)
|
||||||
x = json.loads(dat)
|
x = json.loads(dat)
|
||||||
x['version'] = "2000"
|
x['version'] = "2000"
|
||||||
|
print(json.dumps(x))
|
||||||
mjs.write_text(json.dumps(x))
|
mjs.write_text(json.dumps(x))
|
||||||
EOF
|
EOF
|
@ -24,7 +24,7 @@ rs.ParseFromString(buf.read())
|
|||||||
print(rs.trust_anchors)
|
print(rs.trust_anchors)
|
||||||
for ca in cas:
|
for ca in cas:
|
||||||
with open(ca, 'rb') as file:
|
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()
|
der = file.read()
|
||||||
next_trust_anchor = crs_pb2.TrustAnchor()
|
next_trust_anchor = crs_pb2.TrustAnchor()
|
||||||
next_trust_anchor.Clear()
|
next_trust_anchor.Clear()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user