Questions tagged [privoxy]
30 questions
0
votes
1 answer
SQUID-PRIVOXY-TOR issue
I successfully installed my SQUID-PRIVOXY-TOR chain to let some PC navigate over the TOR sites.
My SQUID version is 3.5.20;
my Privoxy version is 3.0.33;
my TOR version is 0.3.5.18.
I face with both V2 and V3 onion addresses, referring to V2 the…

Pietro
- 125
- 8
0
votes
1 answer
Privoxy as intercepting proxy
I want to setup Privoxy to be able to filter all http requests that my Wordpress page are sending and receiving, but I have hard time trying to do it.
I setup Wordpress with bitnami package and privoxy with apt-get install and found out that in…

Kostesky
- 1
- 1
0
votes
1 answer
Privoxy does not work with traffic from iptables
I have privoxy configured and working on port 8118. I can forward HTTP and HTTPS traffic when defining the http_proxy and https_proxy variables to point out to the proxy. Examples:
https_proxy=http://127.0.0.1:8118 curl -vvv…

saulotoledo
- 1,737
- 3
- 19
- 36
0
votes
1 answer
How do I make a forward-proxy server on k8s and ALB(or NLB)?
I created forward proxy server on EKS pods behind ALB(created by AWS Load Balancer Controller). All pod can take a response through 8118 port through ALB.
The resources like pod and ingress looked good to me. Then I tried if the proxy server work…

Steave Stark
- 13
- 1
- 4
0
votes
1 answer
How to run multiple Tor/Privoxy processes for Scrapy with different ips at the same time?
Can someone please explain me how to make it work?
I want to run multiple tors at the same time via privoxy for my scrapy project...
Each one should be with a different ip adress.

EXOR6
- 11
- 1
0
votes
1 answer
Docker run hangs when starting provixy prior to containerized app
I have a python FastAPI app that runs in a Kubernetes cluster on GKE. I'm trying to get the outbound traffic from the containers (pods) to route through privoxy. To test this I'm building/running the container on my local machine, but when I run…

Jed
- 1,823
- 4
- 20
- 52
0
votes
1 answer
How to use Scrapy with Python and Tor over Privoxy in Docker Compose
I'm trying to run a Scrapy with Python and tor and privoxy.
I'm using the scraper of khpeek/privoxy-tor-scraper in https://github.com/khpeek/privoxy-tor-scraper.Here is my directory structure:
- docker-compose.yml
- privoxy
- config
-…

Nikhrrazn
- 31
- 1
- 4
0
votes
0 answers
How to make tnethttpclient support socks 4/5 proxy delphi
The tnethttpclient of the Net package does not support socks 4/5 proxies, what
will be the possible approaches to add that support?

Newbie Tester
- 13
- 5
0
votes
1 answer
Requesting API Content on Localhost while using Tor + Privoxy
I'm using Tor, Privoxy, and Python to anonymously crawl sources on the web. Tor is configured with ControlPort 9051, while Privoxy is configured with forward-socks5 / localhost:9050 .
My scripts are working flawlessly, except when I request an API…

datasci
- 1,019
- 2
- 12
- 29
0
votes
1 answer
After Tor project installation, I got error
I am installing tor in my ubuntu 18.04 as per link.After completing all the steps, i am getting this error
$ sudo service tor status
● tor.service - Anonymizing overlay network for TCP (multi-instance-master)
Loaded: loaded…

Kumar Ajeet
- 72
- 12
0
votes
1 answer
how to scrape anonymously using Scrapy Tor Privoxy & UserAgent? (Windows 10)
The answer of this question was quite difficult to find since informations are scattered, and the title of the questions are sometime misleading. The answer below regroup all informations needed in one place.

J. Does
- 785
- 3
- 10
- 23
0
votes
0 answers
Scrapy spider stops abruptly
I am using this example here. To change my identity with Tor/Privoxy but i have faced several issues such as having to type "scrapy crawl something.py" multiple times to start the spider or having the spider stop abruptly in the middle of a crawl…

dythe
- 840
- 5
- 21
- 45
0
votes
0 answers
Scrapy and Tor/Privoxy unable to crawl [Connection refused 61]
I have the following code refered from here in my middlewares.py which i'm trying to change my ip in TOR with every request
def _set_new_ip():
with Controller.from_port(port=9051) as controller:
…

dythe
- 840
- 5
- 21
- 45
0
votes
1 answer
Splash with Privoxy/Tor do not work (localhost conflict?)
Splash doesn't work with Privoxy/Tor. Although
Privoxy/Tor works in the browser.
Splash works with a normal proxy. yield SplashRequest(url,
self.parse_func, args={'wait': 2.5, 'proxy':
'http://a_proxy_address:port', }).
Scrapy without Splash…

bl79
- 1,291
- 1
- 15
- 23
-1
votes
1 answer
How can I disable the display of errors 502 and 503 in Privoxy?
I use Privoxy in CURL queries for different sites.
$ch = curl_init($url);
...
curl_setopt($ch, CURLOPT_PROXY, "localhost:8118");
curl_setopt($ch, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
...
$result = curl_exec($ch);
Sometimes, if the site is not…

Anan
- 1