1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-24 21:49:29 +03:00

CVE-2016-0771: s4:librpc: python_dns and python_dcerpc_dnsp doesn't require client bindings

BUG: https://bugzilla.samba.org/show_bug.cgi?id=11686
BUG: https://bugzilla.samba.org/show_bug.cgi?id=11128

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Stefan Metzmacher
2015-08-07 11:36:47 +02:00
committed by Karolin Seeger
parent c68280d930
commit 7ee8a4c0fd
3 changed files with 5 additions and 5 deletions

View File

@ -270,7 +270,7 @@ interface dns
/*
this is a convenience hook for ndrdump
*/
void decode_dns_name_packet(
[nopython] void decode_dns_name_packet(
[in] dns_name_packet packet
);
}

View File

@ -263,11 +263,11 @@ interface dnsp
/*
these are convenience hooks for ndrdump
*/
void decode_DnssrvRpcRecord(
[nopython] void decode_DnssrvRpcRecord(
[in] dnsp_DnssrvRpcRecord blob
);
void decode_DnsProperty(
[nopython] void decode_DnsProperty(
[in] dnsp_DnsProperty blob
);
}

View File

@ -167,7 +167,7 @@ bld.SAMBA_PYTHON('python_echo',
bld.SAMBA_PYTHON('python_dns',
source='../../librpc/gen_ndr/py_dns.c',
deps='RPC_NDR_DNS pytalloc-util pyrpc_util',
deps='NDR_DNS pytalloc-util pyrpc_util',
realname='samba/dcerpc/dns.so'
)
@ -324,7 +324,7 @@ bld.SAMBA_PYTHON('python_dcerpc_drsblobs',
bld.SAMBA_PYTHON('python_dcerpc_dnsp',
source='../../librpc/gen_ndr/py_dnsp.c',
deps='pytalloc-util pyrpc_util NDR_SECURITY RPC_NDR_DNSP',
deps='pytalloc-util pyrpc_util NDR_SECURITY NDR_DNSP',
realname='samba/dcerpc/dnsp.so'
)