Advertisement
XenoTheStrange

freeproxyupdate.com get fast proxies

Aug 29th, 2022 (edited)
936
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         freeproxyupdate.com get fast proxies
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  console.log a list of proxies from the below pages (socks4 and 5) if they are marked as "Fast"
  6. // @author       Wrath of Ainz / XenoTheStrange
  7. // @match        https://freeproxyupdate.com/socks5-proxy
  8. // @match        https://freeproxyupdate.com/socks4-proxy
  9. // @match        https://freeproxyupdate.com/socks-proxy
  10. // @icon         https://www.google.com/s2/favicons?sz=64&domain=freeproxyupdate.com
  11. // @grant        none
  12. // ==/UserScript==
  13.  
  14. (function() {
  15.     'use strict';
  16.     var proxylist = []
  17.     var table = document.querySelector(".list-proxy").children[1]
  18.     for (let i=0;i<table.children.length;i++){
  19.         let elm = table.children[i]
  20.         //elm.children are as follows from 0-10
  21.         //IP:PORT:COUNTRY:REGION/CITY:PROTOCOL:ANONYMITY:SPEED:LATENCY:RESPONSE:UPTIME:LAST_CHECKED
  22.         if (elm.children[6].innerText === "Fast"){
  23.             proxylist.push(
  24.                 elm.children[4].innerText +
  25.                 "://"+
  26.                 elm.children[0].innerText +
  27.                 ":" +
  28.                 elm.children[1].innerText
  29.         )
  30.     }
  31. }
  32. console.log(proxylist.join("\n"))
  33. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement