npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cordova-plugin-tun2socks-udp-associate

v1.2.0

Published

Cordova plugin to enable a system-wide VPN for Android devices.

Downloads

22

Readme

cordova-plugin-tun2socks-udp-associate

npm GitHub Repo stars

(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.

Table of Contents

Installation

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

Re-building the .so

$ ndk-build -C android

Pre-built binaries for "armeabi-v7a", "arm64-v8a", "x86" and "x86_64" are included.

Target Devices

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.

Javascript API

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.

Code Sources

We re-use and have used as a starting point open source code from Psiphon, specifically https://github.com/mei3am/ps.

  • src/android:
  • starting point: https://github.com/mei3am/ps/tree/master/Android/app
  • 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:
  • built upon Psiphon's fork of badvpn.
  • starting point: https://github.com/mei3am/ps/tree/master/Android/badvpn
  • uProxy-specific changes mostly confined to tun2socks/tun2socks.c and marked with // ==== UPROXY ==== (like Psiphon-specific changes)
  • src/android/libs/jsocks.jar:
  • http://jsocks.sourceforge.net/