pknoth
Hi,
I am building an https proxy and need to forward the encrypted incoming payload of the requests, the proxy being a Man in the middle. I ended up building a gen_tcp server that replies to CONNECT queries from the client by connecting to the remote secure host and forwarding the payloads from both sides.
[gen_tcp listen, accepts...]
def handle_info({:tcp, socket, payload}, %State{socket: socket, client_socket: nil} = state) do
[set host, port...]
with {:ok, client_socket} <-
:ssl.connect(
String.to_charlist(host),
port || 443,
[
{:log_level, :all},
{:packet, :raw},
{:mode, :binary},
{:verify, :verify_peer},
{:cacerts, :public_key.cacerts_get()}
],
@connect_timeout
) do
:gen_tcp.send(socket, "HTTP/1.1 200 OK\r\n\r\n")
:inet.setopts(socket, active: :once)
:ssl.setopts(client_socket, active: :once)
{:noreply, %{state | client_socket: client_socket, start: start}}
end
end
[...]
def handle_info({:ssl, socket, payload}, %State{client_socket: socket} = state) do
:ssl.setopts(socket, active: :once)
:gen_tcp.send(state.socket, payload)
{:noreply, state}
end
def handle_info({:tcp, socket, payload}, %State{socket: socket} = state) do
:inet.setopts(socket, active: :once)
:ssl.send(state.client_socket, payload)
{:noreply, state}
end
The problem here is that the incoming payload (from the remote server) is decrypted by the erlang :ssl library which makes the client receive clear messages instead of encrypted ones, raising an SSL error. Note that the forwarding looks fine with the HTTP version of the snippet.
Does anyone know if there is an :ssl.connect option that disables payload decrypt?
Thanks.
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
I’ve followed the Phoenix LiveView file upload code here Uploads — Phoenix LiveView v1.0.0-rc.7 and so far everything works just fine wit...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Other Trending Topics
Several weeks ago I was nerd snipped by browsers support for View Transitions API and took to myself to see how that goes in LiveView. Af...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #iex
- #elixirconf-us
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 3- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
D4no0
This doesn’t make much sense. SSL is part of Presentation Layer(Layer 6) when TCP is at Transport Layer(Layer 4), you don’t want the features provided by SSL protocol, you don’t use it, hence why
:gen_tcpand:sslare separated applications.Can you be more specific here, is it a generic http client that uses
:sslunder the hood and what kind of behavior you are actually expecting?The generic advice would be:
httpinstead ofhttps(assuming this is what you want to do), even though this is not the best idea even in private networks these days;:sslon client, nothing hard (at least if you understand how certificates work);pknoth
Thank you for your reply.
The issue was the proxy was performing the handshake instead of the client which caused the encryption/decrypt problem. The solution was to open a TCP connection toward the target server (not an SSL one) and let the client upgrade to TLS.
D4no0
Makes complete sense if you are using
:sslon proxy.In your case this is not a
httpsproxy, but one at TCP/SSL level, as once the ssl handshake is complete, there is no way you can decrypt and filter the traffic on your proxy.