summaryrefslogtreecommitdiff
path: root/go/b210613.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/b210613.go')
-rw-r--r--go/b210613.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/go/b210613.go b/go/b210613.go
new file mode 100644
index 0000000..2bced06
--- /dev/null
+++ b/go/b210613.go
@@ -0,0 +1,21 @@
+// Program b210613 reproduces the code reported in:
+//
+// https://bugzilla.kernel.org/show_bug.cgi?id=210613
+//
+// This file is evolved directly from the reproducer attached to that
+// bug report originally authored by Lorenz Bauer.
+package main
+
+import (
+ "fmt"
+ "log"
+
+ "kernel.org/pub/linux/libs/security/libcap/cap"
+)
+
+func main() {
+ if err := cap.ModeNoPriv.Set(); err != nil {
+ log.Fatalf("error dropping privilege: %v", err)
+ }
+ fmt.Println("b210613: PASSED")
+}