Skip to content

Instantly share code, notes, and snippets.

@pauldc31
pauldc31 / xanes_xi_protocol_rev_eng.md
Created November 27, 2020 00:02 — forked from HappyCodingRobot/xanes_xi_protocol_rev_eng.md
XANES X1 Programmable LED light badge protocoll reverse engineering

XANES X1 Programmable LED light badge protocoll reverse engineering

General informations

  • VID:PID - 0416:5020
  • Product ID: LS32 Custm HID
  • uses HID Protocoll
  • 2 endpoints, uses endpoint 1 for data, all with report 0
  • 64 byte paket size

The Protocol

@pauldc31
pauldc31 / install-pptp-vpn-server.sh
Created August 18, 2020 21:59 — forked from moeiscool/install-pptp-vpn-server.sh
Install PPPTP VPN Server on Ubuntu 18.04
echo "======================="
echo "Installing PPTP VPN Server..."
echo "======================="
apt install pptpd -y
echo "Setting VPN Server IP : localip 172.16.0.1"
if grep -q "localip 172.16.0.1" /etc/pptpd.conf; then
echo "Already set."
else
sed -i 's/localip/#localip/g' /etc/pptpd.conf
echo "localip 172.16.0.1" >> /etc/pptpd.conf