Questions tagged [privoxy]

30 questions
12
votes
1 answer

How to connect VPN using nodejs in ubuntu

I have the code in my nodejs file which gives me the following information host:"147.0.40.145" method:"aes-256-cfb" password:"9c359ad1ebeec200" port:38473 I need to use above information and want to connect VPN through it. I have used below code…
Profer
  • 553
  • 8
  • 40
  • 81
6
votes
3 answers

"Error while receiving a control message (SocketClosed): empty socket content" in Tor's stem controller

I'm working on a scraper which uses Tor, of which a simplified version is in this example project: https://github.com/khpeek/scraper-compose. The project has the following (simplified) structure: . ├── docker-compose.yml ├── privoxy │   ├──…
Kurt Peek
  • 52,165
  • 91
  • 301
  • 526
2
votes
1 answer

Page still get my IP although using Tor and Privoxy

I configured Tor browser and privoxy using https://jarroba.com/anonymous-scraping-by-tor-network/. When I checked my IP with http://icanhazip.com/, my IP addresses are changed; it works. But, when I tried to scrape desired website, I got: You are…
Falco Peregrinus
  • 507
  • 2
  • 7
  • 19
2
votes
1 answer

How to use Privoxy and Tor for a Scrapy project

I'm trying to scrape from http://www.apkmirror.com, but currently I'm not able to access the site anymore in my browser because its says the owner banned my IP address (see below). I'm trying to get around this by using Privoxy and Tor, similar to…
Kurt Peek
  • 52,165
  • 91
  • 301
  • 526
1
vote
0 answers

How to access http request headers from Privoxy?

I am trying to log all URLs that the user visited in a session on a remote device. I’m thinking of using Privoxy to capture such urls. The traffic from browser would be routed to Privoxy and then to internet. The issue is Privoxy logs are very…
1
vote
1 answer

An http.Get in Go appears not to be using the HTTP proxy specified in the HTTP_PROXY environment variable?

I'm running a Tor-Privoxy Docker container from https://hub.docker.com/r/dperson/torproxy, sudo docker run -it -p 8118:8118 -p 9050:9050 -d dperson/torproxy Consequently, I see that whereas my real IP address appears as 2620:149:13c0:a00::11, >…
Kurt Peek
  • 52,165
  • 91
  • 301
  • 526
1
vote
0 answers

Why my python requests are failling with a 503 status using PRIVOXY and TOR?

Im trying to use Privoxy and Tor to rotate my IP address in order to scrape a site without getting ban by IP. So I installed Tor with sudo apt intall tor and then modified the /etc/tor/torrc file enabling these lines: SocksPort 9050 ControlPort…
1
vote
0 answers

Privoxy - Block access to local network

I have setup a little privoxy server on my pi and i try now to block all ips in the local nerwork, but it does not work. My attempt was this: deny-access 128.0.0.1/2 192.168.0.0/16 It should stop all users of privoxy to access my local…
Play_it
  • 109
  • 1
  • 12
1
vote
2 answers

Why does Privoxy constantly listen 1087 port after updating macOS?

Environment macOS - 10.15.4 (19E266) V2rayU - 2.1.0 Description After updating macOS to 10.15.4, when I try to turn V2ray on, it says http error - listen tcp 127.0.0.1:1087: bind: address already in use With lsof -i :1087, I find that it is…
Ahei
  • 11
  • 1
1
vote
0 answers

how to convert multiple socks proxy to multiple http proxy correspondingly

There are 2 socks proxy bind on 2223, and 3333 for example, and I want to convert them to http proxy on 2224 and 3334 respectively. I know that privoxy is able to convert a socks proxy to a http proxy but it can only listen to one port at the same…
王亚宇
  • 11
  • 1
1
vote
0 answers

How can i force a socket timeout in privoxy even on on-going connection?

I would like to drop the on-going connection after a certain time. I checked the privoxy configuration options here and found 'socket-timeout'. 7.6.8. socket-timeout Specifies: Number of seconds after which a socket times out if no data is…
Harish Ved
  • 11
  • 2
1
vote
1 answer

How to let Scrapy access Tor after deploy to Scapinghub

I had configure the spider to access the Tor with setup Privoxy but this only work when I use in localhost as the setting I configure is pointed to 127.0.0.1: port. But when i deploy to the Scapinghub, the server side do not setup tor and privoxy as…
Terence Goh
  • 13
  • 1
  • 4
1
vote
1 answer

Privoxy whitelist faulty on redirect

My problem, in a nutshell, is the following: I use Privoxy to set up a whitelist of sites in Raspbian Jessie on Chromium. I have Chromium start on boot with the following snippet in lxsession/LXDE-pi/autostart: @privoxy @chromium --incognito…
Just some Guy
  • 123
  • 1
  • 6
0
votes
0 answers

Privoxy, block some clients(IP addresses) accessing certain web site but other clients are allowed

Is it possible block some clients accessing certain web site while other clients are allowed? if yes what is the configuration? ACL can't help and I had not any success with {+client-header-tagger{client-ip-address}},all samples i've found for…
0
votes
0 answers

Privoxy -> Postman Interceptor -> SOCKS Proxy chain failing

I am developing an application, and would like to chain requests from this application through Postman Interceptor followed by a SOCKS5 proxy. Application -> Privoxy -> Postman Interceptor -> SOCKS5 Server -> Web Server I was hoping this would work…
JohnWick
  • 4,929
  • 9
  • 37
  • 74
1
2