[App] libYTAdblock H

Here are software that related with Samsung H series TVs.
Please don't create any new topic here unless you have software to post/release.

370network
Posts: 7
Joined: Fri Dec 01, 2023 1:49 am
Location: Slovakia
Contact:

[App] libYTAdblock H

Post by 370network »

Youtube adblocker for H series, can be also used as a general loader for userscripts into widgets.

Notes: Usage:
  • First install modded YT app, by extracting the zip and moving it to /mtd_rwcommon/widgets/user, unfortunatelly it doesn't seem to load properly into the stock one (seems to not act as a normal widget), as a bonus you will get 1080p UI and video playback (stock is all 720p)
  • You will need samyGOso
  • Copy libYTAdblock.so into /mnt/opt/privateer/usr/libso
  • Copy 99_95_YTAdblock.init into /mnt/etc/init.d to autostart or load manually with

    Code: Select all

    samyGOso -l /mnt/opt/privateer/usr/libso/libYTAdblock.so -n WidgetEngine 
  • IMPORTANT: After loading up youtube, open settings and close with return to load the script, a popup will appear on screen to inform you it has been loaded, do it everytime you open youtube
Caution:
The code is probably not of particularly high quality, I'm not very experienced with this sort of stuff. There are definitely better ways to implement it. It contains static offsets, modifies instructions, writes to read only memory... It shouldn't break the TV, it doesn't write anything to storage, but proceed with caution mainly if testing on other tv models.

Changelog:

Code: Select all

20/10/2024: Updated script with new code from original openlgtv adblocker, should work on YT as of now
H series is old, but YT still works and I hope someone will get some use out of this, if it works for you, let me know. Thanks.
You do not have the required permissions to view the files attached to this post.
Last edited by 370network on Sun Oct 20, 2024 9:34 pm, edited 1 time in total.
Stefan244
SamyGO Project Donor
Posts: 11
Joined: Fri Oct 30, 2015 11:51 am

Re: [App] libYTAdblock H

Post by Stefan244 »

Thank you very much - it works for me ;)
xray99
Posts: 5
Joined: Sun Mar 16, 2025 4:31 pm

Re: [App] libYTAdblock H

Post by xray99 »

I have a Samsung H6400. Having root, SamyGOso running fine.
Installed YtMod I can see the app installed on the UI and can run it.
I installed libYTAdblock.so and the init script from the attached zip. Seems the "so" is loaded fine.

Code: Select all

# cat /dtv/InjectJS.log
[InjectJS] SamyGO H libInjectJS v0.1.0 - (c) 370network 2023
[InjectJS] lib_init, >>>
[InjectJS] lib_init, Address of new string: 0x21b1508
[InjectJS] lib_init, Address of the pointer to the old string: 0x4a1051dc
[InjectJS] lib_init, Value of the pointer to the old string: 1701995347
[InjectJS] new string is earlier in memory than the instruction
[InjectJS] lib_init, Value to be stored in the pointer to the string: 1207253696
[InjectJS] <<< lib_deinit
When I load the modded youtube app and go to the settings, I hit the return button but it doesn't pop up anything. What can be the issue? Should the Youtube app language be english or any other language should work as well ?

Did youtube change the code and this piece of SW requires an update??

Shall I uninstall the stock youtube app or can I leave it installed?
Last edited by xray99 on Mon Mar 17, 2025 10:44 pm, edited 1 time in total.
370network
Posts: 7
Joined: Fri Dec 01, 2023 1:49 am
Location: Slovakia
Contact:

Re: [App] libYTAdblock H

Post by 370network »

xray99 wrote: Mon Mar 17, 2025 10:41 pm I have a Samsung H6400. Having root, SamyGOso running fine.
Installed YtMod I can see the app installed on the UI and can run it.
I installed libYTAdblock.so and the init script from the attached zip. Seems the "so" is loaded fine.

Code: Select all

# cat /dtv/InjectJS.log
[InjectJS] SamyGO H libInjectJS v0.1.0 - (c) 370network 2023
[InjectJS] lib_init, >>>
[InjectJS] lib_init, Address of new string: 0x21b1508
[InjectJS] lib_init, Address of the pointer to the old string: 0x4a1051dc
[InjectJS] lib_init, Value of the pointer to the old string: 1701995347
[InjectJS] new string is earlier in memory than the instruction
[InjectJS] lib_init, Value to be stored in the pointer to the string: 1207253696
[InjectJS] <<< lib_deinit
When I load the modded youtube app and go to the settings, I hit the return button but it doesn't pop up anything. What can be the issue? Should the Youtube app language be english or any other language should work as well ?

