search for: check_name_with_privilege

Displaying 4 results from an estimated 4 matches for "check_name_with_privilege".

2016 Jan 06
1
wide links and privileges
...nction which interests us here deals with the file names, there is an `if` statement: source3/smbd/filename.c: ``` * @param smbreq SMB request if we're using privileges. [...] if (!smbreq) { status = check_name(conn, (*pp_smb_fname)->base_name); } else { status = check_name_with_privilege(conn, smbreq, (*pp_smb_fname)->base_name); } ``` which redirects us to the `check_name` or the `check_name_with_privilege` function. which themselves respectively redirects to the `check_reduced_name` and `check_reduced_name_with_privilege` functions: source3/smbd/vfs.c: ``` NTSTATUS check...
2016 Jan 06
3
wide links and privileges
...names, there is > an `if` statement: > > source3/smbd/filename.c: > ``` > * @param smbreq SMB request if we're using privileges. > [...] > if (!smbreq) { > status = check_name(conn, (*pp_smb_fname)->base_name); > } else { > status = check_name_with_privilege(conn, smbreq, > (*pp_smb_fname)->base_name); > } > ``` > > which redirects us to the `check_name` or the > `check_name_with_privilege` function. > which themselves respectively redirects to the `check_reduced_name` and > `check_reduced_name_with_privilege` functions:...
2015 Dec 22
6
wide links and privileges
Hi, I'm using samba version samba-4.1.6+dfsg included in last ubuntu LTS version. Here is my smb.conf file: [global] # configuration du serveur netbios name = scribe workgroup = dompedago server string = scribe preferred master = yes domain logons = yes security = user ldap passwd sync = yes passdb backend =
2016 Jan 07
0
wide links and privileges
...e names, there is > an `if` statement: > > source3/smbd/filename.c: > ``` >  * @param smbreq    SMB request if we're using privileges. > [...] >     if (!smbreq) { >         status = check_name(conn, (*pp_smb_fname)->base_name); >     } else { >         status = check_name_with_privilege(conn, smbreq, > (*pp_smb_fname)->base_name); >     } > ``` > > which redirects us to the `check_name` or the > `check_name_with_privilege` function. > which themselves respectively redirects to the `check_reduced_name` and > `check_reduced_name_with_privilege` functions:...