Page 2 of 8
Re: Addons apps to current firmware
Posted: Thu Oct 29, 2009 9:37 pm
by aquadran
root privaleges, I'm just trying execute script, tv hang, propably i'm doing something wrong with execl.
On CI+ you can't run no signed software, CI doesn't have sign check code I think authd do that on CI+.
Each executable(*.so) file has *.mac with 16 bit sign.
Re: Addons apps to current firmware
Posted: Thu Oct 29, 2009 9:45 pm
by erdem_ua
16 bit? Fighting with 16bit sign (65536 probabilities) algorithm is more easier that trying to solve 256 bit AES puzzle

Might be exhausted for who want to try all keys, but I think we can guess right keys from example CI+ tools, Can't we?
Do you know where is example CI+ applications available for download? Needed to look at them.
Re: Addons apps to current firmware
Posted: Thu Oct 29, 2009 9:54 pm
by aquadran
ups, sorry I was mean 16 bytes.
Btw execl, it seems it doesn't hang tv, telnetd still works. it seems, it doesn't return from execl, or something diffrent happen, and watchdog restart after few seconds.
Re: Addons apps to current firmware
Posted: Thu Oct 29, 2009 9:57 pm
by arris69
aquadran wrote:root privaleges, I'm just trying execute script, tv hang, propably i'm doing something wrong with execl.
On CI+ you can't run no signed software, CI doesn't have sign check code I think authd do that on CI+.
Each executable(*.so) file has *.mac with 16 bit sign.
this reboots was my problem too, also in actionscript variants, btw. tomorrow i will check your sample app.
have you tried to write to /mtd_rwarea/ ? may we are sandboxed into the game directory?
thnx a lot for the code.
arris
Re: Addons apps to current firmware
Posted: Thu Oct 29, 2009 10:01 pm
by aquadran
WiseStar is for CI and CI+ in /mtd_tlib/GGame/WiseStar
there are also some games in this site:
http://www.nurisam.com:8081/main
App write fine to usb dir, so no need check other places.
Re: Addons apps to current firmware
Posted: Fri Oct 30, 2009 9:57 am
by arris69
aquadran wrote:...
App write fine to usb dir, so no need check other places.
strange thing, app won't write to usb (test file should appears in setup directory?)
but write to /dev/kmsg is ok (test output with dmesg).
arris
Re: Addons apps to current firmware
Posted: Fri Oct 30, 2009 11:34 am
by aquadran
arris69 wrote:aquadran wrote:...
App write fine to usb dir, so no need check other places.
strange thing, app won't write to usb (test file should appears in setup directory?)
but write to /dev/kmsg is ok (test output with dmesg).
arris
Yes, it should write to Setup dir, make sure write access is ok.
Re: Addons apps to current firmware
Posted: Fri Oct 30, 2009 2:48 pm
by arris69
aquadran wrote:root privaleges, I'm just trying execute script, tv hang, propably i'm doing something wrong with execl.
...
i guess exec calls wont work due not existent /dev/tty
a simple
will be executed without reboot and sample lib exits clean.
happy hacking
arris
Re: Addons apps to current firmware
Posted: Fri Oct 30, 2009 5:30 pm
by aquadran
I wonder if start telnetd will work.
If it's indeed lack of tty, it seems mount load modules need implemented into library instead execute scripts.
However I didn't tried yet load module or mount nfs/smb.
Re: Addons apps to current firmware
Posted: Fri Oct 30, 2009 7:18 pm
by aquadran
I just tried this and works

system("/etc/telnetd_start.sh");
system("insmod /dtv/usb/sda1/modules/cifs.ko");
no need patched firmware