Did youtube change the code and this piece of SW requires an update??

Shall I uninstall the stock youtube app or can I leave it installed?
Language should not matter, you can keep the stock yt app just launch the new one, popup should show even if youtube broke the blocking.

Could you please try this:
First start the tv, but do not load the so
Then ssh or telnet in and run:

Code: Select all

pidof WidgetEngine
It should return a number (or look up the pid using ps)
Then run:

Code: Select all

gdb -p <THE NUMBER YOU GOT>
You should get into a shell with (gdb) on the start of the line, there run:

Code: Select all

x/4b 0x4A104FB8
It should spit back something like this

Code: Select all

0x4a104fb8 <_ZN9CWEWidget17GetWidgetEventStrEPcS0_S0_iS0_+324>:	0x1c	0x12	0x9f	0xe5
Also please try:

Code: Select all

x/s 0x4A15E3EC
Did it output this?

Code: Select all

var weEvent = new WidgetEvent();
Let me know if this worked.
When you are done just turn off the tv with the remote.

And sorry for the late reply i didn’t have notifications on the topic, fixed that now
xray99
Posts: 5
Joined: Sun Mar 16, 2025 4:31 pm

Re: [App] libYTAdblock H

Post by xray99 »

I really appreciate your reply.

I tried what you suggested.

1st I disabled the load of the so by removing the executable permission of the init script.

Code: Select all

# ls -ld /mnt/etc/init.d/99_95_YTAdblock.init
-rw-------    1 root     root           614 Jan  1 00:05 /mnt/etc/init.d/99_95_YTAdblock.init
Then powered off the TV with remote and started again so that the libYTAdblock so is not loaded.

Executed your commands.

Code: Select all

