mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Don't even think about processing bogus domain names here.
This commit is contained in:
parent
f91ddb3f3c
commit
6e8caff794
1 changed files with 5 additions and 1 deletions
|
|
@ -28,7 +28,7 @@
|
|||
*/
|
||||
|
||||
#ifndef LINT
|
||||
static char *rcsid = "$Id$";
|
||||
static char *rcsid = "$Id: yplib.c,v 1.28 1997/02/22 15:05:02 peter Exp $";
|
||||
#endif
|
||||
|
||||
#include <sys/param.h>
|
||||
|
|
@ -226,6 +226,10 @@ _yp_dobind(dom, ypdb)
|
|||
struct sockaddr_in check;
|
||||
int checklen = sizeof(struct sockaddr_in);
|
||||
|
||||
/* Not allowed; bad doggie. Bad. */
|
||||
if (strchr(dom, '/') != NULL)
|
||||
return(YPERR_BADARGS);
|
||||
|
||||
gpid = getpid();
|
||||
if( !(pid==-1 || pid==gpid) ) {
|
||||
ysd = _ypbindlist;
|
||||
|
|
|
|||
Loading…
Reference in a new issue