Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- **How to Create a 3 Layered Network that Masks All Traffic to and from Your Device Using PowerShell**
- In this tutorial, you will learn how to create a 3 layered network that masks all traffic to and from your device using PowerShell. This network will enhance your online security, privacy, and freedom by hiding your real IP address and location, encrypting and routing all traffic through a secure tunnel, and allowing access to any website or service that is blocked or restricted by your ISP or network administrator.
- **Prerequisites**
- To follow this tutorial, you will need the following:
- - A device running on Windows 11 operating system
- - PowerShell installed on your device
- - devcon.exe, a command-line tool that can be used to install, remove, and configure device drivers. You can download it from https://learn.microsoft.com/en-us/windows-hardware/drivers/download-the-wdk
- - CheckNetIsolation.exe, a command-line tool that can be used to enable loopback for UWP applications. You can find it in the `C:\\Windows\\System32` folder on your device.
- - plink.exe, a command-line tool that can be used to create SSH and SOCKS connections. You can download it from https://zzz.bwh.harvard.edu/plink/download.shtml
- - The package family name of the UWP application that acts as a server on your device. You can find it by running `iotstartup list` on PowerShell.
- - The server address, username, password, and pre-shared key of the VPN server that supports L2TP/IPsec protocol. You will need to obtain these from your VPN provider or administrator.
- **Steps**
- 1. Create a loopback network adapter
- A loopback network adapter is a virtual network interface that can be used to communicate with localhost (127.0.0.1) or any other IP address assigned to it³. This adapter will act as the default gateway for all outbound connections from your device.
- To create a loopback network adapter, open PowerShell as an administrator and run the following commands:
- ```powershell
- # Create a loopback network adapter
- $loopback = Get-WMIObject win32_NetworkAdapter | where {$_.ServiceName -eq 'msloop'}
- if ($loopback -eq $null) {
- # If the loopback adapter does not exist, install it using devcon.exe
- .\\devcon.exe -r install $env:windir\\Inf\\Netloop.inf *MSLOOP | Out-Null
- $loopback = Get-WMIObject win32_NetworkAdapter | where {$_.ServiceName -eq 'msloop'}
- }
- ```
- This script will check if the loopback adapter already exists on your device. If not, it will use devcon.exe to install it using the Netloop.inf file located in the Windows folder.
- 2. Enable the loopback adapter and assign it an IP address
- After creating the loopback adapter, you need to enable it and assign it an IP address. You can use any IP address that is not already used by another network interface on your device. In this tutorial, we will use 10.0.0.1 as an example.
- To enable the loopback adapter and assign it an IP address, run the following commands:
- ```powershell
- # Enable the loopback adapter and assign it an IP address
- $loopback.Enable()
- $loopbackConfig = Get-WMIObject win32_NetworkAdapterConfiguration | where {$_.InterfaceIndex -eq $loopback.InterfaceIndex}
- $loopbackConfig.EnableStatic("10.0.0.1", "255.255.255.0")
- ```
- This script will enable the loopback adapter and configure it to use 10.0.0.1 as its static IP address with a subnet mask of 255.255.255.0.
- 3. Enable the inbound loopback policy for Windows IoT Core
- Windows IoT Core is a version of Windows 10 that is optimized for smaller devices that run on ARM or x86/x64 processors⁴. Windows IoT Core has a security feature that prevents inbound connections from localhost by default⁵. This means that you cannot access the UWP application that acts as a server on your device from the loopback adapter.
- To enable the inbound loopback policy for Windows IoT Core, run the following command:
- ```powershell
- # Enable the inbound loopback policy for Windows IoT Core
- reg add hklm\\system\\currentcontrolset\\services\\mpssvc\\parameters /v IoTInboundLoopbackPolicy /t REG_DWORD /d 1
- ```
- This command will add a registry value named IoTInboundLoopbackPolicy with a data of 1 under the mpssvc\parameters key. This will allow inbound connections from localhost on Windows IoT Core devices.
- 4. Enable loopback for a UWP application that acts as a server
- A UWP application is an app that can run on any device that supports Windows 10, such as PCs, tablets, phones, and IoT devices⁶. A UWP application that acts as a server is an app that can listen for and respond to network requests from other devices or apps. For example, a UWP app that hosts a web server or a database.
- To enable loopback for a UWP application that acts as a server, you need to know its package family name. A package family name is a unique identifier for a UWP app that consists of its package name and publisher hash⁷. For example, the package family name of the Microsoft Edge app is Microsoft.MicrosoftEdge_8wekyb3d8bbwe.
- To enable loopback for a UWP application that acts as a server, run the following command:
- ```powershell
- # Enable loopback for a UWP application that acts as a server
- CheckNetIsolation.exe LoopbackExempt -is -n=<AppContainer or Package Family>
- ```
- Replace <AppContainer or Package Family> with the package family name of the UWP app that you want to enable loopback for. For example, if you want to enable loopback for the Microsoft Edge app, run this command:
- ```powershell
- CheckNetIsolation.exe LoopbackExempt -is -n=Microsoft.MicrosoftEdge_8wekyb3d8bbwe
- ```
- This command will use CheckNetIsolation.exe to add the UWP app to the loopback exempt list. This will allow the app to accept connections from localhost.
- 5. Create a VPN connection to a remote server that supports L2TP/IPsec
- A VPN connection is a secure tunnel between your device and a remote server that supports VPN protocols⁸. A VPN connection will encrypt and route all traffic to and from the loopback adapter through the VPN server, hiding your real IP address and location.
- To create a VPN connection to a remote server that supports L2TP/IPsec, you need to know its server address, username, password, and pre-shared key. L2TP/IPsec is a VPN protocol that combines Layer 2 Tunneling Protocol (L2TP) with Internet Protocol Security (IPsec) for encryption and authentication⁹. A pre-shared key is a secret password that is shared between the VPN client and the VPN server.
- To create a VPN connection to a remote server that supports L2TP/IPsec, run the following commands:
- ```powershell
- # Create a VPN connection to a remote server that supports L2TP/IPsec
- Add-VpnConnection -Name "VPN" -ServerAddress "<server address>" -TunnelType L2TP -L2tpPsk "<pre-shared key>" -AuthenticationMethod Pap -Force
- Connect-VpnConnection -Name "VPN"
- ```
- Replace <server address> with the IP address or domain name of the VPN server. Replace <pre-shared key> with the secret password of the VPN server. For example, if you want to connect to a VPN server with an IP address of 192.168.1.1 and a pre-shared key of abc123, run these commands:
- ```powershell
- Add-VpnConnection -Name "VPN" -ServerAddress "192.168.1.1" -TunnelType L2TP -L2tpPsk "abc123" -AuthenticationMethod Pap -Force
- Connect-VpnConnection -Name "VPN"
- ```
- These commands will use Add-VpnConnection and Connect-VpnConnection cmdlets to create and connect to a VPN connection named "VPN" with the specified parameters.
- 6. Configure the VPN connection to use the loopback adapter as the default gateway
- After creating and connecting to the VPN connection, you need to configure it to use the loopback adapter as the default gateway. A default gateway is a network device that routes traffic from one network to another[^10^]. By using the loopback adapter as the default gateway, you will ensure that all outbound traffic from your device will go through the loopback adapter and then through the VPN connection.
- To configure the VPN connection to use the loopback adapter as the default gateway, run the following commands:
- ```powershell
- # Configure the VPN connection to use the loopback adapter as the default gateway
- $vpn = Get-WMIObject win32_NetworkAdapter | where {$_.NetConnectionID -eq 'VPN'}
- $vpnConfig = Get-WMIObject win32_NetworkAdapterConfiguration | where {$_.InterfaceIndex -eq $vpn.InterfaceIndex}
- $vpnConfig.SetGateways("10.0.0.1", 1)
- ```
- These commands will get the network adapter and configuration objects of the VPN connection using Get-WMIObject cmdlet. Then they will use SetGateways method to set 10.0.0.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement