Skip to content

Commit

Permalink
Split altCaUrl and docs / slot add2/3
Browse files Browse the repository at this point in the history
  • Loading branch information
SciLor authored and SciLor committed Mar 11, 2023
1 parent 433022a commit aadcd1d
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 11 deletions.
14 changes: 10 additions & 4 deletions sd-bootloader-ng/bootmanager/sd/revvox/boot/ngCfg.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,19 @@
"watchdog": false
},
"add2": {
"checkHash": false,
"checkHash": true,
"hashFile": false,
"watchdog": false
"watchdog": true,
"ofwFix": true,
"ofwSimBL": false,
"patches": ["altCa.305", "altUrl.305"]
},
"add3": {
"checkHash": false,
"checkHash": true,
"hashFile": false,
"watchdog": false
"watchdog": true,
"ofwFix": true,
"ofwSimBL": false,
"patches": ["altCa.305", "altUrl.305"]
}
}
12 changes: 12 additions & 0 deletions sd-bootloader-ng/bootmanager/sd/revvox/boot/patch/altCa.305.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"general": {
"_desc": "Change CA from /certs/ca.der to /certs/c2.der",
"_memPos": "",
"_fwVer": "3.0.5+"
},
"searchAndReplace": [{
"_desc": "ca.der to c2.der",
"search": ["2f", "63", "65", "72", "74", "2f", "63", "61", "2e", "64", "65", "72", "00"],
"replace": ["??", "??", "??", "??", "??", "??", "??", "32", "??", "??", "??", "??", "??"]
}]
}
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
{
"general": {
"_desc": "Changes CA from /certs/ca.der to /certs/c2.der + URLs.",
"_desc": "Changes Boxine URLs to custom ones.",
"_memPos": "",
"_fwVer": "3.0.5+"
},
"searchAndReplace": [{
"_desc": "ca.der to c2.der",
"search": ["2f", "63", "65", "72", "74", "2f", "63", "61", "2e", "64", "65", "72", "00"],
"replace": ["??", "??", "??", "??", "??", "??", "??", "32", "??", "??", "??", "??", "??"]
}, {
"_desc": "prod.de.tbs.toys to home.revvox",
"_desc": "prod.de.tbs.toys to prod.revvox",
"search": ["70", "72", "6f", "64", "2e", "64", "65", "2e", "74", "62", "73", "2e", "74", "6f", "79", "73", "00"],
"replace": ["68", "6f", "6d", "65", "2e", "72", "65", "76", "76", "6f", "78", "00", "??", "??", "??", "??", "??"]
"replace": ["70", "72", "6f", "64", "2e", "72", "65", "76", "76", "6f", "78", "00", "??", "??", "??", "??", "??"]
}, {
"_desc": "rtnl.bxcl.de to rtnl.revvox",
"search": ["72", "74", "6e", "6c", "2e", "62", "78", "63", "6c", "2e", "64", "65", "00"],
Expand Down
4 changes: 4 additions & 0 deletions wiki/OFWPatches.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ Usally the toniebox sets the file attribute hidden of the tonie file for all liv
## Additional
### Disable privacy mode ([noPrivacy.310.json](https://github.com/toniebox-reverse-engineering/hackiebox_cfw_ng/blob/master/sd-bootloader-ng/bootmanager/sd/revvox/boot/patch/noPrivacy.310.json) / [noPrivacy.305.json](https://github.com/toniebox-reverse-engineering/hackiebox_cfw_ng/blob/master/sd-bootloader-ng/bootmanager/sd/revvox/boot/patch/noPrivacy.305.json))
Usally the toniebox puts every tag into privacy mode after reading it. This patch disables that, so you can easily read the UID with any standard iso15693 reader like your phone.
### Load CA from c2.der ([altCa.305.json](https://github.com/toniebox-reverse-engineering/hackiebox_cfw_ng/blob/master/sd-bootloader-ng/bootmanager/sd/revvox/boot/patch/altCa.305.json))
To use two CAs you can use this patch. It will change the CA path from flash:/certs/ca.der to flash:/certs/c2.der
### Change Boxine URLs ([altUrl.305.json](https://github.com/toniebox-reverse-engineering/hackiebox_cfw_ng/blob/master/sd-bootloader-ng/bootmanager/sd/revvox/boot/patch/altUrl.305.json))
Changes the Boxine Cloud URLs from prod.de.tbs.toys to prod.revvox and rtnl.bxcl.de to rtnl.revvox.


## Development
Expand Down

0 comments on commit aadcd1d

Please sign in to comment.