You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to new Bose Updater I prepared third option how to downgrade. Just run reverse proxy on your PC and mock /connected_device endpoint, then you do not have to hex-edit BU software ;).
Here is an example how I did it:
install nginx (I used Windows WSL Ubuntu)
generate self-signed certificate
set new nginx config (see below)
mock worldwide.bose.com to 127.0.0.1 in hosts file
According to new Bose Updater I prepared third option how to downgrade. Just run reverse proxy on your PC and mock /connected_device endpoint, then you do not have to hex-edit BU software ;).
Here is an example how I did it:
nginx config
generating self-signed cert ...
sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/ssl/private/nginx-selfsigned.key -out /etc/ssl/certs/nginx-selfsigned.crtset all defaults except Common name -
*.bose.comhosts file in C:\Windows\System32\drivers\etc\hosts
127.0.0.1 worldwide.bose.comIt might be even more elegant, but it works anyway ;) enjoy
Lipo