# pidof WidgetEngine
112
# gdb -p 112
GNU gdb (GDB) 7.0
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "arm-SamyGO_OE.dev-linux-gnueabi".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Attaching to process 112
Reading symbols from /mtd_exe/WidgetEngine/WidgetEngine...(no debugging symbols found)...done.
Reading symbols from /mtd_exe/Webkit/libwebkit2gtk-3.0.so.0...(no debugging symbols found)...done.
Loaded symbols for /mtd_exe/Webkit/libwebkit2gtk-3.0.so.0
Reading symbols from /mtd_exe/InfoLink/lib/libSef.so...(no debugging symbols found)...done.
Loaded symbols for /mtd_exe/InfoLink/lib/libSef.so
Reading symbols from /mtd_exe/InfoLink/lib/libthrift-0.8.0.so...(no debugging symbols found)...done.
Loaded symbols for /mtd_exe/InfoLink/lib/libthrift-0.8.0.so
Reading symbols from /mtd_exe/WidgetEngine/libWECore.so...(no debugging symbols found)...done.
Loaded symbols for /mtd_exe/WidgetEngine/libWECore.so
Reading symbols from /lib/libpthread.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /lib/libpthread.so.0
Reading symbols from /mtd_exe/Webkit/libjavascriptcoregtk-3.0.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Webkit/libjavascriptcoregtk-3.0.so.0
Reading symbols from /mtd_exe/Runtime/lib/libXt.so.6...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libXt.so.6
Reading symbols from /mtd_exe/Runtime/lib/libXext.so.6...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libXext.so.6
Reading symbols from /mtd_exe/Runtime/lib/libX11.so.6...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libX11.so.6
Reading symbols from /mtd_exe/Runtime/lib/libXau.so.6...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libXau.so.6
Reading symbols from /mtd_exe/Runtime/lib/libXdmcp.so.6...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libXdmcp.so.6
Reading symbols from /mtd_exe/Runtime/lib/libXrender.so.1...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libXrender.so.1
Reading symbols from /mtd_exe/Runtime/lib/libXcursor.so.1...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libXcursor.so.1
Reading symbols from /mtd_exe/Runtime/lib/libXdamage.so.1...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libXdamage.so.1
Reading symbols from /mtd_exe/Runtime/lib/libXfixes.so.3...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libXfixes.so.3
Reading symbols from /mtd_exe/Runtime/lib/libXcomposite.so.1...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libXcomposite.so.1
Reading symbols from /mtd_exe/Runtime/lib/libXi.so.6...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libXi.so.6
Reading symbols from /mtd_exe/Runtime/lib/libXft.so.2...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libXft.so.2
Reading symbols from /mtd_exe/Runtime/lib/libXrandr.so.2...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libXrandr.so.2
Reading symbols from /mtd_exe/Runtime/lib/libSM.so.6...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libSM.so.6
Reading symbols from /mtd_exe/Runtime/lib/libICE.so.6...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libICE.so.6
Reading symbols from /mtd_exe/Runtime/lib/libicui18n.so.48...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libicui18n.so.48
Reading symbols from /mtd_exe/Runtime/lib/libicuuc.so.48...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libicuuc.so.48
Reading symbols from /mtd_exe/Runtime/lib/libicudata.so.48...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libicudata.so.48
Reading symbols from /mtd_exe/Runtime/lib/libxml2.so.2...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libxml2.so.2
Reading symbols from /mtd_exe/Comp_LIB/libz.so.1...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Comp_LIB/libz.so.1
Reading symbols from /lib/libstdc++.so.6...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /lib/libstdc++.so.6
Reading symbols from /mtd_exe/Runtime/lib/libtiff.so.5...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libtiff.so.5
Reading symbols from /mtd_exe/Runtime/lib/libiconv.so.2...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libiconv.so.2
Reading symbols from /mtd_exe/Runtime/lib/libpixman-1.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libpixman-1.so.0
Reading symbols from /mtd_exe/Runtime/lib/libffi.so.6...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libffi.so.6
Reading symbols from /mtd_exe/Runtime/lib/libatk-1.0.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libatk-1.0.so.0
Reading symbols from /mtd_exe/Runtime/lib/libgio-2.0.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libgio-2.0.so.0
Reading symbols from /mtd_exe/Runtime/lib/libglib-2.0.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libglib-2.0.so.0
Reading symbols from /mtd_exe/Runtime/lib/libgmodule-2.0.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libgmodule-2.0.so.0
Reading symbols from /mtd_exe/Runtime/lib/libgobject-2.0.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libgobject-2.0.so.0
Reading symbols from /mtd_exe/Runtime/lib/libgthread-2.0.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libgthread-2.0.so.0
Reading symbols from /mtd_exe/Runtime/lib/libpango-1.0.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libpango-1.0.so.0
Reading symbols from /mtd_exe/Runtime/lib/libpangocairo-1.0.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libpangocairo-1.0.so.0
Reading symbols from /mtd_exe/Runtime/lib/libpangoft2-1.0.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libpangoft2-1.0.so.0
Reading symbols from /mtd_exe/Runtime/lib/libpangoxft-1.0.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libpangoxft-1.0.so.0
Reading symbols from /mtd_exe/Runtime/lib/libcairo.so.2...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libcairo.so.2
Reading symbols from /mtd_exe/Runtime/lib/libcairo-gobject.so.2...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libcairo-gobject.so.2
Reading symbols from /mtd_exe/Runtime/lib/libpng14.so.14...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libpng14.so.14
Reading symbols from /mtd_exe/Runtime/lib/libjpeg.so.8...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libjpeg.so.8
Reading symbols from /mtd_exe/Runtime/lib/libfontconfig.so.1...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libfontconfig.so.1
Reading symbols from /mtd_exe/Runtime/lib/libfreetype.so.6...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libfreetype.so.6
Reading symbols from /mtd_exe/Runtime/lib/libgtk-3.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libgtk-3.so.0
Reading symbols from /mtd_exe/Runtime/lib/libgdk-3.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libgdk-3.so.0
Reading symbols from /mtd_exe/Runtime/lib/libgailutil-3.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libgailutil-3.so.0
Reading symbols from /mtd_exe/Runtime/lib/libgdk_pixbuf-2.0.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libgdk_pixbuf-2.0.so.0
Reading symbols from /mtd_exe/Webkit/libsqlite3.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Webkit/libsqlite3.so.0
Reading symbols from /mtd_exe/Runtime/lib/libatk-bridge-2.0.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libatk-bridge-2.0.so.0
Reading symbols from /mtd_exe/Runtime/lib/libatspi.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libatspi.so.0
Reading symbols from /mtd_exe/Runtime/lib/libdbus-1.so.3...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libdbus-1.so.3
Reading symbols from /mtd_exe/Runtime/lib/libharfbuzz.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libharfbuzz.so.0
Reading symbols from /mtd_exe/Runtime/lib/libicule.so.48...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libicule.so.48
Reading symbols from /mtd_exe/Runtime/lib/libicuio.so.48...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libicuio.so.48
Reading symbols from /mtd_exe/Runtime/lib/libiculx.so.48...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libiculx.so.48
Reading symbols from /mtd_exe/Runtime/lib/libicutu.so.48...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libicutu.so.48
Reading symbols from /mtd_exe/Runtime/lib/libXtst.so.6...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libXtst.so.6
Reading symbols from /mtd_exe/Webkit/libjson-glib-1.0.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Webkit/libjson-glib-1.0.so.0
Reading symbols from /mtd_exe/Webkit/libsecret-1.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Webkit/libsecret-1.so.0
Reading symbols from /mtd_exe/Webkit/libxslt.so.1...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Webkit/libxslt.so.1
Reading symbols from /mtd_exe/Webkit/libwebp.so.4...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Webkit/libwebp.so.4
Reading symbols from /mtd_exe/Webkit/libgcrypt.so.11...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Webkit/libgcrypt.so.11
Reading symbols from /mtd_exe/Webkit/libgpg-error.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Webkit/libgpg-error.so.0
Reading symbols from /lib/librt.so.1...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /lib/librt.so.1
Reading symbols from /mtd_exe/Runtime/lib/libxcb.so.1...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libxcb.so.1
Reading symbols from /mtd_exe/Runtime/lib/libxcb-render.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libxcb-render.so.0
Reading symbols from /mtd_exe/Runtime/lib/libxcb-shm.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libxcb-shm.so.0
Reading symbols from /mtd_exe/InfoLink/lib/libjson.so...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/InfoLink/lib/libjson.so
Reading symbols from /mtd_exe/lib/libEGL.so...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/lib/libEGL.so
Reading symbols from /mtd_exe/lib/libGLESv1_CM.so...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/lib/libGLESv1_CM.so
Reading symbols from /mtd_exe/lib/libGLESv2.so...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/lib/libGLESv2.so
Reading symbols from /mtd_exe/lib/libMali.so...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/lib/libMali.so
Reading symbols from /mtd_exe/Runtime/lib/libdrm.so.2...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libdrm.so.2
Reading symbols from /mtd_exe/Runtime/lib/libX11-xcb.so.1...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libX11-xcb.so.1
Reading symbols from /mtd_exe/Runtime/lib/libxcb-dri2.so.0...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libxcb-dri2.so.0
Reading symbols from /mtd_exe/lib/libTZ.so...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/lib/libTZ.so
Reading symbols from /mtd_exe/Webkit/libevent-2.0.so.5...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Webkit/libevent-2.0.so.5
Reading symbols from /mtd_exe/Webkit/libCWPInterface.so...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Webkit/libCWPInterface.so
Reading symbols from /mtd_exe/lib/libSDAL.so...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/lib/libSDAL.so
Reading symbols from /mtd_exe/lib/libUTOPIA.so...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/lib/libUTOPIA.so
Reading symbols from /mtd_exe/Webkit/libSTRI3D.so...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Webkit/libSTRI3D.so
Reading symbols from /mtd_exe/Runtime/lib/libXEGLImageWrapper.so...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libXEGLImageWrapper.so
Reading symbols from /mtd_exe/Webkit/libsoup-2.4.so.1...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Webkit/libsoup-2.4.so.1
Reading symbols from /lib/libdl.so.2...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /lib/libdl.so.2
Reading symbols from /lib/libm.so.6...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /lib/libm.so.6
Reading symbols from /lib/libgcc_s.so.1...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /lib/libgcc_s.so.1
Reading symbols from /lib/libc.so.6...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /lib/libc.so.6
Reading symbols from /lib/ld-linux.so.3...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /lib/ld-linux.so.3
Reading symbols from /lib/libresolv.so.2...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /lib/libresolv.so.2
Reading symbols from /mtd_exe/Runtime/lib/libXMV.so...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/Runtime/lib/libXMV.so
Reading symbols from /mtd_appdata/Runtime/pango/1.8.0/modules/pango-basic-fc.so...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_appdata/Runtime/pango/1.8.0/modules/pango-basic-fc.so
Reading symbols from /mtd_exe/WidgetEngine/plugins/pepper/libppNaClPlugin.so...(no debugging symbols found)...done.

warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /mtd_exe/WidgetEngine/plugins/pepper/libppNaClPlugin.so
0x42271f50 in poll () from /lib/libc.so.6
(gdb) x/4b 0x4A104FB8
0x4a104fb8:     80      97      99      107
(gdb) x/s 0x4A15E3EC
0x4a15e3ec <_ZN3PSA2SS14CSSv3_SyncImpl5CheckEPKcS3_S3_S3_RKNS0_12CCredentialsEj+384>:    ",\020K\342C\363\376\353,\220\033\345\f\220I\342\006"
When the library was loaded I got pretty much the same output.

This is the output when the library is loaded:

Code: Select all

# /mnt/etc/init.d/99_95_YTAdblock.init start
checking /dtv/usb/sda1
checking /dtv/usb/sdb
samyGOso v1.2.5 (c) bugficks 2013-2014, sectroyer 2014-2015
Injecting '/mnt/opt/privateer/usr/libso/libYTAdblock.so' resident: '0'
mprotect: 0x4227c020
dlopen: 0x424a0d80
dlclose: 0x424a0e14
dlsymaddr: 0x424a0e78
pc=42271f50 lr=42271f44 sp=be04f710 fp=be04f764
r0=16aff80 r1=2
r2=ffffffff r3=ffffffff
stack: 0xbe02f000-0xbe050000 length = 135168
executing injection code at 0xbe04f5cc
library injection completed!
Succeeded.
370network
Posts: 7
Joined: Fri Dec 01, 2023 1:49 am
Location: Slovakia
Contact:

Re: [App] libYTAdblock H

Post by 370network »

Sorry for making this debugging such a long winded process but I kind of forgot how all this stuff worked and have to scrape together the info i have.

Please try running "info sharedlibrary" in gdb and send me the output (same steps as before)

Also could you please try finding the "WidgetEngine" binary and the "libWECore.so" binary on your tv (sorry I cannot tell you the path, i do not have the tv on hand) and getting a sha checksum of them? I'd like to know if they are identical to mine.
xray99
Posts: 5
Joined: Sun Mar 16, 2025 4:31 pm

Re: [App] libYTAdblock H

Post by xray99 »

Output of "info sharedlibrary"

Code: Select all

(gdb) info sharedlibrary
From        To          Syms Read   Shared Object Library
0x4430f2e0  0x45dd2a84  Yes (*)     /mtd_exe/Webkit/libwebkit2gtk-3.0.so.0
0x48044b00  0x48098204  Yes (*)     /mtd_exe/InfoLink/lib/libSef.so
0x47fa3d08  0x47ffb5b8  Yes (*)     /mtd_exe/InfoLink/lib/libthrift-0.8.0.so
0x4a11c7a8  0x4a199908  Yes (*)     /mtd_exe/WidgetEngine/libWECore.so
0x423942b0  0x423a3f60  Yes (*)     /lib/libpthread.so.0
0x468cb238  0x46c42abc  Yes (*)     /mtd_exe/Webkit/libjavascriptcoregtk-3.0.so.0
0x4788c8c0  0x478ce1e8  Yes (*)     /mtd_exe/Runtime/lib/libXt.so.6
0x43b7a9fc  0x43b8747c  Yes (*)     /mtd_exe/Runtime/lib/libXext.so.6
0x439f36a0  0x43a7f4c0  Yes (*)     /mtd_exe/Runtime/lib/libX11.so.6
0x43b90ad8  0x43b918a4  Yes (*)     /mtd_exe/Runtime/lib/libXau.so.6
0x43ba0f10  0x43ba28f4  Yes (*)     /mtd_exe/Runtime/lib/libXdmcp.so.6
0x43ea1608  0x43ea7498  Yes (*)     /mtd_exe/Runtime/lib/libXrender.so.1
0x47e4a074  0x47e4fb88  Yes (*)     /mtd_exe/Runtime/lib/libXcursor.so.1
0x47f28a10  0x47f29480  Yes (*)     /mtd_exe/Runtime/lib/libXdamage.so.1
0x43ff1104  0x43ff3418  Yes (*)     /mtd_exe/Runtime/lib/libXfixes.so.3
0x47f18a90  0x47f195c0  Yes (*)     /mtd_exe/Runtime/lib/libXcomposite.so.1
0x47e61a60  0x47e6baf4  Yes (*)     /mtd_exe/Runtime/lib/libXi.so.6
0x47e13238  0x47e212fc  Yes (*)     /mtd_exe/Runtime/lib/libXft.so.2
0x43e895f0  0x43e8f234  Yes (*)     /mtd_exe/Runtime/lib/libXrandr.so.2
0x47e3178c  0x47e35d04  Yes (*)     /mtd_exe/Runtime/lib/libSM.so.6
0x47df3510  0x47e00ad8  Yes (*)     /mtd_exe/Runtime/lib/libICE.so.6
0x46e70db0  0x46f64bf0  Yes (*)     /mtd_exe/Runtime/lib/libicui18n.so.48
0x46fcc610  0x470b4bb4  Yes (*)     /mtd_exe/Runtime/lib/libicuuc.so.48
                        Yes (*)     /mtd_exe/Runtime/lib/libicudata.so.48
0x43bcb4d8  0x43d45200  Yes (*)     /mtd_exe/Runtime/lib/libxml2.so.2
0x439c1870  0x439d062c  Yes (*)     /mtd_exe/Comp_LIB/libz.so.1
0x424000c0  0x42460bac  Yes (*)     /lib/libstdc++.so.6
0x47a7c8b8  0x47aab904  Yes (*)     /mtd_exe/Runtime/lib/libtiff.so.5
0x43d893e0  0x43db1d88  Yes (*)     /mtd_exe/Runtime/lib/libiconv.so.2
0x477f4d18  0x47867318  Yes (*)     /mtd_exe/Runtime/lib/libpixman-1.so.0
0x43fd93a4  0x43fde0fc  Yes (*)     /mtd_exe/Runtime/lib/libffi.so.6
0x47d56a68  0x47d63ebc  Yes (*)     /mtd_exe/Runtime/lib/libatk-1.0.so.0
0x472a58f0  0x4736fac0  Yes (*)     /mtd_exe/Runtime/lib/libgio-2.0.so.0
0x473c49d0  0x47462154  Yes (*)     /mtd_exe/Runtime/lib/libglib-2.0.so.0
0x47f48e14  0x47f49ea8  Yes (*)     /mtd_exe/Runtime/lib/libgmodule-2.0.so.0
0x47b90450  0x47bc1f40  Yes (*)     /mtd_exe/Runtime/lib/libgobject-2.0.so.0
0x47f6860c  0x47f6882c  Yes (*)     /mtd_exe/Runtime/lib/libgthread-2.0.so.0
0x478f1398  0x4792d078  Yes (*)     /mtd_exe/Runtime/lib/libpango-1.0.so.0
0x47edba70  0x47ee3ea0  Yes (*)     /mtd_exe/Runtime/lib/libpangocairo-1.0.so.0
0x47da57b0  0x47db5a58  Yes (*)     /mtd_exe/Runtime/lib/libpangoft2-1.0.so.0
0x47ef2528  0x47ef7188  Yes (*)     /mtd_exe/Runtime/lib/libpangoxft-1.0.so.0
0x46cacc70  0x46de7118  Yes (*)     /mtd_exe/Runtime/lib/libcairo.so.2
0x47e79d90  0x47e7b904  Yes (*)     /mtd_exe/Runtime/lib/libcairo-gobject.so.2
0x43fab150  0x43fc52cc  Yes (*)     /mtd_exe/Runtime/lib/libpng14.so.14
0x43f4a870  0x43f89c0c  Yes (*)     /mtd_exe/Runtime/lib/libjpeg.so.8
0x47c245e8  0x47c4b6a8  Yes (*)     /mtd_exe/Runtime/lib/libfontconfig.so.1
0x43ecf234  0x43f21fc0  Yes (*)     /mtd_exe/Runtime/lib/libfreetype.so.6
0x461faca8  0x4668be00  Yes (*)     /mtd_exe/Runtime/lib/libgtk-3.so.0
0x477533b0  0x477cd050  Yes (*)     /mtd_exe/Runtime/lib/libgdk-3.so.0
0x47e92740  0x47e974b8  Yes (*)     /mtd_exe/Runtime/lib/libgailutil-3.so.0
0x47c6df90  0x47c9d904  Yes (*)     /mtd_exe/Runtime/lib/libgdk_pixbuf-2.0.so.0
0x476752b0  0x47720e30  Yes (*)     /mtd_exe/Webkit/libsqlite3.so.0
0x47d26b60  0x47d3880c  Yes (*)     /mtd_exe/Runtime/lib/libatk-bridge-2.0.so.0
0x47d80b5c  0x47d90a00  Yes (*)     /mtd_exe/Runtime/lib/libatspi.so.0
0x47b3d300  0x47b6d50c  Yes (*)     /mtd_exe/Runtime/lib/libdbus-1.so.3
0x474cddec  0x47552908  Yes (*)     /mtd_exe/Runtime/lib/libharfbuzz.so.0
0x47cb4a98  0x47cc7208  Yes (*)     /mtd_exe/Runtime/lib/libicule.so.48
0x47ea9f88  0x47eb3f38  Yes (*)     /mtd_exe/Runtime/lib/libicuio.so.48
0x47ec3b8c  0x47ec6b68  Yes (*)     /mtd_exe/Runtime/lib/libiculx.so.48
0x479bdfb4  0x479d46f0  Yes (*)     /mtd_exe/Runtime/lib/libicutu.so.48
0x47f390a0  0x47f3b874  Yes (*)     /mtd_exe/Runtime/lib/libXtst.so.6
---Type <return> to continue, or q <return> to quit---
0x47ceee2c  0x47d0c5d4  Yes (*)     /mtd_exe/Webkit/libjson-glib-1.0.so.0
0x47a21cf8  0x47a604cc  Yes (*)     /mtd_exe/Webkit/libsecret-1.so.0
0x47adfb80  0x47b1c0d0  Yes (*)     /mtd_exe/Webkit/libxslt.so.1
0x47954d80  0x47999690  Yes (*)     /mtd_exe/Webkit/libwebp.so.4
0x475a48c0  0x476429d4  Yes (*)     /mtd_exe/Webkit/libgcrypt.so.11
0x47f58780  0x47f591c4  Yes (*)     /mtd_exe/Webkit/libgpg-error.so.0
0x42489960  0x4248d7e8  Yes (*)     /lib/librt.so.1
0x43b57e64  0x43b6465c  Yes (*)     /mtd_exe/Runtime/lib/libxcb.so.1
0x44002aa0  0x44005760  Yes (*)     /mtd_exe/Runtime/lib/libxcb-render.so.0
0x440108d8  0x44011040  Yes (*)     /mtd_exe/Runtime/lib/libxcb-shm.so.0
0x43b21898  0x43b3c450  Yes (*)     /mtd_exe/InfoLink/lib/libjson.so
0x43978950  0x4398e1cc  Yes (*)     /mtd_exe/lib/libEGL.so
0x480c3c88  0x480ef560  Yes (*)     /mtd_exe/lib/libGLESv1_CM.so
0x4393b8f0  0x4395f31c  Yes (*)     /mtd_exe/lib/libGLESv2.so
0x43893b00  0x4390f378  Yes (*)     /mtd_exe/lib/libMali.so
0x481ba900  0x481c45cc  Yes (*)     /mtd_exe/Runtime/lib/libdrm.so.2
0x4a5e05a4  0x4a5e0740  Yes (*)     /mtd_exe/Runtime/lib/libX11-xcb.so.1
0x4a6513b8  0x4a652190  Yes (*)     /mtd_exe/Runtime/lib/libxcb-dri2.so.0
0x439a2858  0x439b06e4  Yes (*)     /mtd_exe/lib/libTZ.so
0x47be0f78  0x47c0ca4c  Yes (*)     /mtd_exe/Webkit/libevent-2.0.so.5
0x47f086d0  0x47f08b08  Yes (*)     /mtd_exe/Webkit/libCWPInterface.so
0x424f21f8  0x425daf04  Yes (*)     /mtd_exe/lib/libSDAL.so
0x43038e30  0x43268444  Yes (*)     /mtd_exe/lib/libUTOPIA.so
0x49c1bb70  0x49dca4e0  Yes (*)     /mtd_exe/Webkit/libSTRI3D.so
0x43eb8bc4  0x43eb9694  Yes (*)     /mtd_exe/Runtime/lib/libXEGLImageWrapper.so
0x4713d2f8  0x4721a3c4  Yes (*)     /mtd_exe/Webkit/libsoup-2.4.so.1
0x424a0ad8  0x424a2f98  Yes (*)     /lib/libdl.so.2
0x4231bd20  0x4234bf44  Yes (*)     /lib/libm.so.6
0x422fcda8  0x4230ca8c  Yes (*)     /lib/libgcc_s.so.1
0x421c5d60  0x422b7994  Yes (*)     /lib/libc.so.6
0x410007a0  0x4101af24  Yes (*)     /lib/ld-linux.so.3
0x47dca620  0x47dd9228  Yes (*)     /lib/libresolv.so.2
0x4a5f1878  0x4a5f35f0  Yes (*)     /mtd_exe/Runtime/lib/libXMV.so
0x9ffde3d0  0x9ffdf678  Yes (*)     /mtd_appdata/Runtime/pango/1.8.0/modules/pango-basic-fc.so
0x9ecba9e0  0x9eda5574  Yes (*)     /mtd_exe/WidgetEngine/plugins/pepper/libppNaClPlugin.so
(*): Shared library is missing debugging information.
WidgetEngine binary details:

