Skip to content

Commit fdef4ea

Browse files
authoredSep 10, 2021
fix(build-security): do not expose hostname to build framents (#7491)
Refs #7446
1 parent 5029b81 commit fdef4ea

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed
 

‎src/core/index.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if (process.env.NODE_ENV !== "production" && typeof window !== "undefined") {
1111
}
1212

1313
// eslint-disable-next-line no-undef
14-
const { GIT_DIRTY, GIT_COMMIT, PACKAGE_VERSION, HOSTNAME, BUILD_TIME } = buildInfo
14+
const { GIT_DIRTY, GIT_COMMIT, PACKAGE_VERSION, BUILD_TIME } = buildInfo
1515

1616
export default function SwaggerUI(opts) {
1717

@@ -21,7 +21,6 @@ export default function SwaggerUI(opts) {
2121
gitRevision: GIT_COMMIT,
2222
gitDirty: GIT_DIRTY,
2323
buildTimestamp: BUILD_TIME,
24-
machine: HOSTNAME
2524
}
2625

2726
const defaults = {

‎webpack/_config-builder.js

-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ export default function buildConfig(
6969
PACKAGE_VERSION: pkg.version,
7070
GIT_COMMIT: gitInfo.hash,
7171
GIT_DIRTY: gitInfo.dirty,
72-
HOSTNAME: os.hostname(),
7372
BUILD_TIME: new Date().toUTCString(),
7473
}),
7574
}),

0 commit comments

Comments
 (0)
Please sign in to comment.