Skip to content

Instantly share code, notes, and snippets.

View throwaway96's full-sized avatar

throwaway96

View GitHub Profile
@throwaway96
throwaway96 / bashrc_id.sh
Created November 16, 2023 01:03 — forked from zeph1e/bashrc_id.sh
bashrc_id.sh
#!/bin/bash
export CRED=root@id
SSH=$(whereis ssh | awk '{print $2}')
JQ=$(whereis jq | awk '{print $2}')
SCP=$(whereis scp | awk '{print $2}')
if [ -z "$SSH" ]; then
echo "Unable to find ssh" 1>&2
return 1
@throwaway96
throwaway96 / lg-hostdiag.md
Created November 2, 2023 22:17
Instructions on how to open the LG Host Diagnostics (HostDiag) screen

HostDiag

The Host Diagnostics (HostDiag) screen shows various system information. It has been present on LG TVs since long before webOS. While it generally isn't very useful, it could come in handy in certain situations.

Opening

In general, to open HostDiag you must highlight "Channel Tuning" in the menu and press the "1" button 5 times. The menu can be opened with the menu button on the remote, but the steps after that vary a bit across webOS versions. Note that

webOS 6

@throwaway96
throwaway96 / dpf720-notes.md
Last active August 6, 2023 21:44
Notes on Digital Decor DPF720 digital picture frame

Introduction

The DPF720 is a digital picture frame with "Digital Decor" branding. It is based on an MStar MSPD21D SoC. The example I obtained did not come in the original box, but I believe I received all important components. Here is an (open box?) Amazon listing for it. This eBay listing (archive) seems to show the box.

Conventions

Unless otherwise noted: left/right are when viewing the assembled device from the front (i.e., looking at the screen); top/bottom of the board refers to its orientation when the device is assembled and upright.

Label

Contents

The label on the bottom refers to the device as "7 In. Ultra Slim Digital Picture Frame". The first few lines under that are:

@throwaway96
throwaway96 / dpf720-notes.md
Last active November 2, 2023 22:24
Notes on Digital Decor DPF720 digital picture frame

Introduction

The DPF720 is a digital picture frame with "Digital Decor" branding. It is based on an MStar MSPD21D SoC. The example I obtained did not come in the original box, but I believe I received all important components. Here is an (open box?) Amazon listing for it. This eBay listing (archive) seems to show the box.

Conventions

Unless otherwise noted: left/right are when viewing the assembled device from the front (i.e., looking at the screen); top/bottom of the board refers to its orientation when the device is assembled and upright.

Label

Contents

The label on the bottom refers to the device as "7 In. Ultra Slim Digital Picture Frame". The first few lines under that are:

@throwaway96
throwaway96 / webos-notes.md
Last active February 23, 2025 11:48
Notes about webOS stuff

Debugging apps (inspect)

Inspectability

Developer mode apps (those installed in /media/developer) are inspectable by default. Other apps (e.g., from the LG Content Store) are not inspectable by default, but you can add "inspectable": true to their appinfo.json to enable it. Debugging system apps (i.e., those in /usr/palm/applications) may require a special flag.

Ports

The developer mode app debugger listens on port 9998.

System service and system app debugging uses ports 5885 and 9999, respectively. However, debugging for these is not normally enabled.

Inspecting an app

@throwaway96
throwaway96 / lg-signage-model-platforms.md
Last active November 2, 2023 04:34
LG signage model platforms

Saturn 7 (S7)

Since 2011

  • VS20
  • WS10
  • WS50
    • 42WS50BS-B: FLATRON (2014)
      • SoC: LGE107DC-R
      • assy: EBT62659503
      • main PCB: EAX65105201(1.4) (marked 55WS30)
  • WL10
@throwaway96
throwaway96 / puttygen-webos.md
Last active January 17, 2025 02:12
Creating an SSH key with PuTTYgen for use on webOS TVs

How to Create an SSH Key for webOS with PuTTYgen

Introduction

This is a guide aimed at Windows users who want to set up public key SSH authentication for their webOS TVs. It is assumed that your TV is rooted.

This guide does not cover the Developer Mode SSH server on port 9922, although much of it still applies to that.

The SSH key that will be created can be used in applications such as PuTTY, WinSCP, and Filezilla. You'll be able to connect to your TV without having to type a password. You can even set the username in advance for one-click connections.

On other platforms (e.g., Linux), you're probably going to want to use ssh-keygen.

@throwaway96
throwaway96 / auxv-read.c
Created February 28, 2023 21:43
Program to test reading from /proc/self/auxv
#include <stdlib.h>
#include <stddef.h>
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <inttypes.h>
#include <assert.h>
#include <unistd.h>
#include <fcntl.h>
@throwaway96
throwaway96 / auxv.py
Created February 28, 2023 04:25
Python script for exploring auxiliary vectors (auxv) on Linux
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Combined into a single file for the sake of portability.
# Only tested with Python 3.10 and 3.11; may or may not also work with 3.9.
# Tested on x86-64, AArch32, and AArch64.
from __future__ import annotations
from typing import Final, NamedTuple, Type
@throwaway96
throwaway96 / crashd.md
Last active March 31, 2025 22:39
crashd instructions

News

EOL (2024-07-21)

I'm not going to be maintaining this document anymore. I'm leaving it as-is since much of the FAQ section is still accurate and has yet to be incorporated into other resources.

Use CanI.RootMy.TV to find an exploit for your TV.

New exploit for webOS 3.5+: DejaVuln (2024-04-21)