Code: Select all

# find / -name WidgetEngine -type f
/mtd_exe/WidgetEngine/WidgetEngine
/mtd_uniro/exe1/WidgetEngine/WidgetEngine
/mtd_uniro/exe2/WidgetEngine/WidgetEngine

# ls -l /mtd_exe/WidgetEngine/WidgetEngine /mtd_uniro/exe1/WidgetEngine/WidgetEngine /mtd_uniro/exe2/WidgetEngine/WidgetEngine
-rwxrwxr-x    1 root     root        379016 Dec 31  2013 /mtd_exe/WidgetEngine/WidgetEngine
-rwxrwxr-x    1 root     root        379016 Dec 31  2013 /mtd_uniro/exe1/WidgetEngine/WidgetEngine
-rwxrwxr-x    1 root     root        379004 Dec 31  2013 /mtd_uniro/exe2/WidgetEngine/WidgetEngine

# sha
sha1sum    sha256sum  sha3sum    sha512sum
# sha1sum /mtd_exe/WidgetEngine/WidgetEngine
053accdc6763d86bd16efa6210f57efb0b61bc7b  /mtd_exe/WidgetEngine/WidgetEngine
# sha1sum /mtd_uniro/exe1/WidgetEngine/WidgetEngine
053accdc6763d86bd16efa6210f57efb0b61bc7b  /mtd_uniro/exe1/WidgetEngine/WidgetEngine
# sha1sum /mtd_uniro/exe2/WidgetEngine/WidgetEngine
7126fadc84333cedbbe43a9575933ec01c1ac26a  /mtd_uniro/exe2/WidgetEngine/WidgetEngine
libWECore.so details:

Code: Select all

# find / -name libWECore.so -type f
/mtd_exe/WidgetEngine/libWECore.so
/mtd_uniro/exe1/WidgetEngine/libWECore.so
/mtd_uniro/exe2/WidgetEngine/libWECore.so

# ls -l /mtd_exe/WidgetEngine/libWECore.so
-rwxrwxr-x    1 root     root        947028 Dec 31  2013 /mtd_exe/WidgetEngine/libWECore.so
# ls -l /mtd_uniro/exe1/WidgetEngine/libWECore.so
-rwxrwxr-x    1 root     root        947028 Dec 31  2013 /mtd_uniro/exe1/WidgetEngine/libWECore.so
# ls -l /mtd_exe/WidgetEngine/libWECore.so
-rwxrwxr-x    1 root     root        947028 Dec 31  2013 /mtd_exe/WidgetEngine/libWECore.so

# sha1sum /mtd_exe/WidgetEngine/libWECore.so
bacc9f52c3b2813395192b4b45b32ee636f940a8  /mtd_exe/WidgetEngine/libWECore.so
# sha1sum /mtd_uniro/exe1/WidgetEngine/libWECore.so
bacc9f52c3b2813395192b4b45b32ee636f940a8  /mtd_uniro/exe1/WidgetEngine/libWECore.so
# sha1sum /mtd_uniro/exe2/WidgetEngine/libWECore.so
db6b83e92928859ad8c4f26269d375146a199dfc  /mtd_uniro/exe2/WidgetEngine/libWECore.so
Firmware version is: T-MST14DEUC-2900.0 if it matters.

I have both stock and modded YT app installed.
370network
Posts: 7
Joined: Fri Dec 01, 2023 1:49 am
Location: Slovakia
Contact:

Re: [App] libYTAdblock H

Post by 370network »

aight this is weird the files are different, maybe different fw? I am on i think T-MST14DEUC_2130.0 with skype refueled root or something like that. You could try sending me the WidgetEngine and libWECore.so (from /mtd_exe/) and i could try and take a look at them
xray99
Posts: 5
Joined: Sun Mar 16, 2025 4:31 pm

Re: [App] libYTAdblock H

Post by xray99 »

Hi,

Both files attached. Both from directory: /mtd_exe/WidgetEngine/
You do not have the required permissions to view the files attached to this post.
370network
Posts: 7
Joined: Fri Dec 01, 2023 1:49 am
Location: Slovakia
Contact:

Re: [App] libYTAdblock H

Post by 370network »

please try this
You do not have the required permissions to view the files attached to this post.

Post Reply

Return to “[H] Software”