Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-server
Commits
c1c8251a
Commit
c1c8251a
authored
4 years ago
by
Florian Spreckelsen
Browse files
Options
Downloads
Plain Diff
Merge branch 'dev' into 39-query-language-bug-quotes-around-year
parents
8ae5dda5
2f697124
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+6
-10
6 additions, 10 deletions
CHANGELOG.md
src/main/java/caosdb/server/ServerProperties.java
+4
-1
4 additions, 1 deletion
src/main/java/caosdb/server/ServerProperties.java
with
10 additions
and
11 deletions
CHANGELOG.md
+
6
−
10
View file @
c1c8251a
...
...
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
*
`Entity/names`
resource for retrieving all known entity names.
-
`Entity/names`
resource for retrieving all known entity names.
-
Scripting is simplified by adding a
`home`
directory, of which a copy is
created for each called script and set as the
`HOME`
environment variable.
-
[
bend_symlinks.sh
](
misc/bend_symlinks/bend_symlinks.sh
)
(
version
0.1, experimental)
...
...
@@ -36,26 +36,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
*
#27 - star matches slashes (e.g. for
`FIND ... STORED AT /*.dat`
).
*
#30 - file path cannot be in quotes
-
#27 - star matches slashes (e.g. for
`FIND ... STORED AT /*.dat`
).
-
#30 - file path cannot be in quotes
-
#46 - Server-side scripting failed as an unprivileged user because the was no
writable home directory.
-
NaN Double Values (see #41)
-
#14 - Handle files on file system without File entity: Those entries are
returned without ID but with a notice now.
*
#11 - pam_authentication leaks the password to unprivileged processes on the
-
#11 - pam_authentication leaks the password to unprivileged processes on the
same machine.
### Security (in case of vulnerabilities)
-
TLS is by default restricted to v1.2 and v1.3 now.
*
#11 - pam_authentication leaks the password to unprivileged processes on the
-
#11 - pam_authentication leaks the password to unprivileged processes on the
same machine.
-
#68 - Shadow sensitive information when logging for debugging purposes.
## [0.1.0] - 2018-10-09
...
...
This diff is collapsed.
Click to expand it.
src/main/java/caosdb/server/ServerProperties.java
+
4
−
1
View file @
c1c8251a
...
...
@@ -170,7 +170,10 @@ public class ServerProperties extends Properties {
ArrayList
<
String
>
names
=
new
ArrayList
<>(
serverProperties
.
stringPropertyNames
());
Collections
.
sort
(
names
);
for
(
String
name
:
names
)
{
String
val
=
name
.
contains
(
"PASSW"
)
?
"****"
:
serverProperties
.
getProperty
(
name
);
String
val
=
(
name
.
contains
(
"PASSW"
)
||
name
.
contains
(
"SECRET"
))
?
"****"
:
serverProperties
.
getProperty
(
name
);
logger
.
info
(
name
+
"="
+
val
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment