We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b3c079 commit c3fa890Copy full SHA for c3fa890
README.md
@@ -458,6 +458,10 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
458
459
# History
460
461
+## 0.4.1 (13 December 2016)
462
+
463
+- Create socket with user-only permissions, for better security.
464
465
## 0.4 (28 November 2016)
466
467
- Linux support via `xclip` instead of `pbcopy` (patch from Nelson Fernandez).
clipper.go
@@ -191,6 +191,7 @@ func mergeSettings() {
191
}
192
193
func main() {
194
+ syscall.Umask(0077)
195
// Set this up before we even know where our logfile is, in case we have to
196
// bail early and print something to stderr.
197
log.SetPrefix("clipper: ")
0 commit comments