Skip to content

Instantly share code, notes, and snippets.

@pellaeon
Last active July 3, 2017 22:33
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save pellaeon/134a69e43a64314c99e9500eef11b05b to your computer and use it in GitHub Desktop.
Get proxy list from various sites
// open http://proxylist.hidemyass.com/search-1292985 and
// run following code in browser developer console
aaa = '';
$('table#listable > tbody > tr').each(function(index){
text = $(this)[0].innerText;
textarr = text.split(/\s+/);
proxystr = textarr[2].concat(":",textarr[3]);
//console.log(proxystr);
aaa = aaa.concat(proxystr, "\n");
});
aaa//print on console, copy this
// open https://www.us-proxy.org/ and
// run following code in browser developer console
bb = '';
$('table#proxylisttable > tbody > tr').each(function () {
bb += $(this)[0].children[0].innerText;
bb += ":";
bb += $(this)[0].children[1].innerText;
bb += "\n";
});
bb//print on console, copy this
@pellaeon
Copy link
Author

HideMyAss proxy mostly doesn't work as of 2017/2/28.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment