Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vpn-fetch

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vpn-fetch

Start multiple vpn servers and make network requests through them

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8
increased by60%
Maintainers
1
Weekly downloads
 
Created
Source

Install

Dependencies

This package depends on openvpn and net-tools

sudo apt install openvpn net-tools

NPM install:

npm install vpn-fetch

About

I created this package out of necessity, and as I haven’t found anything similar in my research I decided to publish it to help anyone out there who are in the same rabbit role that I went trying to achieve the functionality. It is heavily based on this blog post found in this question. To make the network requests it uses the got package, as it supports the localAddress option.

When executed, it will ask for the root password, it is asked because the openvpn client needs to be run as sudo.

Example

The VPNFetch constructor takes the VPN config file, and a txt file with the VPN server username and password sepparated by a newline.


import { VPNFetch } from 'vpn-fetch'
import { readdir } from 'fs/promises'

(async ()=>{

  const configFiles = await readdir('/etc/openvpn/ovpn_tcp')
  const randomConfig1 = configFiles[Math.floor(Math.random() * configFiles.length)]

  const vpnFetch1 = new VPNFetch(
    '/etc/openvpn/ovpn_tcp/' + randomConfig1,
    './login_information'
  )
  await vpnFetch1.connect()

  const randomConfig2 = configFiles[Math.floor(Math.random() * configFiles.length)]
  const vpnFetch2 = new VPNFetch(
    '/etc/openvpn/ovpn_tcp/' + randomConfig2,
    './login_information'
  )
  await vpnFetch2.connect()

  const response1 = await vpnFetch1.get('https://ifconfig.me/ip')
  console.log('IP 1:', response1.body)

  const response2 = await vpnFetch2.get('https://ifconfig.me/ip')
  console.log('IP 2:', response2.body)

})()

Keywords

FAQs

Package last updated on 20 Sep 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc