After writing some tests using mitm, I stumbled upon this simple problem: `Net.Socket#connect()` isn't stubbed by mitm, therefore the connection won't be intercepted. ```js const Net = require('net') const socket = new Net.Socket() socket.connect(22, 'example.org') // Not intercepted ```