├── .gitignore ├── LICENSE ├── OriginDecrypter ├── OOAVersions │ ├── OoaSection4110126.ksy │ ├── OoaSection4110126.py │ ├── OoaSection5020162.ksy │ ├── OoaSection5020162.py │ ├── OoaSection5021592.ksy │ └── OoaSection5021592.py ├── OoaMini.ksy ├── OoaMini.py └── OoaWrapper.py ├── decryptOriginStub.py ├── images ├── cff_dump.png ├── kaitai_bf1.png ├── kaitai_bf1_fixed.png └── kaitai_jfo.png ├── ooa_section.ksy ├── ooa_section.py ├── readme.md └── sample ooa sections ├── oaa_mirrors_edge ├── ooa_bf1 ├── ooa_bf1_trial ├── ooa_bf2042_beta ├── ooa_bf4 ├── ooa_bfv ├── ooa_fifa21 ├── ooa_jedifallenorder └── ooa_madden_22 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/LICENSE -------------------------------------------------------------------------------- /OriginDecrypter/OOAVersions/OoaSection4110126.ksy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/OriginDecrypter/OOAVersions/OoaSection4110126.ksy -------------------------------------------------------------------------------- /OriginDecrypter/OOAVersions/OoaSection4110126.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/OriginDecrypter/OOAVersions/OoaSection4110126.py -------------------------------------------------------------------------------- /OriginDecrypter/OOAVersions/OoaSection5020162.ksy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/OriginDecrypter/OOAVersions/OoaSection5020162.ksy -------------------------------------------------------------------------------- /OriginDecrypter/OOAVersions/OoaSection5020162.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/OriginDecrypter/OOAVersions/OoaSection5020162.py -------------------------------------------------------------------------------- /OriginDecrypter/OOAVersions/OoaSection5021592.ksy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/OriginDecrypter/OOAVersions/OoaSection5021592.ksy -------------------------------------------------------------------------------- /OriginDecrypter/OOAVersions/OoaSection5021592.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/OriginDecrypter/OOAVersions/OoaSection5021592.py -------------------------------------------------------------------------------- /OriginDecrypter/OoaMini.ksy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/OriginDecrypter/OoaMini.ksy -------------------------------------------------------------------------------- /OriginDecrypter/OoaMini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/OriginDecrypter/OoaMini.py -------------------------------------------------------------------------------- /OriginDecrypter/OoaWrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/OriginDecrypter/OoaWrapper.py -------------------------------------------------------------------------------- /decryptOriginStub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/decryptOriginStub.py -------------------------------------------------------------------------------- /images/cff_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/images/cff_dump.png -------------------------------------------------------------------------------- /images/kaitai_bf1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/images/kaitai_bf1.png -------------------------------------------------------------------------------- /images/kaitai_bf1_fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/images/kaitai_bf1_fixed.png -------------------------------------------------------------------------------- /images/kaitai_jfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/images/kaitai_jfo.png -------------------------------------------------------------------------------- /ooa_section.ksy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/ooa_section.ksy -------------------------------------------------------------------------------- /ooa_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/ooa_section.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/readme.md -------------------------------------------------------------------------------- /sample ooa sections/oaa_mirrors_edge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/sample ooa sections/oaa_mirrors_edge -------------------------------------------------------------------------------- /sample ooa sections/ooa_bf1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/sample ooa sections/ooa_bf1 -------------------------------------------------------------------------------- /sample ooa sections/ooa_bf1_trial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/sample ooa sections/ooa_bf1_trial -------------------------------------------------------------------------------- /sample ooa sections/ooa_bf2042_beta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/sample ooa sections/ooa_bf2042_beta -------------------------------------------------------------------------------- /sample ooa sections/ooa_bf4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/sample ooa sections/ooa_bf4 -------------------------------------------------------------------------------- /sample ooa sections/ooa_bfv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/sample ooa sections/ooa_bfv -------------------------------------------------------------------------------- /sample ooa sections/ooa_fifa21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/sample ooa sections/ooa_fifa21 -------------------------------------------------------------------------------- /sample ooa sections/ooa_jedifallenorder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/sample ooa sections/ooa_jedifallenorder -------------------------------------------------------------------------------- /sample ooa sections/ooa_madden_22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/OriginStubDecrypter/HEAD/sample ooa sections/ooa_madden_22 --------------------------------------------------------------------------------