the directory?s contain still original crypted files, u can remove them if need.
http://www.multiupload.com/Q7R1LT6ZIA
Denny
Internet@TV WidgetManager C series, Decrypted, enjoy.
Internet@TV WidgetManager C series, Decrypted, enjoy.
Denny - 데니 - 丹尼 (card2000)
UE55C8000 UE55D8000 UE32D6510 BD-C9600 3xDM8000
Reversing HW Demux Drivers and API from Samsung´s TV
UE55C8000 UE55D8000 UE32D6510 BD-C9600 3xDM8000
Reversing HW Demux Drivers and API from Samsung´s TV
Re: Internet@TV WidgetManager 400010001 Decrypted, enjoy.
Hey, thank you!
I hope we could use it for B series...
I hope we could use it for B series...
LE40B653T5W,UE40D6750,UE65Q8C
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Re: Internet@TV WidgetManager C series, Decrypted, enjoy.
Good job!card2000 wrote:the directory?s contain still original crypted files, u can remove them if need.
How have you done this? I have a BD-C6900 blu-ray player which is very like the C series TVs:
http://forum.samygo.tv/viewtopic.php?f= ... 093#p14900
So, I would like to decrypt its WidgetManager as well... And, may be, its firmware. Do you think it is possible?
Re: Internet@TV WidgetManager C series, Decrypted, enjoy.
So what can I do with that decrypted software ?
Re: Internet@TV WidgetManager C series, Decrypted, enjoy.
You can look for some useful undocumented features and/or fix bugs.
Re: Internet@TV WidgetManager C series, Decrypted, enjoy.
I tried to simply replace manager files with decrypded from C series (by overwriting existing and copying missing) - no success. In debug i saw - TV checked checksums and re-installed widget manager by it self.
It seems, C series widget manager is to port to B series to be used. Anyone could make such thing?
It seems, C series widget manager is to port to B series to be used. Anyone could make such thing?
LE40B653T5W,UE40D6750,UE65Q8C
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Re: Internet@TV WidgetManager C series, Decrypted, enjoy.
mirsev wrote:Good job!card2000 wrote:the directory?s contain still original crypted files, u can remove them if need.
How have you done this? I have a BD-C6900 blu-ray player which is very like the C series TVs:
http://forum.samygo.tv/viewtopic.php?f= ... 093#p14900
So, I would like to decrypt its WidgetManager as well... And, may be, its firmware. Do you think it is possible?
you can copy/zip and upload it somwhere then i Decrypt it for u and upload it again, but i think it will be 100% same as i alredy upload the one but can be checked.
Denny
Denny - 데니 - 丹尼 (card2000)
UE55C8000 UE55D8000 UE32D6510 BD-C9600 3xDM8000
Reversing HW Demux Drivers and API from Samsung´s TV
UE55C8000 UE55D8000 UE32D6510 BD-C9600 3xDM8000
Reversing HW Demux Drivers and API from Samsung´s TV
Re: Internet@TV WidgetManager C series, Decrypted, enjoy.
Thank you but it would be great if you could share with us the method how you do this. Where can we get the source code for the decryption, encryption, and signing, as well as the required keys?card2000 wrote:you can copy/zip and upload it somwhere then i Decrypt it for u and upload it again, but i think it will be 100% same as i alredy upload the one but can be checked.
With your tools, is it possible to decrypt, modify, and then sign and encrypt the firmware RUF files?
-
- Official SamyGO Developer
- Posts: 180
- Joined: Sun Feb 21, 2010 3:18 pm
- Location: Poland
- Contact:
Re: Internet@TV WidgetManager C series, Decrypted, enjoy.
Tray start Widget Manager from C on my B, but don't work 
After copy it in place of original (v1.066) and modifying config.xml file I start Internet@TV and got only rectangles borders with error message - Missing object (or something similar).
I look inside some files and find functions for download widgets list. It is in file WMCommon\OpenAPI\HAHubSiteAPI.js
Code:
from other file:
WM_BASIC_PROTOCOL = http://
WM_SECURE_PROTOCOL = https://
DTVInfo.Value.ServerURI = infolink.pavv.co.kr/openapi
or DTVInfo.Value.ServerURI = devinfolink.pavv.co.kr/openapi
So path is:
http://infolink.pavv.co.kr/openapi/service/widget/list
But TV send some data when connect and I got error after tray open site

After copy it in place of original (v1.066) and modifying config.xml file I start Internet@TV and got only rectangles borders with error message - Missing object (or something similar).
I look inside some files and find functions for download widgets list. It is in file WMCommon\OpenAPI\HAHubSiteAPI.js
Code:
Code: Select all
case this.GET_WIDGETLIST :
var tmpLanguageKeyword = WMMain.convertLangCodeToKeyword(DTVInfo.Value.languageCode);
url = WM_BASIC_PROTOCOL+DTVInfo.Value.ServerURI + "/service/widget/list";
if (tmpLanguageKeyword == "") {
if (WMMain.Flag.hiddenWidget) {
url += "?vlev=1";
} else {
url += "/";
}
} else {
if (WMMain.Flag.hiddenWidget) {
url += "?vlev=1&lang=" + tmpLanguageKeyword;
} else {
url += "?lang=" + tmpLanguageKeyword;
}
}
socketObj.setURL(XHRObject, method, url, "", CallBackFn, userData);
break;
WM_BASIC_PROTOCOL = http://
WM_SECURE_PROTOCOL = https://
DTVInfo.Value.ServerURI = infolink.pavv.co.kr/openapi
or DTVInfo.Value.ServerURI = devinfolink.pavv.co.kr/openapi
So path is:
http://infolink.pavv.co.kr/openapi/service/widget/list
But TV send some data when connect and I got error after tray open site

Last edited by moras86 on Tue May 10, 2011 7:07 pm, edited 1 time in total.


TV LCD: Samsung LE40B651T3W (CI) | Internet@TV | fw: 2005 (patched: SamyGO v0.24 + GMT2, ArFIX2, ADFIX) | matrix: SQ04
BluRay: Samsung BD-D5300-ZF | SamsungApps | fw: 1013
Android-Box: Zidoo X8 | Realtek RTD1295 64bit (QuadCore), Mali-T820 GPU, 2 GB RAM, HDMI IN record, Android 6.0 | ZDMC 17.1
my projects: Remote LAN Control - Desktop app (v0.8) | Signal checker for DVB-T (v0.3)