Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
cordova-plugin-tun2socks-udp-associate
Advanced tools
Cordova plugin to enable a system-wide VPN for Android devices.
(This is a fork of Xmader/cordova-plugin-tun2socks#xmader-udp. Original repo: UWNetworksLab/cordova-plugin-tun2socks)
This Cordova plugin provides the ability to start a system-wide VPN for Android devices.
We use tun2socks as an adapter; it receives all of the device’s traffic through the VPN network interface (TUN) and forwards it to a SOCKS server.
To handle DNS resolution, we use the UDP associate feature of SOCKS v5 proxy to intercept DNS queries over UDP.
Tested to work with socks5.js running on localhost.
Run the following commands on the root of your Cordova project folder:
$ npm i cordova-plugin-tun2socks-udp-associate -S
$ cordova plugin add cordova-plugin-tun2socks-udp-associate
$ cordova prepare android
$ ndk-build -C android
Pre-built binaries for "armeabi-v7a", "arm64-v8a", "x86" and "x86_64" are included.
This plugin targets Android devices running Lollipop (API 21), or higher. This requirement stems from calling addDisallowedApplication
, a VPNService.Builder API introduced in version 21, which allows the specified application's traffic to bypass the VPN.
start(socksServerAddress:string) : Promise<string>;
Starts the VPN service, and tunnels all the traffic to the SOCKS5 server at socksServerAddress
.
Restarts tunneling while preserving the VPN connection if called when the plugin is already running.
stop(): Promise<string>;
Stops the VPN service.
onDisconnect(): Promise<string>;
Sets a success callback on the returned promise, to be called if the VPN service gets revoked or disconnected.
deviceSupportsPlugin(): Promise<Boolean>;
Retruns true if the device runs the minimum required version for the plugin to function properly.
We re-use and have used as a starting point open source code from Psiphon, specifically https://github.com/mei3am/ps.
src/android
:Android/app/src/main/java/ca/psiphon/PsiphonTunnel.java
-> src/android/org/uproxy/tun2socks/Tunnel.java
Android/app/src/main/java/com/psiphon3/psiphonlibrary/TunnelManager.java
-> src/android/org/uproxy/tun2socks/TunnelManager.java
Android/app/src/main/java/com/psiphon3/psiphonlibrary/TunnelVpnService.java
-> src/android/org/uproxy/tun2socks/TunnelVpnService.java
src/badvpn
:// ==== UPROXY ====
(like Psiphon-specific changes)src/android/libs/jsocks.jar
:FAQs
Cordova plugin to enable a system-wide VPN for Android devices.
The npm package cordova-plugin-tun2socks-udp-associate receives a total of 0 weekly downloads. As such, cordova-plugin-tun2socks-udp-associate popularity was classified as not popular.
We found that cordova-plugin-tun2socks-udp-associate demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.