Skip to content

Instantly share code, notes, and snippets.

@jaimemrjm
Last active January 21, 2023 20:43
Show Gist options
  • Save jaimemrjm/c91e0e19802fddae67d795ebb32f16ed to your computer and use it in GitHub Desktop.
Save jaimemrjm/c91e0e19802fddae67d795ebb32f16ed to your computer and use it in GitHub Desktop.
Hacking the Lidl Silvercrest Zigbee Smart Home Gateway

Hacking the Lidl Zigbee Gateway from Linux

Connecting to the device by 3.3V TTL USB-Serial adapter

screen /dev/ttyUSB0 38400,cs8,-ixon,-ixoff

Connecting by SSH at first time

ssh -oHostKeyAlgorithms=+ssh-dss root@<local-ip-address> -p 2333

Fixing the SSH connection for the hacking scripts

Edit your ~/.ssh/config file and add this:

Host gateway
    Hostname <local-ip-address>
    HostKeyAlgorithms=+ssh-dss

Reference

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment