Skip to content

Commit 852c312

Browse files
committed
Make the enableUnixSockets to be false by default
1 parent 52a1063 commit 852c312

File tree

4 files changed

+15
-12
lines changed

4 files changed

+15
-12
lines changed

documentation/2-options.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -944,9 +944,9 @@ As the [specification](https://tools.ietf.org/html/rfc7231#section-6.4) prefers
944944
### `enableUnixSockets`
945945

946946
**Type: `boolean`**\
947-
**Default: `true`**
947+
**Default: `false`**
948948

949-
When enabled, requests can also be sent via [UNIX Domain Sockets](https://serverfault.com/questions/124517/what-is-the-difference-between-unix-sockets-and-tcp-ip-sockets). Please note that in the upcoming major release (Got v13) this default will be changed to `false` for security reasons.
949+
When enabled, requests can also be sent via [UNIX Domain Sockets](https://serverfault.com/questions/124517/what-is-the-difference-between-unix-sockets-and-tcp-ip-sockets).
950950

951951
> **Warning**
952952
> Make sure you do your own URL sanitizing if you accept untrusted user input for the URL.
@@ -965,11 +965,10 @@ await got('http://unix:/var/run/docker.sock:/containers/json', {enableUnixSocket
965965
// Or without protocol (HTTP by default)
966966
await got('unix:/var/run/docker.sock:/containers/json', {enableUnixSockets: true});
967967

968-
// Disable Unix sockets
969-
const gotUnixSocketsDisabled = got.extend({enableUnixSockets: false});
968+
// Enable Unix sockets for the whole instance.
969+
const gotWithUnixSockets = got.extend({enableUnixSockets: true});
970970

971-
// RequestError: Using UNIX domain sockets but option `enableUnixSockets` is not enabled
972-
await gotUnixSocketsDisabled('http://unix:/var/run/docker.sock:/containers/json');
971+
await gotWithUnixSockets('http://unix:/var/run/docker.sock:/containers/json');
973972
```
974973

975974
## Methods

source/core/options.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ const defaultInternals: Options['_internals'] = {
827827
setHost: true,
828828
maxHeaderSize: undefined,
829829
signal: undefined,
830-
enableUnixSockets: true,
830+
enableUnixSockets: false,
831831
};
832832

833833
const cloneInternals = (internals: typeof defaultInternals) => {

test/redirects.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,16 @@ test('cannot redirect to UNIX protocol when UNIX sockets are enabled', withServe
4646
server.get('/protocol', unixProtocol);
4747
server.get('/hostname', unixHostname);
4848

49-
t.true(got.defaults.options.enableUnixSockets);
49+
const gotUnixSocketsEnabled = got.extend({enableUnixSockets: true});
5050

51-
await t.throwsAsync(got('protocol'), {
51+
t.true(gotUnixSocketsEnabled.defaults.options.enableUnixSockets);
52+
53+
await t.throwsAsync(gotUnixSocketsEnabled('protocol'), {
5254
message: 'Cannot redirect to UNIX socket',
5355
instanceOf: RequestError,
5456
});
5557

56-
await t.throwsAsync(got('hostname'), {
58+
await t.throwsAsync(gotUnixSocketsEnabled('hostname'), {
5759
message: 'Cannot redirect to UNIX socket',
5860
instanceOf: RequestError,
5961
});

test/unix-socket.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ import process from 'process';
22
import {format} from 'util';
33
import test from 'ava';
44
import type {Handler} from 'express';
5-
import got from '../source/index.js';
5+
import baseGot from '../source/index.js';
66
import {withSocketServer} from './helpers/with-server.js';
77

8+
const got = baseGot.extend({enableUnixSockets: true});
9+
810
const okHandler: Handler = (_request, response) => {
911
response.end('ok');
1012
};
@@ -21,7 +23,7 @@ if (process.platform !== 'win32') {
2123
server.on('/', okHandler);
2224

2325
const url = format('http://unix:%s:%s', server.socketPath, '/');
24-
t.is((await got(url)).body, 'ok');
26+
t.is((await got(url, {})).body, 'ok');
2527
});
2628

2729
test('protocol-less works', withSocketServer, async (t, server) => {

0 commit comments

Comments
 (0)