Questions tagged [little-proxy]

LittleProxy is a high performance HTTP proxy written in Java

From LittleProxy README:

LittleProxy is a high performance HTTP proxy written in Java atop Trustin Lee's excellent Netty event-based networking library. It's quite stable, performs well, and is easy to integrate into your projects.

Official Website: http://www.littleshoot.org/littleproxy

Useful Links:

35 questions
1
vote
1 answer

how to configure the little proxy as a transparent proxy

I have 2 network cards. The first one is network card with the address 192.168.5.3, the second one is network card with the address 10.1.1.252. How to configure using proxy as a transparent proxy, meaning the client only need to change the gateway…
HoaiNP
  • 21
  • 1
  • 7
1
vote
0 answers

Can I perform an http call in proxyToServerRequest method from LittleProxy?

I'm implementing a proxy server, which works locally in android app and redirects all http calls from application webView to some secure server, which return responses back as if it were initial web resource. Responses should be returned back to…
G. Kh.
  • 196
  • 1
  • 12
1
vote
2 answers

In LittleProxy, how to set proxy ip and port

In LittleProxy, how to set proxy ip and port? The sample in their website : HttpProxyServer server = DefaultHttpProxyServer.bootstrap() .withPort(8080) .start();
Kudi
  • 49
  • 1
  • 8
1
vote
2 answers

Setting remote ip and port in littleproxy

In littleProxy, how can I set the remote ip and port? The sample in their website : HttpProxyServer server = DefaultHttpProxyServer.bootstrap() .withPort(8080) .start(); only sets the local port.
Nvn
  • 23
  • 7
1
vote
2 answers

Can Proxy insert headers to a HTTPS request?

I am trying to insert a header on all HTTPS requests that passes my proxy server. I read that HTTPS request headers can not be tampered with. Is there any way that I can insert a header on HTTPS requests?
Jee Seok Yoon
  • 4,716
  • 9
  • 32
  • 47
0
votes
0 answers

Problem reading FullHttpRequest request content with Proxy

I'm trying to develop code that can filter requests, modify them, etc. The Proxy intercepts requests correctly and is able to display the correct Uri for example. However, I cannot read the contents of the http package. In fact, the request.content…
0
votes
0 answers

Using LittleProxy to intercept, manipulate and forward requests

It is my first time doing anything with proxies etc. so I dont know how to do this with LittleProxy. I already set my browser up and downloaded littleproxy-mitm, added it as a mitm and was able to get the proxy itself running but I dont know how to…
0
votes
1 answer

Java littleproxy mitm: getting response body

I am trying to use littleproxy-mitm to inspect traffic. I have access to the headers and can easily read them. However, I cant find the body of a response consitently. To see if I can get the body I am using this testing my app by visiting…
Mr Krisey
  • 109
  • 2
  • 10
0
votes
1 answer

How do I get browsermob-proxy to record ALL response bodies

I'm having trouble with browsermob-proxy and its har exporting feature. Some response bodies are not logged (the entire "text" field is missing) My setup (using browsermob-proxy 2.1.4) curl -X POST http://localhost:8080/proxy?port=9091 curl -X PUT…
Cyberwiz
  • 11,027
  • 3
  • 20
  • 40
0
votes
1 answer

littleproxy receive only DefaultHttpResponse impl of HttpObject

I am using littleproxy for analize responses in my app, there is my extension of HttpFiltersAdapter class where i override proxyToClientResponse method, input parameter for method is HttpObject HttpObject has several extension classes -…
Alexdharma
  • 55
  • 1
  • 8
0
votes
1 answer

Is Littleproxy suitable/ready for production?

I have been playing with LittleProxy for a while and I am happy with it. I am not wondering how scalable the solution is, and if it is mature enough to be used in a production environment? Do you use it in production? Regards Gilles
Gilles
  • 357
  • 3
  • 20
0
votes
1 answer

How to install SSL certificated created using little proxy in firefox and safari browser?

i am using browsermob proxy latest version with selenium script i am intercepting http requests and adding custom headers on every request and routing all http and https traffic through browsermob proxy when https request is made in firefox and…
0
votes
1 answer

Need to get body from HttpObjectAggregator.AggregatedFullHttpRequest in Netty

I am using a configurable proxy(little proxy) to listen on requests generated from client end i.e chrome browser. I need the body of the post request. In the pipeline, this is the one i added. I thought i will be getting a FullHttpRequest, but…
karthik27
  • 484
  • 1
  • 4
  • 12
0
votes
1 answer

LittleProxy and company certificates

I am currently investigating LittleProxy to use it as a man-in-the-middle between the company and the systems it is using outside of the company. We will provide logging and auditing capabilities in the middle. SSL (https) is used to connect the…
0
votes
1 answer

Add channel handler for gzip deflate in netty proxy

In the following file: https://github.com/adamfisk/LittleProxy/blob/master/src/main/java/org/littleshoot/proxy/impl/ProxyToServerConnection.java I need to add a 'channel handler' which will deflate gzipped content. I have no idea how to do this…
nfvindaloo
  • 948
  • 2
  • 11
  • 24