new free vpns

This commit is contained in:
localhost 2026-04-07 20:08:10 +02:00
parent 7814aa7aa4
commit 822a2c5e5f
6 changed files with 3346 additions and 0 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -15,10 +15,12 @@
}, },
"dependencies": { "dependencies": {
"@elysiajs/static": "^1.4.0", "@elysiajs/static": "^1.4.0",
"@types/crypto-js": "^4.2.2",
"@types/html-minifier-next": "^2.1.0", "@types/html-minifier-next": "^2.1.0",
"@types/pg": "^8.11.10", "@types/pg": "^8.11.10",
"@types/ws": "^8.18.1", "@types/ws": "^8.18.1",
"age-encryption": "^0.2.4", "age-encryption": "^0.2.4",
"crypto-js": "^4.2.0",
"date-fns": "^4.1.0", "date-fns": "^4.1.0",
"elysia": "^1.1.25", "elysia": "^1.1.25",
"eta": "^4.0.1", "eta": "^4.0.1",

11
ranges/planet.txt Normal file
View File

@ -0,0 +1,11 @@
38.165.232.58/32
57.128.102.31/32
57.129.2.17/32
185.191.204.202/32
95.110.229.220/32
38.165.228.24/32
51.158.206.8/32
110.172.145.222/32
198.244.176.53/32
216.106.183.243/32
15.204.97.212/32

6
ranges/turbovpn.txt Normal file
View File

@ -0,0 +1,6 @@
128.1.186.123/32
138.199.42.123/32
162.19.205.94/32
169.150.210.53/32
198.244.234.214/32
79.110.54.211/32

3312
scripts/planetvpn.ts Normal file

File diff suppressed because it is too large Load Diff

15
scripts/turbovpn.ts Normal file
View File

@ -0,0 +1,15 @@
const json = await (await fetch('https://turbovpn.com/api/mms/serverlist/v1/webext/servers_list', {
method: 'POST',
headers: {
'X-App-Type': '302',
'X-App-Ver-Code': '202507111355',
'content-type': 'application/json'
},
body: JSON.stringify({
"country": "NL",
"user_ip": "1.1.1.1",
"os_lang": "en-us",
"login_id": "0"
})
})).json()
Bun.write('ranges/turbovpn.txt', json.servers.map(s => s.host_ip + '/32').join('\n'))