DIY LAN Turtle - Building a Stealth Remote Access Device 🔒
In this post, I share my experience building a DIY stealth remote access device using the Luckfox Pico Max RV1106. Inspired by the commercial LAN Turtle but seeking a more affordable solution, I created this device to enable secure remote network access without complex port forwarding or traditional VPN setups. This project served as both a practical solution and a valuable learning experience in hardware integration and network security.
Introduction
My need was simple: I wanted reliable remote access to local networks without the hassle of router configuration or complex VPN server setups. While the commercial LAN Turtle offers these capabilities, its premium price point led me to explore building my own solution. This project became an opportunity to not only create a cost-effective alternative but also to deepen my understanding of the underlying technologies.
Hardware Selection 🛠️
After researching various options, I chose the Luckfox Pico Max RV1106 as the core of my project. This compact device offers an impressive set of features at a remarkably affordable price point.
Specifications
Component | Details |
---|---|
Processor | Cortex A7 @ 1.2GHz |
NPU | Pro: 0.5 TOPS, supports int4, int8, and int16 |
Max: 1 TOPS, supports int4, int8, and int16 | |
ISP | Input 5M @30fps (Max) |
Memory | Pro: 128MB DDR2 |
Max: 256MB DDR2 | |
USB | USB 2.0 Host/Device |
Camera | MIPI CSI 2-lane |
GPIO | 26 × GPIO pins |
Ethernet Port | 10/100M Ethernet controller and embedded PHY |
Default Storage | SPI NAND FLASH (256MB) |
While it lacks some features I would have liked (PoE and Gigabit Ethernet), the price-to-performance ratio made it an excellent choice for my project.
🛍️ Shopping List
Here’s what I needed for this project:
- Luckfox Pico Max RV1106 - €18
- 64GB microSD card - €10
- microSD to USB adapter - €2
Alternative Hardware Options
For those interested in trying different hardware, here are some alternatives I considered:
- Raspberry Pi Zero W + USB Ethernet
- Orange Pi Zero 3
- GL.iNet GL-MT300N V2
🚀 Implementation
I performed all testing on Linux. Here’s how I put everything together:
Setting Up the SDK
First, I prepared my development environment:
|
|
|
|
In the lunch script, I selected:
- RV1106 board [6]
- SD Card boot [0]
- Ubuntu OS [1]
Building the Operating System ⚙️
I discovered that the default kernel needed modification to support the VPN service. Here’s how I enabled the required UTS namespace:
|
|
I navigated to:
|
|
After saving the configuration and building the kernel, the output files were stored in luckfox-pico/output/image/
.
📀 OS Installation
I’ve shared my compiled files here. To extract them:
|
|
For installation, I used a Windows VM and the SocToolKit
software from the SDK (luckfox-pico/tools/windows/SocToolKit
). The process was straightforward - just selecting the compiled image files and target microSD card. The official documentation provides detailed instructions if needed.
VPN Setup
For remote access, I chose Twingate because of its excellent free tier that perfectly suited my needs.
- Created a Twingate account
- Created a new Network (Network > Remote Networks > + Remote Network - select “other”)
- Added a Connector (Network > “network name” > + Add Connector)
- Installed the Connector on my Luckfox Pico (“Inside Connector” > Linux > Generate Tokens > Copy Command)
- SSH’d into the Luckfox Pico and ran:
|
|
Client Setup
- Installed the client:
|
|
- Configured:
|
|
- Started the service:
|
|
Resources Configuration
I added resources through the Twingate dashboard (Network > Resources > + Resource)
Testing the Setup
I started by adding SSH access to my Luckfox Pico as a resource. Then, I scanned my network for potential targets:
|
|
Additional resources like RDP or VNC can be added as needed.
3D Printed Case
To protect my device and make it more portable, I looked into printing a case. Here are the models I found most useful:
Future Improvements
Here’s what I’m planning to add to my project:
- ESP32 integration
- Battery installation
- RTC implementation
- Penetration testing scripts
- Custom OS with ESP32, security tools, and testing scripts