Addons apps to current firmware
Re: Addons apps to current firmware
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.
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.
- erdem_ua
- SamyGO Admin
- Posts: 3126
- Joined: Thu Oct 01, 2009 6:02 am
- Location: Istanbul, Turkey
- Contact:
Re: Addons apps to current firmware
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.

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
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.
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.
-
- Official SamyGO Developer
- Posts: 1700
- Joined: Fri Oct 02, 2009 8:52 am
- Location: Austria/Vienna (no Kangaroos here)
- Contact:
Re: Addons apps to current firmware
this reboots was my problem too, also in actionscript variants, btw. tomorrow i will check your sample app.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.
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
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.
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.
-
- Official SamyGO Developer
- Posts: 1700
- Joined: Fri Oct 02, 2009 8:52 am
- Location: Austria/Vienna (no Kangaroos here)
- Contact:
Re: Addons apps to current firmware
strange thing, app won't write to usb (test file should appears in setup directory?)aquadran wrote:...
App write fine to usb dir, so no need check other places.
but write to /dev/kmsg is ok (test output with dmesg).
arris
Re: Addons apps to current firmware
Yes, it should write to Setup dir, make sure write access is ok.arris69 wrote:strange thing, app won't write to usb (test file should appears in setup directory?)aquadran wrote:...
App write fine to usb dir, so no need check other places.
but write to /dev/kmsg is ok (test output with dmesg).
arris
-
- Official SamyGO Developer
- Posts: 1700
- Joined: Fri Oct 02, 2009 8:52 am
- Location: Austria/Vienna (no Kangaroos here)
- Contact:
Re: Addons apps to current firmware
i guess exec calls wont work due not existent /dev/ttyaquadran wrote:root privaleges, I'm just trying execute script, tv hang, propably i'm doing something wrong with execl.
...
a simple
Code: Select all
system("killall -9 telnetd");
happy hacking
arris
Re: Addons apps to current firmware
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.
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
I just tried this and works 
system("/etc/telnetd_start.sh");
system("insmod /dtv/usb/sda1/modules/cifs.ko");
no need patched firmware

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