I would like to be able to inspect traffic from my android device. I have a
transparent squid proxy working with SSL bump (using WiFi to get traffic
through my proxy server). Everything works fine as long as I go through a
browser. But I would like to see the other traffic which the OS and other
ap
I got things working (at least they appear to be working now). For some
unknown reason when I changed the iptables entry for port 443 from
10.1.10.200/28 to 10.1.10.0/24 it started to work. Even though the HTTP side
worked either way.
If anyone knows what was going on there I would appreciate under
Amos Jeffries wrote
> On 2/06/2015 10:57 a.m., dkandle wrote:
>
>> I also don't understand why the first ip address specification didn't
>> work
>> but I had to change the 10.1.10.1 to 10.100 which is the exact ip address
>> of
>> the client. I thoug
Slight correction to my iptables:
iptables -t nat -A PREROUTING -i eth2 -s 10.1.10.200/28 -p tcp --dport 80 -j
REDIRECT --to-port 3128
iptables -t nat -A PREROUTING -i eth2 -s 10.1.10.200/28 -p tcp --dport 443
-j REDIRECT --to-port 3129
I also don't understand why the first ip address specificati
Thanks James. That got me most of the way there.
I have the HTTP proxy working now but I have some strange (to me) issues
with SSL traffic.
I am using the ssl-bump
I am redirecting both ports 80 and 443
with:
iptables -t nat -A PREROUTING -i eth2 -s 10.1.10.1/28 -p tcp --dport 80 -j
REDIRECT --to
I am using Ubuntu 14.04 on a server with multiple NICs. I would like to set
it up as a transparent proxy. I have the router working and I had squid
working as an explicit proxy (where I set the IP address of the server as
the proxy in my client's browser).
Is there a good tutorial which covers thi