-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 091d880
Showing
18 changed files
with
22,847 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
# Created by .ignore support plugin (hsz.mobi) | ||
### Python template | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
.Python | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
wheels/ | ||
share/python-wheels/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
MANIFEST | ||
|
||
# PyInstaller | ||
# Usually these files are written by a python script from a template | ||
# before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
*.manifest | ||
*.spec | ||
|
||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.nox/ | ||
.coverage | ||
.coverage.* | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
*.cover | ||
*.py,cover | ||
.hypothesis/ | ||
.pytest_cache/ | ||
cover/ | ||
|
||
# Translations | ||
*.mo | ||
*.pot | ||
|
||
# Django stuff: | ||
*.log | ||
local_settings.py | ||
db.sqlite3 | ||
db.sqlite3-journal | ||
|
||
# Flask stuff: | ||
instance/ | ||
.webassets-cache | ||
|
||
# Scrapy stuff: | ||
.scrapy | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
|
||
# PyBuilder | ||
.pybuilder/ | ||
target/ | ||
|
||
# Jupyter Notebook | ||
.ipynb_checkpoints | ||
|
||
# IPython | ||
profile_default/ | ||
ipython_config.py | ||
|
||
# pyenv | ||
# For a library or package, you might want to ignore these files since the code is | ||
# intended to run in multiple environments; otherwise, check them in: | ||
# .python-version | ||
|
||
# pipenv | ||
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. | ||
# However, in case of collaboration, if having platform-specific dependencies or dependencies | ||
# having no cross-platform support, pipenv may install dependencies that don't work, or not | ||
# install all needed dependencies. | ||
#Pipfile.lock | ||
|
||
# PEP 582; used by e.g. github.com/David-OConnor/pyflow | ||
__pypackages__/ | ||
|
||
# Celery stuff | ||
celerybeat-schedule | ||
celerybeat.pid | ||
|
||
# SageMath parsed files | ||
*.sage.py | ||
|
||
# Environments | ||
.env | ||
.venv | ||
env/ | ||
venv/ | ||
ENV/ | ||
env.bak/ | ||
venv.bak/ | ||
|
||
# Spyder project settings | ||
.spyderproject | ||
.spyproject | ||
|
||
# Rope project settings | ||
.ropeproject | ||
|
||
# mkdocs documentation | ||
/site | ||
|
||
# mypy | ||
.mypy_cache/ | ||
.dmypy.json | ||
dmypy.json | ||
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
# pytype static type analyzer | ||
.pytype/ | ||
|
||
# Cython debug symbols | ||
cython_debug/ | ||
|
||
.idea/ | ||
.DS_Store | ||
|
||
!src/ssl/.gitkeep | ||
src/ssl/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,178 @@ | ||
## Toneprint Server | ||
|
||
If you are a user of the TC Electronic toneprint series of effects pedals you know about how versatile they are. | ||
|
||
And with the Toneprint editor they are even more, with this software you can edit a lot of hidden settings of the pedals. | ||
|
||
There is only one limitation, you can only edit the template toneprints. And not the artists toneprints. | ||
|
||
This will allow that. | ||
|
||
### Why? | ||
|
||
The toneprints data is stored in an encrypted sqlite (```~/Library/Application Support/TonePrint/databaseV1.sqlite3```) | ||
|
||
That database is populated with the content of this 6 XML files located in ```~/Library/Application Support/TonePrint/XML``` | ||
|
||
- artists.xml | ||
- effects.xml | ||
- products.xml | ||
- producttypes.xml | ||
- selecttypes.xml | ||
- toneprints.xml | ||
|
||
In older versions of the software I believe you can just edit the xml and that lead to the modification of the databse. | ||
|
||
But now it will download them from the cloud and only then it will update de database. So modify them has no effect. | ||
|
||
So I came with this solution after tried to find how to decrypt the database with a debugger (I came very close, but I gave up). | ||
|
||
Without direct access to the database our only possibility is to feed modified xmls to the app, so I have created a fake server. | ||
|
||
### How it works? | ||
|
||
This will create a fake server so the app thinks it is connected to the tcelectronic server and download the modified xmls. | ||
With the modified files it will update the database. | ||
|
||
The change is very simple, you just need to change the ```CanBeEdited``` value of the artist to ```True``` | ||
|
||
And you will be allowed to edit every toneprint. | ||
|
||
### How to use it? | ||
|
||
In order to this to work you will need to do 2 thins before | ||
|
||
1. You will need to redirect the domain ```tp.tcelectronic.com``` to localhost in the ```/etc/hosts``` | ||
2. You will need to create a selfsigned certificate for that domain, put the files in the ```ssl``` folder and install the ```cert.pem``` (be sure to select to trust it). | ||
|
||
Example how to create it, just be sure to enter ```tp.tcelectronic.com``` as the common name. | ||
``` | ||
openssl req -x509 -newkey rsa:4096 -nodes -out cert.pem -keyout key.pem -days 365 | ||
``` | ||
|
||
Now with the traffic redirected to localhost and the certificate installed you are ready to start the server. | ||
|
||
***Because it needs to listen on the port 443 you will need to run it as root, or you can use nginx or some webserver but it's a lot of work just to do this.*** | ||
|
||
``` | ||
sudo ./app.py | ||
``` | ||
|
||
If every thins is ok you will see this when the app connects and download the files | ||
|
||
``` | ||
-------------------------------- | ||
Headers: Host: tp.tcelectronic.com | ||
Content-Type: text/xml; charset=utf-8 | ||
Connection: keep-alive | ||
Soapaction: "http://tempuri.org/ITonePrintService/GetVersionsAndInfo" | ||
Accept: */* | ||
Accept-Language: es-xl | ||
Content-Length: 176 | ||
Accept-Encoding: br, gzip, deflate | ||
User-Agent: TonePrint/4.2.0 CFNetwork/902.6 Darwin/17.7.0 (x86_64) | ||
Action: GetVersionsAndInfo | ||
File: xml/GetVersionsAndInfoResponse.xml for action: GetVersionsAndInfo | ||
127.0.0.1 - - [06/Jun/2021 12:24:33] "POST /TonePrintService.svc HTTP/1.1" 200 - | ||
-------------------------------- | ||
Headers: Host: tp.tcelectronic.com | ||
Content-Type: text/xml; charset=utf-8 | ||
Connection: keep-alive | ||
Soapaction: "http://tempuri.org/ITonePrintService/GetAllToneprintsFullBeta" | ||
Accept: */* | ||
Accept-Language: es-xl | ||
Content-Length: 212 | ||
Accept-Encoding: br, gzip, deflate | ||
User-Agent: TonePrint/4.2.0 CFNetwork/902.6 Darwin/17.7.0 (x86_64) | ||
Action: GetAllToneprintsFullBeta | ||
File: xml/toneprints.xml for action: GetAllToneprintsFullBeta | ||
127.0.0.1 - - [06/Jun/2021 12:24:33] "POST /TonePrintService.svc HTTP/1.1" 200 - | ||
-------------------------------- | ||
Headers: Host: tp.tcelectronic.com | ||
Content-Type: text/xml; charset=utf-8 | ||
Connection: keep-alive | ||
Soapaction: "http://tempuri.org/ITonePrintService/GetAllArtistsFullBeta" | ||
Accept: */* | ||
Accept-Language: es-xl | ||
Content-Length: 206 | ||
Accept-Encoding: br, gzip, deflate | ||
User-Agent: TonePrint/4.2.0 CFNetwork/902.6 Darwin/17.7.0 (x86_64) | ||
Action: GetAllArtistsFullBeta | ||
File: xml/artists.xml for action: GetAllArtistsFullBeta | ||
127.0.0.1 - - [06/Jun/2021 12:24:34] "POST /TonePrintService.svc HTTP/1.1" 200 - | ||
-------------------------------- | ||
Headers: Host: tp.tcelectronic.com | ||
Content-Type: text/xml; charset=utf-8 | ||
Connection: keep-alive | ||
Soapaction: "http://tempuri.org/ITonePrintService/GetAllProductsFullBeta" | ||
Accept: */* | ||
Accept-Language: es-xl | ||
Content-Length: 208 | ||
Accept-Encoding: br, gzip, deflate | ||
User-Agent: TonePrint/4.2.0 CFNetwork/902.6 Darwin/17.7.0 (x86_64) | ||
Action: GetAllProductsFullBeta | ||
File: xml/products.xml for action: GetAllProductsFullBeta | ||
127.0.0.1 - - [06/Jun/2021 12:24:34] "POST /TonePrintService.svc HTTP/1.1" 200 - | ||
-------------------------------- | ||
Headers: Host: tp.tcelectronic.com | ||
Content-Type: text/xml; charset=utf-8 | ||
Connection: keep-alive | ||
Soapaction: "http://tempuri.org/ITonePrintService/GetAllEffectsFullBeta" | ||
Accept: */* | ||
Accept-Language: es-xl | ||
Content-Length: 206 | ||
Accept-Encoding: br, gzip, deflate | ||
User-Agent: TonePrint/4.2.0 CFNetwork/902.6 Darwin/17.7.0 (x86_64) | ||
Action: GetAllEffectsFullBeta | ||
File: xml/effects.xml for action: GetAllEffectsFullBeta | ||
127.0.0.1 - - [06/Jun/2021 12:24:34] "POST /TonePrintService.svc HTTP/1.1" 200 - | ||
-------------------------------- | ||
Headers: Host: tp.tcelectronic.com | ||
Content-Type: text/xml; charset=utf-8 | ||
Connection: keep-alive | ||
Soapaction: "http://tempuri.org/ITonePrintService/GetAllProductTypesFull" | ||
Accept: */* | ||
Accept-Language: es-xl | ||
Content-Length: 208 | ||
Accept-Encoding: br, gzip, deflate | ||
User-Agent: TonePrint/4.2.0 CFNetwork/902.6 Darwin/17.7.0 (x86_64) | ||
Action: GetAllProductTypesFull | ||
File: xml/producttypes.xml for action: GetAllProductTypesFull | ||
127.0.0.1 - - [06/Jun/2021 12:24:34] "POST /TonePrintService.svc HTTP/1.1" 200 - | ||
-------------------------------- | ||
Headers: Host: tp.tcelectronic.com | ||
Content-Type: text/xml; charset=utf-8 | ||
Connection: keep-alive | ||
Soapaction: "http://tempuri.org/ITonePrintService/GetAllSelectTypes" | ||
Accept: */* | ||
Accept-Language: es-xl | ||
Content-Length: 198 | ||
Accept-Encoding: br, gzip, deflate | ||
User-Agent: TonePrint/4.2.0 CFNetwork/902.6 Darwin/17.7.0 (x86_64) | ||
Action: GetAllSelectTypes | ||
File: xml/selecttypes.xml for action: GetAllSelectTypes | ||
127.0.0.1 - - [06/Jun/2021 12:24:34] "POST /TonePrintService.svc HTTP/1.1" 200 - | ||
``` | ||
|
||
![Example](./media/edit_enabled.jpg) | ||
|
||
The xml files in the xml folder already has the modification to enable artist toneprint edit | ||
|
||
***In the original_xml folder you will have the unmodified xml files in case you brake something*** | ||
|
||
|
||
***This is made for Mac but it should work on Windows*** |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
flask |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
#!/usr/bin/env python | ||
|
||
from flask import Flask, Response, request | ||
|
||
app = Flask(__name__) | ||
|
||
responses_files = { | ||
"GetVersionsAndInfo": "xml/GetVersionsAndInfoResponse.xml", | ||
"GetAllToneprintsFullBeta": 'xml/toneprints.xml', | ||
"GetAllArtistsFullBeta": "xml/artists.xml", | ||
"GetAllEffectsFullBeta": "xml/effects.xml", | ||
"GetAllProductsFullBeta": "xml/products.xml", | ||
"GetAllSelectTypes": "xml/selecttypes.xml", | ||
"GetAllProductTypesFull": "xml/producttypes.xml" | ||
} | ||
|
||
|
||
def get_response(action): | ||
file_path = responses_files.get(action) | ||
print(f'File: {file_path} for action: {action}') | ||
with open(file_path) as f: | ||
data = f.read() | ||
return data | ||
|
||
|
||
@app.route("/TonePrintService.svc", methods=['POST']) | ||
def fake_service(): | ||
print("--------------------------------") | ||
print("Headers: ", request.headers) | ||
response = Response() | ||
action = request.headers['Soapaction'].split('/')[-1].replace('"', '') | ||
print("Action:", action) | ||
|
||
response_text = get_response(action) | ||
response.data = response_text | ||
return response | ||
|
||
|
||
if __name__ == "__main__": | ||
app.run(debug=True, port=443, ssl_context=('ssl/cert.pem', 'ssl/key.pem')) |
Oops, something went wrong.