Added a way to get the original data

This commit is contained in:
MunyDev 2024-08-09 11:01:18 -04:00
parent 9717fce186
commit 9f5ca9fdda
No known key found for this signature in database
GPG Key ID: 7DFBB51356064F62
2 changed files with 18 additions and 1 deletions

18
get_original_data.sh Normal file
View 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

View File

@ -21,7 +21,6 @@ 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)
dat = Path.read_text(mjs) dat = Path.read_text(mjs)
print(dat)
x = json.loads(dat) x = json.loads(dat)
x['version'] = "2000" x['version'] = "2000"
mjs.write_text(json.dumps(x)) mjs.write_text(json.dumps(x))