Internet@TV WidgetManager C series, Decrypted, enjoy.

Here are software that related with Samsung C series TVs, applications, programs that will run in your TV or computer...:!:This forum is NOT FOR USER QUESTIONS or Problems.

Denny
Official SamyGO Developer
Posts: 350
Joined: Thu Sep 30, 2010 12:18 pm
Location: Croatia

Internet@TV WidgetManager C series, Decrypted, enjoy.

Post by Denny »

the directory?s contain still original crypted files, u can remove them if need.


http://www.multiupload.com/Q7R1LT6ZIA

Denny
Denny - 데니 - 丹尼 (card2000)
UE55C8000 UE55D8000 UE32D6510 BD-C9600 3xDM8000
Reversing HW Demux Drivers and API from Samsung´s TV
User avatar
juusso
SamyGO Moderator
Posts: 10129
Joined: Sun Mar 07, 2010 6:20 pm

Re: Internet@TV WidgetManager 400010001 Decrypted, enjoy.

Post by juusso »

Hey, thank you!

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
mirsev
Posts: 48
Joined: Tue Apr 05, 2011 7:58 pm

Re: Internet@TV WidgetManager C series, Decrypted, enjoy.

Post by mirsev »

card2000 wrote:the directory?s contain still original crypted files, u can remove them if need.
Good job!

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?
User avatar
decix
Posts: 95
Joined: Thu Dec 30, 2010 11:18 pm
Location: Germany

Re: Internet@TV WidgetManager C series, Decrypted, enjoy.

Post by decix »

So what can I do with that decrypted software ?
mirsev
Posts: 48
Joined: Tue Apr 05, 2011 7:58 pm

Re: Internet@TV WidgetManager C series, Decrypted, enjoy.

Post by mirsev »

You can look for some useful undocumented features and/or fix bugs.
User avatar
juusso
SamyGO Moderator
Posts: 10129
Joined: Sun Mar 07, 2010 6:20 pm

Re: Internet@TV WidgetManager C series, Decrypted, enjoy.

Post by juusso »

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?
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
Denny
Official SamyGO Developer
Posts: 350
Joined: Thu Sep 30, 2010 12:18 pm
Location: Croatia

Re: Internet@TV WidgetManager C series, Decrypted, enjoy.

Post by Denny »

mirsev wrote:
card2000 wrote:the directory?s contain still original crypted files, u can remove them if need.
Good job!

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
mirsev
Posts: 48
Joined: Tue Apr 05, 2011 7:58 pm

Re: Internet@TV WidgetManager C series, Decrypted, enjoy.

Post by mirsev »

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.
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?

With your tools, is it possible to decrypt, modify, and then sign and encrypt the firmware RUF files?
moras86
Official SamyGO Developer
Posts: 180
Joined: Sun Feb 21, 2010 3:18 pm
Location: Poland
Contact:

Re: Internet@TV WidgetManager C series, Decrypted, enjoy.

Post by moras86 »

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:

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;
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 :x
Last edited by moras86 on Tue May 10, 2011 7:07 pm, edited 1 time in total.
Image . Image
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)

Post Reply

Return to “[C] Software”