Questions tagged [proxies]

215 questions
0
votes
1 answer

How do I make a squid proxy not appear as a proxy online?

So I'm trying to set up a squid proxy that doesn't show up as a proxy on websites, I've tried different settings on my squid.conf but its not working. Im getting confused with the terms transparent proxy and anonymous proxy so I'm not really sure…
Elliot
  • 11
  • 1
0
votes
2 answers

How to change Proxy of Website If we have list of proxies By code in C#

I spent three last days to change the proxies of website by C# code and name of website "http://tweetermonitor.apphb.com/" but did not find a very well way to change the proxies from list which i have. Actually my site is extracting the data from…
0
votes
0 answers

System.Net.WebClient - what's the best way of getting (non-default) proxy credentials?

I am writing a (WiX Burn) installer that needs to get licence information from our ASP.NET server. We are using the System.Net.WebClient to make this request. Some of our customers are using authenticating proxies, which return 407 responses to our…
James Bateson
  • 1,069
  • 13
  • 20
0
votes
1 answer

CORS with Firebase+IONIC2+Angularjs: No 'Access-Control-Allow-Origin' still exists

I read all the suggestions and also followed the ionic suggestion how to overcome the CORS issue and get rid of the error: Access-Control-Allow-Origin with no success. I think I am missing the exact path conversion in proxies: The URL I am trying to…
Sami Koren
  • 53
  • 7
0
votes
1 answer

Problems building a flooding script that uses sockets

I'm trying to improve 2 projects of flooders (not mine) making my own script that these 2 ones. Doing that, I've almost finished but I'm stuck in a point where the script does nothing. Here is the code: import socket, threading, random, time,…
Allexj
  • 1,375
  • 6
  • 14
  • 29
0
votes
1 answer

Multitasking checking proxies

I wrote that little program: string sciezka = "http://proxyjudge.hell-spy.de/"; foreach(var ip in listBox1.Items) { ////////////////// CHANGES IP:PORT TO WEBPROXY HOST,PORT string host=null; …
globus25
  • 11
  • 1
0
votes
1 answer

Java reflection call default method from derived class

from previous posts I figured out that the way to dynamically call a default method is the following: final Class declaringClass = method.getDeclaringClass(); final Constructor constructor = …
0
votes
1 answer

Request Max Retries TOR

I am trying to connect to TOR's localhost loopback and send data through it. The address I am using is: 127.0.0.1:9050 I am using the following script to do this: import requesocks, requests session = requesocks.session() session.proxies = {'http':…
Rob
  • 115
  • 1
  • 2
  • 10
0
votes
2 answers

Tunneling through HTTP

WRITTEN IN JAVA Im creating a program that connects to a proxy and then tunneling to another server to send TCP packets, this is my code: { Socket skt = new Socket(proxy_address, proxy_port); PrintStream myOutput = new…
Masterban
  • 265
  • 1
  • 2
  • 7
0
votes
0 answers

Java URL with Socks4 Proxy

My problem is that i can't use Socks4 Proxies with urls because of the bug in java. It will just give me the malformed reply from socks server exeption. What i've tried: URL url = new URL("https://google.com"); URLConnection con =…
JefroyTJF
  • 1
  • 1
0
votes
2 answers

Spring security : @Secured : Error Add CGLIB to the class path or specify proxy interfaces

I hope someone can help me for this issue: I use Spring Security (3.1.0.RELEASE.jar) Security configuration: When i add @Secured('ROLE_ADMIN') to my Controller This error appear …
Lhb Laura
  • 55
  • 1
  • 5
0
votes
1 answer

Prompt for a username and password & set the proxies in AppleScript

I am having some trouble trying to set the proxies. Most of the code (below) works ok, I can capture the variables ok, however I cannot effectively pass them to the command, this syntax works great when setting the computername etc, but not with…
cybersurfr
  • 21
  • 5
0
votes
1 answer

Setting up proxy on WebBrowser

So basically I have a Webbrowser in my Form. What I want to do is to connect to a proxy so that once I open my webbrowser on whatismyip.com I have the proxies IP instead of my IP. I have been mad searching stackoverflow and google results but…
Topast
  • 1
0
votes
1 answer

Does urllib.getproxies work with https websites?

I am trying to use proxies to scrape some informations off a website, however I have heard that urlib.getProxies() doesn't work, especially for https websites.Here is my code: page = requests.get(url,proxies = urllib.getproxies()) So does this…
Nazariy
  • 717
  • 6
  • 23
0
votes
1 answer

Python requests with proxies 407 status code even though curl works

The following curl works: curl -vx proxy.example.com:8010 -U user:pass http://example.com And returns valid content with response code of 200. However, the same credentials used via python requests library yields a 407 status code (authentication…
Delos Chang
  • 1,823
  • 3
  • 27
  • 47