Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F153082738
D47828.id147332.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
605 B
Referenced Files
None
Subscribers
None
D47828.id147332.diff
View Options
diff --git a/libexec/comsat/comsat.c b/libexec/comsat/comsat.c
--- a/libexec/comsat/comsat.c
+++ b/libexec/comsat/comsat.c
@@ -212,10 +212,11 @@
struct passwd *p;
unsigned char line[BUFSIZ];
- /* Set effective uid to user in case mail drop is on nfs */
- if ((p = getpwnam(user)) == NULL)
- return;
- if (setuid(p->pw_uid) != 0)
+ /* Set uid/gid/groups to user's in case mail drop is on nfs */
+ if ((p = getpwnam(user)) == NULL ||
+ initgroups(p->pw_name, p->pw_gid) == -1 ||
+ setgid(p->pw_gid) == -1 ||
+ setuid(p->pw_uid) == -1)
return;
if ((fi = fopen(file, "r")) == NULL)
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Apr 20, 12:36 AM (1 h, 42 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
31812486
Default Alt Text
D47828.id147332.diff (605 B)
Attached To
Mode
D47828: comsat: Use initgroups and setgid not just setuid
Attached
Detach File
Event Timeline
Log In to Comment