Added a way to get the original data
This commit is contained in:
parent
9717fce186
commit
9f5ca9fdda
18
get_original_data.sh
Normal file
18
get_original_data.sh
Normal file
@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
echo This script may be removed or disabled with discretion of google.
|
||||
|
||||
# Search directory for versions
|
||||
HIGHESTVERSIONAPPARENTLY=$(find $HOME/.config/google-chrome/PKIMetadata/ -maxdepth 1 -mindepth 1 -type d| head -n 1)
|
||||
|
||||
# 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)
|
||||
cp -rvf $HIGHESTVERSIONAPPARENTLY/. original/PKIMetadata/2000
|
||||
|
||||
#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
|
@ -21,7 +21,6 @@ from pathlib import Path
|
||||
mjs = '${SCRIPT_DIR}/original/PKIMetadata/2000/manifest.json'
|
||||
mjs = Path(mjs)
|
||||
dat = Path.read_text(mjs)
|
||||
print(dat)
|
||||
x = json.loads(dat)
|
||||
x['version'] = "2000"
|
||||
mjs.write_text(json.dumps(x))
|
||||
|
Loading…
x
Reference in New Issue
Block a user