Proxy Provider with user:pass

emacs2

Newbie
Joined
Mar 24, 2011
Messages
42
Reaction score
5
I recently tested newipnow.com because i read a post on this forum. Nice service, but i have one problem. I need a provider that allows me to use proxies with user:pass because i can not add my IP every day to an "allowed users list" so i can use my proxies. That makes me insane. I did that now for almost a year.
Any ideas or provider tipps?
 
Most of the proxies providers provides them with user/pass authentification.

Check the marketplace or check buyproxies.org
 
+1 for byproxies.org

Also contact with "proxygo" he is member here.
 
i recently heard that hidemyass can be used to scrape with scrapebox. any experience with that?
 
i used buyproxies.org a year ago. the shared proy package wasnt really suited for scrapebox scraping because very fast 302 ban
 
most providers provide user/pass authorization but you can use ip authorization to get ip:port ;)+1 for proxy-hub.com
 
yea and ip auth sucks if you have a dynamic ip that changes on a daily basis :(
 
i asked my last provider if i could insert like a dynamic dns. well not possible so i was forced to cancle my subscription :(. i mean its not their fault. the main reason i created the posting was just to get more provides that you guys use.
i also took a look at fiverr.
 
then i have one proxy running on a n expensive server? what does this help wit hscrapebox scraping?
 
Do you want quality, or just a cheap solution? In all honesty, almost every single provider out offers the ability to use username:password with the proxies. That being said, you're really just left to read some reviews and pick the place that you feel most comfortable with. I've never used Scrapebox so I'm can't recommend anyone specifically, but there's plenty of good providers in the sales section to choose from.
 
i am looking for 10 proxies for 10$.
the following provide that, i have them from the forum, but without user:pass so you need to refresh the ip authorized EVERY DAY
http://www.newipnow.com/private-proxies.htmlhttp://instantproxies.com/http://www.newipnow.com/private-proxies.htmlshared package can not really be used for scrapebox. got banned really fast by google 302 and i am not doing multithreaded scrapebox harvesting.
 
If you dont want to refresh your IP every time , then i would suggest you just contact your ISP and ask them what is your IP address and then use that info in your computer as this happens only when your system takes IP assignment automatically from dhcp and its dynamic in nature..
 
ehm. i dont know how this is handled by ISPs in other countrys but here you get a new IP by force every 24 hours if you use a normal connection (not beeing a commercial company)
 
i am starting to think i should just write a script that automatically logs in with curl and sets my ip every day :)
or maybe a macro for firefox somehow.
 
i am starting to think i should just write a script that automatically logs in with curl and sets my ip every day :)
or maybe a macro for firefox somehow.

There you go then - problem solved by yourself.
 
yea somehow. i will post my script when i finsih it.
 
i got it working as a shellscript. works fine with a chronjob every day. of course username and password have to be set. maybe it helps someone else.
the script basically does what you otherwise would do manually. log in, paste your current ip and save.


#!/bin/bash
#get current ip, we use a website here. you can also use linux bash commands. i use an external service bacsue my linux is running inside a virtual machine
current_ip=$(curl curlmyip.com)
echo "current ip: $current_ip"

#login to the website


#init
curl --cookie-jar cjar --output /dev/null \
http://members.newipnow.com/login.php

#form date taken from source code of webpage
curl --cookie cjar --cookie-jar cjar \
--data 'username=usaaa' \
--data 'password=passs' \
--data 'form_id=user_login' \
--data 'op=Sign in' \
--location \
--output result.htm \
https://www.newipnow.com/members/login_validate.php

#submit the form with the ip
curl --cookie cjar --cookie-jar cjar -v\
--data "authips=$current_ip%0D%0A&button=Update" \
--output resultIP.htm \
https://www.newipnow.com/members/members.php
 
Back
Top