Re: error writing to nslcd
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
Re: error writing to nslcd
- From: Maxim Vetrov <muxas [at] mail.ru>
- To: nss-pam-ldapd-users [at] lists.arthurdejong.org
- Reply-to: muxas [at] mail.ru
- Subject: Re: error writing to nslcd
- Date: Tue, 17 Jan 2012 00:40:24 +1100
Arthur de Jong:
For FreeBSD you should probably use the 0.8 series. In those releases
FreeBSD support was integrated. The FreeBSD ports section has a 0.7.13
version which should also work.
I compiled 0.8.5 but with no luck running it. It doesn't start (either
on virtutual or real machine):
nslcd: DEBUG: ber_set_option(LBER_OPT_LOG_PRINT_FILE)
nslcd: DEBUG: ber_set_option(LBER_OPT_DEBUG_LEVEL,-1)
nslcd: DEBUG: ldap_set_option(LDAP_OPT_DEBUG_LEVEL,-1)
nslcd: DEBUG: add_uri(ldap://127.0.0.1/)
nslcd: version 0.8.5 starting
nslcd: DEBUG: unlink() of /var/run/nslcd.ctl failed (ignored): No such
file or directory
nslcd: chmod(0666) failed: No such file or directory
nslcd: DEBUG: unlink() of /var/run/nslcd.ctl failed (ignored): No such
file or directory
nslcd: version 0.8.5 bailing out
chmod is failing because process doesn't create /var/run/nslcd.ctl;
instead it creates /var/run/nslcd.ct (without trailing `l`). I tried to
make function create_socket() from nslcd.c more verbose (thinking that
socket name was accidentally truncated somewhere):
---
/buildfarm/ports/mnt/20111031/20111031-src/net/nss-pam-ldapd-0.8.5/work/nss-pam-ldapd-0.8.5/nslcd/nslcd.c.orig
2011-12-29 09:10:39.000000000 +1100
+++
/buildfarm/ports/mnt/20111031/20111031-src/net/nss-pam-ldapd-0.8.5/work/nss-pam-ldapd-0.8.5/nslcd/nslcd.c
2012-01-15 00:47:19.000000000 +1100
@@ -321,6 +321,7 @@
log_log(LOG_WARNING,"problem closing socket: %s",strerror(errno));
exit(EXIT_FAILURE);
}
+ log_log(LOG_ERR,"sockname %s",addr.sun_path);
/* close the file descriptor on exit */
if (fcntl(sock,F_SETFD,FD_CLOEXEC)<0)
{
@@ -336,7 +337,7 @@
http://lkml.org/lkml/2005/5/16/11 */
if (chmod(filename,(mode_t)0666))
{
- log_log(LOG_ERR,"chmod(0666) failed: %s",strerror(errno));
+ log_log(LOG_ERR,"chmod(0666) %s failed: %s",filename,strerror(errno));
if (close(sock))
log_log(LOG_WARNING,"problem closing socket: %s",strerror(errno));
exit(EXIT_FAILURE);
but it gave me right name (with `l` appended).
So, I'm stuck with 0.7.15 (0.7.13 from ports gives me the same errors).
Attached file is the nslcd-ddd output compiled with -DDEBUG_PROT. Can
you give me suggestions which direction should I go? I'm not good either
at C or gdb but willing to learn.
Regards,
Maxim
nslcd: DEBUG: ber_set_option(LBER_OPT_LOG_PRINT_FILE)
nslcd: DEBUG: ber_set_option(LBER_OPT_DEBUG_LEVEL,-1)
nslcd: DEBUG: ldap_set_option(LDAP_OPT_DEBUG_LEVEL,-1)
nslcd: DEBUG: add_uri(ldap://127.0.0.1/)
nslcd: version 0.7.15 starting
nslcd: DEBUG: setgroups(0,NULL) done
nslcd: DEBUG: setgid(928) done
nslcd: DEBUG: setuid(928) done
nslcd: accepting connections
nslcd: [0041a7] DEBUG: connection from pid=-1 uid=0 gid=0
nslcd.c:342:read_header: READ : var=&(tmpint32) size=4
nslcd.c:349:read_header: READ : var=action size=4
passwd.c:414:nslcd_passwd_byname: READ : var=&(tmpint32) size=4
passwd.c:414:nslcd_passwd_byname: READ_STRING: var=name strlen=5
passwd.c:414:nslcd_passwd_byname: READ : var=name size=5
passwd.c:414:nslcd_passwd_byname: READ_STRING: var=name string="muxas"
nslcd: [0041a7] DEBUG: nslcd_passwd_byname(muxas)
passwd.c:414:nslcd_passwd_byname: WRITE_INT32 : var=1 int32=1
passwd.c:414:nslcd_passwd_byname: WRITE : var=&(tmpint32) size=4
passwd.c:414:nslcd_passwd_byname: WRITE_INT32 : var=1001 int32=1001
passwd.c:414:nslcd_passwd_byname: WRITE : var=&(tmpint32) size=4
nslcd: [0041a7] DEBUG: myldap_search(base="ou=Users,dc=muxas,dc=net",
filter="(&(objectClass=posixAccount)(uid=muxas))")
nslcd: [0041a7] DEBUG: ldap_initialize(ldap://127.0.0.1/)
ldap_create
ldap_url_parse_ext(ldap://127.0.0.1/)
nslcd: [0041a7] DEBUG: ldap_set_rebind_proc()
nslcd: [0041a7] DEBUG: ldap_set_option(LDAP_OPT_PROTOCOL_VERSION,3)
nslcd: [0041a7] DEBUG: ldap_set_option(LDAP_OPT_DEREF,0)
nslcd: [0041a7] DEBUG: ldap_set_option(LDAP_OPT_TIMELIMIT,0)
nslcd: [0041a7] DEBUG: ldap_set_option(LDAP_OPT_TIMEOUT,0)
nslcd: [0041a7] DEBUG: ldap_set_option(LDAP_OPT_NETWORK_TIMEOUT,0)
nslcd: [0041a7] DEBUG: ldap_set_option(LDAP_OPT_REFERRALS,LDAP_OPT_ON)
nslcd: [0041a7] DEBUG: ldap_set_option(LDAP_OPT_RESTART,LDAP_OPT_ON)
nslcd: [0041a7] DEBUG:
ldap_simple_bind_s("uid=Administrator,ou=Users,dc=muxas,dc=net","***")
(uri="ldap://127.0.0.1/")
ldap_simple_bind_s
ldap_sasl_bind_s
ldap_sasl_bind
ldap_send_initial_request
ldap_new_connection 1 1 0
ldap_int_open_connection
ldap_connect_to_host: TCP 127.0.0.1:389
ldap_new_socket: 10
ldap_prepare_socket: 10
ldap_connect_to_host: Trying 127.0.0.1:389
ldap_pvt_connect: fd: 10 tm: 10 async: 0
ldap_ndelay_on: 10
ldap_int_poll: fd: 10 tm: 10
ldap_is_sock_ready: 10
ldap_ndelay_off: 10
ldap_pvt_connect: 0
ldap_open_defconn: successful
ldap_send_server_request
ber_scanf fmt ({it) ber:
ber_dump: buf=0x801cb5000 ptr=0x801cb5000 end=0x801cb5045 len=69
0000: 30 43 02 01 01 60 3e 02 01 03 04 2a 75 69 64 3d 0C...`>....*uid=
0010: 41 64 6d 69 6e 69 73 74 72 61 74 6f 72 2c 6f 75 Administrator,ou
0020: 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c =Users,dc=muxas,
0030: 64 63 3d 6e 65 74 80 0d 41 64 6d 69 6e 69 73 74 dc=net..Administ
0040: 72 61 74 6f 72 rator
ber_scanf fmt ({i) ber:
ber_dump: buf=0x801cb5000 ptr=0x801cb5005 end=0x801cb5045 len=64
0000: 60 3e 02 01 03 04 2a 75 69 64 3d 41 64 6d 69 6e `>....*uid=Admin
0010: 69 73 74 72 61 74 6f 72 2c 6f 75 3d 55 73 65 72 istrator,ou=User
0020: 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d 6e 65 s,dc=muxas,dc=ne
0030: 74 80 0d 41 64 6d 69 6e 69 73 74 72 61 74 6f 72 t..Administrator
ber_flush2: 69 bytes to sd 10
0000: 30 43 02 01 01 60 3e 02 01 03 04 2a 75 69 64 3d 0C...`>....*uid=
0010: 41 64 6d 69 6e 69 73 74 72 61 74 6f 72 2c 6f 75 Administrator,ou
0020: 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c =Users,dc=muxas,
0030: 64 63 3d 6e 65 74 80 0d 41 64 6d 69 6e 69 73 74 dc=net..Administ
0040: 72 61 74 6f 72 rator
ldap_write: want=69, written=69
0000: 30 43 02 01 01 60 3e 02 01 03 04 2a 75 69 64 3d 0C...`>....*uid=
0010: 41 64 6d 69 6e 69 73 74 72 61 74 6f 72 2c 6f 75 Administrator,ou
0020: 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c =Users,dc=muxas,
0030: 64 63 3d 6e 65 74 80 0d 41 64 6d 69 6e 69 73 74 dc=net..Administ
0040: 72 61 74 6f 72 rator
ldap_result ld 0x801cab0d0 msgid 1
wait4msg ld 0x801cab0d0 msgid 1 (timeout 10000000 usec)
wait4msg continue ld 0x801cab0d0 msgid 1 all 1
** ld 0x801cab0d0 Connections:
* host: 127.0.0.1 port: 389 (default)
refcnt: 2 status: Connected
last used: Mon Jan 16 12:56:15 2012
** ld 0x801cab0d0 Outstanding Requests:
* msgid 1, origid 1, status InProgress
outstanding referrals 0, parent count 0
ld 0x801cab0d0 request count 1 (abandoned 0)
** ld 0x801cab0d0 Response Queue:
Empty
ld 0x801cab0d0 response count 0
ldap_chkResponseList ld 0x801cab0d0 msgid 1 all 1
ldap_chkResponseList returns ld 0x801cab0d0 NULL
ldap_int_select
read1msg: ld 0x801cab0d0 msgid 1 all 1
ber_get_next
ldap_read: want=8, got=8
0000: 30 0c 02 01 01 61 07 0a 0....a..
ldap_read: want=6, got=6
0000: 01 00 04 00 04 00 ......
ber_get_next: tag 0x30 len 12 contents:
ber_dump: buf=0x801cac0f0 ptr=0x801cac0f0 end=0x801cac0fc len=12
0000: 02 01 01 61 07 0a 01 00 04 00 04 00 ...a........
read1msg: ld 0x801cab0d0 msgid 1 message type bind
ber_scanf fmt ({eAA) ber:
ber_dump: buf=0x801cac0f0 ptr=0x801cac0f3 end=0x801cac0fc len=9
0000: 61 07 0a 01 00 04 00 04 00 a........
read1msg: ld 0x801cab0d0 0 new referrals
read1msg: mark request completed, ld 0x801cab0d0 msgid 1
request done: ld 0x801cab0d0 msgid 1
res_errno: 0, res_error: <>, res_matched: <>
ldap_free_request (origid 1, msgid 1)
ldap_parse_result
ber_scanf fmt ({iAA) ber:
ber_dump: buf=0x801cac0f0 ptr=0x801cac0f3 end=0x801cac0fc len=9
0000: 61 07 0a 01 00 04 00 04 00 a........
ber_scanf fmt (}) ber:
ber_dump: buf=0x801cac0f0 ptr=0x801cac0fc end=0x801cac0fc len=0
ldap_msgfree
ldap_search_ext
put_filter: "(&(objectClass=posixAccount)(uid=muxas))"
put_filter: AND
put_filter_list "(objectClass=posixAccount)(uid=muxas)"
put_filter: "(objectClass=posixAccount)"
put_filter: simple
put_simple_filter: "objectClass=posixAccount"
put_filter: "(uid=muxas)"
put_filter: simple
put_simple_filter: "uid=muxas"
ldap_build_search_req ATTRS: userPassword cn gidNumber uidNumber loginShell
objectClass gecos uid homeDirectory
ldap_send_initial_request
ldap_send_server_request
ber_scanf fmt ({it) ber:
ber_dump: buf=0x801cb5000 ptr=0x801cb5000 end=0x801cb50bd len=189
0000: 30 81 ba 02 01 02 63 81 b4 04 18 6f 75 3d 55 73 0.....c....ou=Us
0010: 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d ers,dc=muxas,dc=
0020: 6e 65 74 0a 01 02 0a 01 00 02 01 00 02 01 00 01 net.............
0030: 01 00 a0 2b a3 1b 04 0b 6f 62 6a 65 63 74 43 6c ...+....objectCl
0040: 61 73 73 04 0c 70 6f 73 69 78 41 63 63 6f 75 6e ass..posixAccoun
0050: 74 a3 0c 04 03 75 69 64 04 05 6d 75 78 61 73 30 t....uid..muxas0
0060: 5c 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 04 \..userPassword.
0070: 02 63 6e 04 09 67 69 64 4e 75 6d 62 65 72 04 09 .cn..gidNumber..
0080: 75 69 64 4e 75 6d 62 65 72 04 0a 6c 6f 67 69 6e uidNumber..login
0090: 53 68 65 6c 6c 04 0b 6f 62 6a 65 63 74 43 6c 61 Shell..objectCla
00a0: 73 73 04 05 67 65 63 6f 73 04 03 75 69 64 04 0d ss..gecos..uid..
00b0: 68 6f 6d 65 44 69 72 65 63 74 6f 72 79 homeDirectory
ber_scanf fmt ({) ber:
ber_dump: buf=0x801cb5000 ptr=0x801cb5006 end=0x801cb50bd len=183
0000: 63 81 b4 04 18 6f 75 3d 55 73 65 72 73 2c 64 63 c....ou=Users,dc
0010: 3d 6d 75 78 61 73 2c 64 63 3d 6e 65 74 0a 01 02 =muxas,dc=net...
0020: 0a 01 00 02 01 00 02 01 00 01 01 00 a0 2b a3 1b .............+..
0030: 04 0b 6f 62 6a 65 63 74 43 6c 61 73 73 04 0c 70 ..objectClass..p
0040: 6f 73 69 78 41 63 63 6f 75 6e 74 a3 0c 04 03 75 osixAccount....u
0050: 69 64 04 05 6d 75 78 61 73 30 5c 04 0c 75 73 65 id..muxas0\..use
0060: 72 50 61 73 73 77 6f 72 64 04 02 63 6e 04 09 67 rPassword..cn..g
0070: 69 64 4e 75 6d 62 65 72 04 09 75 69 64 4e 75 6d idNumber..uidNum
0080: 62 65 72 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 04 ber..loginShell.
0090: 0b 6f 62 6a 65 63 74 43 6c 61 73 73 04 05 67 65 .objectClass..ge
00a0: 63 6f 73 04 03 75 69 64 04 0d 68 6f 6d 65 44 69 cos..uid..homeDi
00b0: 72 65 63 74 6f 72 79 rectory
ber_flush2: 189 bytes to sd 10
0000: 30 81 ba 02 01 02 63 81 b4 04 18 6f 75 3d 55 73 0.....c....ou=Us
0010: 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d ers,dc=muxas,dc=
0020: 6e 65 74 0a 01 02 0a 01 00 02 01 00 02 01 00 01 net.............
0030: 01 00 a0 2b a3 1b 04 0b 6f 62 6a 65 63 74 43 6c ...+....objectCl
0040: 61 73 73 04 0c 70 6f 73 69 78 41 63 63 6f 75 6e ass..posixAccoun
0050: 74 a3 0c 04 03 75 69 64 04 05 6d 75 78 61 73 30 t....uid..muxas0
0060: 5c 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 04 \..userPassword.
0070: 02 63 6e 04 09 67 69 64 4e 75 6d 62 65 72 04 09 .cn..gidNumber..
0080: 75 69 64 4e 75 6d 62 65 72 04 0a 6c 6f 67 69 6e uidNumber..login
0090: 53 68 65 6c 6c 04 0b 6f 62 6a 65 63 74 43 6c 61 Shell..objectCla
00a0: 73 73 04 05 67 65 63 6f 73 04 03 75 69 64 04 0d ss..gecos..uid..
00b0: 68 6f 6d 65 44 69 72 65 63 74 6f 72 79 homeDirectory
ldap_write: want=189, written=189
0000: 30 81 ba 02 01 02 63 81 b4 04 18 6f 75 3d 55 73 0.....c....ou=Us
0010: 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d ers,dc=muxas,dc=
0020: 6e 65 74 0a 01 02 0a 01 00 02 01 00 02 01 00 01 net.............
0030: 01 00 a0 2b a3 1b 04 0b 6f 62 6a 65 63 74 43 6c ...+....objectCl
0040: 61 73 73 04 0c 70 6f 73 69 78 41 63 63 6f 75 6e ass..posixAccoun
0050: 74 a3 0c 04 03 75 69 64 04 05 6d 75 78 61 73 30 t....uid..muxas0
0060: 5c 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 04 \..userPassword.
0070: 02 63 6e 04 09 67 69 64 4e 75 6d 62 65 72 04 09 .cn..gidNumber..
0080: 75 69 64 4e 75 6d 62 65 72 04 0a 6c 6f 67 69 6e uidNumber..login
0090: 53 68 65 6c 6c 04 0b 6f 62 6a 65 63 74 43 6c 61 Shell..objectCla
00a0: 73 73 04 05 67 65 63 6f 73 04 03 75 69 64 04 0d ss..gecos..uid..
00b0: 68 6f 6d 65 44 69 72 65 63 74 6f 72 79 homeDirectory
ldap_result ld 0x801cab0d0 msgid 2
wait4msg ld 0x801cab0d0 msgid 2 (timeout 10000000 usec)
wait4msg continue ld 0x801cab0d0 msgid 2 all 0
** ld 0x801cab0d0 Connections:
* host: 127.0.0.1 port: 389 (default)
refcnt: 2 status: Connected
last used: Mon Jan 16 12:56:15 2012
** ld 0x801cab0d0 Outstanding Requests:
* msgid 2, origid 2, status InProgress
outstanding referrals 0, parent count 0
ld 0x801cab0d0 request count 1 (abandoned 0)
** ld 0x801cab0d0 Response Queue:
Empty
ld 0x801cab0d0 response count 0
ldap_chkResponseList ld 0x801cab0d0 msgid 2 all 0
ldap_chkResponseList returns ld 0x801cab0d0 NULL
ldap_int_select
read1msg: ld 0x801cab0d0 msgid 2 all 0
ber_get_next
ldap_read: want=8, got=8
0000: 30 82 01 4c 02 01 02 64 0..L...d
ldap_read: want=328, got=328
0000: 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c 6f ..E."uid=muxas,o
0010: 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 u=Users,dc=muxas
0020: 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b 6f ,dc=net0...09..o
0030: 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 6f bjectClass1*..to
0040: 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 78 p..person..posix
0050: 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 41 Account..shadowA
0060: 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 0c ccount0...cn1...
0070: 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 09 Vetrov Maxim0...
0080: 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 30 gidNumber1...100
0090: 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 74 010...homeDirect
00a0: 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 ory1.../home/mux
00b0: 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 78 as0...uid1...mux
00c0: 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 31 as0...uidNumber1
00d0: 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 6f ...100010...geco
00e0: 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 s1...Homegrown
00f0: 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 user0...loginShe
0100: 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 ll1.../bin/csh08
0110: 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 ..userPassword1(
0120: 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 .&{SSHA}7UkOfYA8
0130: 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 3gc9lhur5RR/smUR
0140: 34 63 57 57 44 79 4f 39 4cWWDyO9
ber_get_next: tag 0x30 len 332 contents:
ber_dump: buf=0x801cae780 ptr=0x801cae780 end=0x801cae8cc len=332
0000: 02 01 02 64 82 01 45 04 22 75 69 64 3d 6d 75 78 ...d..E."uid=mux
0010: 61 73 2c 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d as,ou=Users,dc=m
0020: 75 78 61 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 uxas,dc=net0...0
0030: 39 04 0b 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 9..objectClass1*
0040: 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 ..top..person..p
0050: 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 osixAccount..sha
0060: 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 63 6e dowAccount0...cn
0070: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0080: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0090: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
00a0: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
00b0: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
00c0: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
00d0: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
00e0: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
00f0: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0100: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
0110: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
0120: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
0130: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
0140: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
read1msg: ld 0x801cab0d0 msgid 2 message type search-entry
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae783 end=0x801cae8cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae7be end=0x801cae8cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae7f0 end=0x801cae8cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae80d end=0x801cae8cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae827 end=0x801cae8cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae83d end=0x801cae8cc len=143
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae783 end=0x801cae8cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae7be end=0x801cae8cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae783 end=0x801cae8cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae7be end=0x801cae8cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae7f0 end=0x801cae8cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae80d end=0x801cae8cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae827 end=0x801cae8cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae83d end=0x801cae8cc len=143
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae853 end=0x801cae8cc len=121
0000: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
0010: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
0020: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0030: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0040: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0050: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0060: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0070: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae783 end=0x801cae8cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae7be end=0x801cae8cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae7f0 end=0x801cae8cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae80d end=0x801cae8cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae783 end=0x801cae8cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae7be end=0x801cae8cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae7f0 end=0x801cae8cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae80d end=0x801cae8cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae827 end=0x801cae8cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae83d end=0x801cae8cc len=143
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae853 end=0x801cae8cc len=121
0000: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
0010: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
0020: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0030: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0040: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0050: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0060: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0070: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae865 end=0x801cae8cc len=103
0000: 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 1...Homegrown u
0010: 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c ser0...loginShel
0020: 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 l1.../bin/csh08.
0030: 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 .userPassword1(.
0040: 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 &{SSHA}7UkOfYA83
0050: 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 gc9lhur5RR/smUR4
0060: 63 57 57 44 79 4f 39 cWWDyO9
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae783 end=0x801cae8cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae7be end=0x801cae8cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae7f0 end=0x801cae8cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae80d end=0x801cae8cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae827 end=0x801cae8cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae783 end=0x801cae8cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae7be end=0x801cae8cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae7f0 end=0x801cae8cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae80d end=0x801cae8cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae827 end=0x801cae8cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae83d end=0x801cae8cc len=143
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae853 end=0x801cae8cc len=121
0000: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
0010: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
0020: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0030: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0040: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0050: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0060: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0070: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae865 end=0x801cae8cc len=103
0000: 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 1...Homegrown u
0010: 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c ser0...loginShel
0020: 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 l1.../bin/csh08.
0030: 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 .userPassword1(.
0040: 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 &{SSHA}7UkOfYA83
0050: 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 gc9lhur5RR/smUR4
0060: 63 57 57 44 79 4f 39 cWWDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x801cae780 ptr=0x801cae886 end=0x801cae8cc len=70
0000: 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 1.../bin/csh08..
0010: 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 userPassword1(.&
0020: 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 {SSHA}7UkOfYA83g
0030: 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 c9lhur5RR/smUR4c
0040: 57 57 44 79 4f 39 WWDyO9
passwd.c:387:write_passwd: WRITE_INT32 : var=0 int32=0
passwd.c:387:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:388:write_passwd: WRITE_STRING: var=usernames[i] string="muxas"
passwd.c:388:write_passwd: WRITE_INT32 : var=strlen(usernames[i]) int32=5
passwd.c:388:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:388:write_passwd: WRITE : var=(usernames[i]) size=5
passwd.c:389:write_passwd: WRITE_STRING: var=passwd string="x"
passwd.c:389:write_passwd: WRITE_INT32 : var=strlen(passwd) int32=1
passwd.c:389:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:389:write_passwd: WRITE : var=(passwd) size=1
passwd.c:390:write_passwd: WRITE : var=&(uids[j]) size=4
passwd.c:391:write_passwd: WRITE : var=&(gid) size=4
passwd.c:392:write_passwd: WRITE_STRING: var=gecos string="Homegrown user"
passwd.c:392:write_passwd: WRITE_INT32 : var=strlen(gecos) int32=15
passwd.c:392:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:392:write_passwd: WRITE : var=(gecos) size=15
passwd.c:393:write_passwd: WRITE_STRING: var=homedir string="/home/muxas"
passwd.c:393:write_passwd: WRITE_INT32 : var=strlen(homedir) int32=11
passwd.c:393:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:393:write_passwd: WRITE : var=(homedir) size=11
passwd.c:394:write_passwd: WRITE_STRING: var=shell string="/bin/csh"
passwd.c:394:write_passwd: WRITE_INT32 : var=strlen(shell) int32=8
passwd.c:394:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:394:write_passwd: WRITE : var=(shell) size=8
ldap_msgfree
ldap_result ld 0x801cab0d0 msgid 2
wait4msg ld 0x801cab0d0 msgid 2 (timeout 10000000 usec)
wait4msg continue ld 0x801cab0d0 msgid 2 all 0
** ld 0x801cab0d0 Connections:
* host: 127.0.0.1 port: 389 (default)
refcnt: 2 status: Connected
last used: Mon Jan 16 12:56:15 2012
** ld 0x801cab0d0 Outstanding Requests:
* msgid 2, origid 2, status InProgress
outstanding referrals 0, parent count 0
ld 0x801cab0d0 request count 1 (abandoned 0)
** ld 0x801cab0d0 Response Queue:
Empty
ld 0x801cab0d0 response count 0
ldap_chkResponseList ld 0x801cab0d0 msgid 2 all 0
ldap_chkResponseList returns ld 0x801cab0d0 NULL
ldap_int_select
read1msg: ld 0x801cab0d0 msgid 2 all 0
ber_get_next
ldap_read: want=8, got=8
0000: 30 0c 02 01 02 65 07 0a 0....e..
ldap_read: want=6, got=6
0000: 01 00 04 00 04 00 ......
ber_get_next: tag 0x30 len 12 contents:
ber_dump: buf=0x801cac190 ptr=0x801cac190 end=0x801cac19c len=12
0000: 02 01 02 65 07 0a 01 00 04 00 04 00 ...e........
read1msg: ld 0x801cab0d0 msgid 2 message type search-result
ber_scanf fmt ({eAA) ber:
ber_dump: buf=0x801cac190 ptr=0x801cac193 end=0x801cac19c len=9
0000: 65 07 0a 01 00 04 00 04 00 e........
read1msg: ld 0x801cab0d0 0 new referrals
read1msg: mark request completed, ld 0x801cab0d0 msgid 2
request done: ld 0x801cab0d0 msgid 2
res_errno: 0, res_error: <>, res_matched: <>
ldap_free_request (origid 2, msgid 2)
ldap_parse_result
ber_scanf fmt ({iAA) ber:
ber_dump: buf=0x801cac190 ptr=0x801cac193 end=0x801cac19c len=9
0000: 65 07 0a 01 00 04 00 04 00 e........
ber_scanf fmt (}) ber:
ber_dump: buf=0x801cac190 ptr=0x801cac19c end=0x801cac19c len=0
ldap_msgfree
nslcd: [0041a7] DEBUG: ldap_result(): end of results
passwd.c:414:nslcd_passwd_byname: WRITE_INT32 : var=3 int32=3
passwd.c:414:nslcd_passwd_byname: WRITE : var=&(tmpint32) size=4
nslcd: [d63af1] DEBUG: connection from pid=-1 uid=0 gid=0
nslcd.c:342:read_header: READ : var=&(tmpint32) error: No error: 0
nslcd: [d63af1] error reading from client: No error: 0
nslcd: [b7acd9] DEBUG: connection from pid=-1 uid=0 gid=0
nslcd.c:342:read_header: READ : var=&(tmpint32) size=4
nslcd.c:349:read_header: READ : var=action size=4
passwd.c:414:nslcd_passwd_byname: READ : var=&(tmpint32) size=4
passwd.c:414:nslcd_passwd_byname: READ_STRING: var=name strlen=5
passwd.c:414:nslcd_passwd_byname: READ : var=name size=5
passwd.c:414:nslcd_passwd_byname: READ_STRING: var=name string="muxas"
nslcd: [b7acd9] DEBUG: nslcd_passwd_byname(muxas)
passwd.c:414:nslcd_passwd_byname: WRITE_INT32 : var=1 int32=1
passwd.c:414:nslcd_passwd_byname: WRITE : var=&(tmpint32) size=4
passwd.c:414:nslcd_passwd_byname: WRITE_INT32 : var=1001 int32=1001
passwd.c:414:nslcd_passwd_byname: WRITE : var=&(tmpint32) size=4
nslcd: [b7acd9] DEBUG: myldap_search(base="ou=Users,dc=muxas,dc=net",
filter="(&(objectClass=posixAccount)(uid=muxas))")
nslcd: [b7acd9] DEBUG: ldap_initialize(ldap://127.0.0.1/)
ldap_create
nslcd: [b50c2a] DEBUG: connection from pid=-1 uid=0 gid=0
ldap_url_parse_ext(ldap://127.0.0.1/)
nslcd: [b7acd9] DEBUG: ldap_set_rebind_proc()
nslcd: [b7acd9] DEBUG: ldap_set_option(LDAP_OPT_PROTOCOL_VERSION,3)
nslcd: [b7acd9] DEBUG: ldap_set_option(LDAP_OPT_DEREF,0)
nslcd.c:342:read_header: READ : var=&(tmpint32) size=4
nslcd.c:349:read_header: READ : var=action size=4
passwd.c:414:nslcd_passwd_byname: READ : var=&(tmpint32) size=4
passwd.c:414:nslcd_passwd_byname: READ_STRING: var=name strlen=5
passwd.c:414:nslcd_passwd_byname: READ : var=name size=5
passwd.c:414:nslcd_passwd_byname: READ_STRING: var=name string="muxas"
nslcd: [31b782] DEBUG: connection from pid=-1 uid=0 gid=0
nslcd: [b7acd9] DEBUG: ldap_set_option(LDAP_OPT_TIMELIMIT,0)
nslcd: [b7acd9] DEBUG: ldap_set_option(LDAP_OPT_TIMEOUT,0)
nslcd: [b7acd9] DEBUG: ldap_set_option(LDAP_OPT_NETWORK_TIMEOUT,0)
nslcd: [b7acd9] DEBUG: ldap_set_option(LDAP_OPT_REFERRALS,LDAP_OPT_ON)
nslcd: [b7acd9] DEBUG: ldap_set_option(LDAP_OPT_RESTART,LDAP_OPT_ON)
nslcd: [b7acd9] DEBUG:
ldap_simple_bind_s("uid=Administrator,ou=Users,dc=muxas,dc=net","***")
(uri="ldap://127.0.0.1/")
ldap_simple_bind_s
nslcd.c:342:read_header: READ : var=&(tmpint32) size=4
nslcd.c:349:read_header: READ : var=action size=4
passwd.c:414:nslcd_passwd_byname: READ : var=&(tmpint32) size=4
passwd.c:414:nslcd_passwd_byname: READ_STRING: var=name strlen=5
passwd.c:414:nslcd_passwd_byname: READ : var=name size=5
passwd.c:414:nslcd_passwd_byname: READ_STRING: var=name string="muxas"
nslcd: [31b782] DEBUG: nslcd_passwd_byname(muxas)
passwd.c:414:nslcd_passwd_byname: WRITE_INT32 : var=1 int32=1
passwd.c:414:nslcd_passwd_byname: WRITE : var=&(tmpint32) size=4
passwd.c:414:nslcd_passwd_byname: WRITE_INT32 : var=1001 int32=1001
passwd.c:414:nslcd_passwd_byname: WRITE : var=&(tmpint32) size=4
nslcd: [31b782] DEBUG: myldap_search(base="ou=Users,dc=muxas,dc=net",
filter="(&(objectClass=posixAccount)(uid=muxas))")
ldap_sasl_bind_s
ldap_sasl_bind
nslcd: [31b782] DEBUG: ldap_initialize(ldap://127.0.0.1/)
nslcd: [b50c2a] DEBUG: nslcd_passwd_byname(muxas)
passwd.c:414:nslcd_passwd_byname: WRITE_INT32 : var=1 int32=1
ldap_send_initial_request
ldap_new_connection 1 1 0
passwd.c:414:nslcd_passwd_byname: WRITE : var=&(tmpint32) size=4
passwd.c:414:nslcd_passwd_byname: WRITE_INT32 : var=1001 int32=1001
passwd.c:414:nslcd_passwd_byname: WRITE : var=&(tmpint32) size=4
ldap_int_open_connection
ldap_create
nslcd: [b50c2a] DEBUG: myldap_search(base="ou=Users,dc=muxas,dc=net",
filter="(&(objectClass=posixAccount)(uid=muxas))")
ldap_connect_to_host: TCP 127.0.0.1:389
nslcd: [b50c2a] DEBUG: ldap_initialize(ldap://127.0.0.1/)
ldap_new_socket: 11
ldap_prepare_socket: 11
ldap_create
ldap_url_parse_ext(ldap://127.0.0.1/)
ldap_connect_to_host: Trying 127.0.0.1:389
ldap_pvt_connect: fd: 11 tm: 10 async: 0
ldap_ndelay_on: 11
nslcd: [31b782] DEBUG: ldap_set_rebind_proc()
nslcd: [31b782] DEBUG: ldap_set_option(LDAP_OPT_PROTOCOL_VERSION,3)
nslcd: [31b782] DEBUG: ldap_set_option(LDAP_OPT_DEREF,0)
nslcd: [31b782] DEBUG: ldap_set_option(LDAP_OPT_TIMELIMIT,0)
nslcd: [31b782] DEBUG: ldap_set_option(LDAP_OPT_TIMEOUT,0)
nslcd: [31b782] DEBUG: ldap_set_option(LDAP_OPT_NETWORK_TIMEOUT,0)
ldap_int_poll: fd: 11 tm: 10
ldap_url_parse_ext(ldap://127.0.0.1/)
nslcd: [31b782] DEBUG: ldap_set_option(LDAP_OPT_REFERRALS,LDAP_OPT_ON)
nslcd: [31b782] DEBUG: ldap_set_option(LDAP_OPT_RESTART,LDAP_OPT_ON)
nslcd: [31b782] DEBUG:
ldap_simple_bind_s("uid=Administrator,ou=Users,dc=muxas,dc=net","***")
(uri="ldap://127.0.0.1/")
ldap_simple_bind_s
ldap_sasl_bind_s
nslcd: [b50c2a] DEBUG: ldap_set_rebind_proc()
ldap_is_sock_ready: 11
nslcd: [b50c2a] DEBUG: ldap_set_option(LDAP_OPT_PROTOCOL_VERSION,3)
nslcd: [b50c2a] DEBUG: ldap_set_option(LDAP_OPT_DEREF,0)
nslcd: [b50c2a] DEBUG: ldap_set_option(LDAP_OPT_TIMELIMIT,0)
nslcd: [b50c2a] DEBUG: ldap_set_option(LDAP_OPT_TIMEOUT,0)
nslcd: [b50c2a] DEBUG: ldap_set_option(LDAP_OPT_NETWORK_TIMEOUT,0)
nslcd: [b50c2a] DEBUG: ldap_set_option(LDAP_OPT_REFERRALS,LDAP_OPT_ON)
nslcd: [b50c2a] DEBUG: ldap_set_option(LDAP_OPT_RESTART,LDAP_OPT_ON)
nslcd: [b50c2a] DEBUG:
ldap_simple_bind_s("uid=Administrator,ou=Users,dc=muxas,dc=net","***")
(uri="ldap://127.0.0.1/")
ldap_simple_bind_s
ldap_sasl_bind_s
ldap_sasl_bind
ldap_sasl_bind
ldap_ndelay_off: 11
ldap_pvt_connect: 0
ldap_open_defconn: successful
ldap_send_initial_request
ldap_send_server_request
ldap_send_initial_request
ldap_new_connection 1 1 0
ber_scanf fmt ({it) ber:
ber_dump: buf=0x802854000 ptr=0x802854000 end=0x802854045 len=69
0000: 30 43 02 01 01 60 3e 02 01 03 04 2a 75 69 64 3d 0C...`>....*uid=
ldap_int_open_connection
0010: 41 64 6d 69 6e 69 73 74 72 61 74 6f 72 2c 6f 75 Administrator,ou
0020: 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c =Users,dc=muxas,
0030: 64 63 3d 6e 65 74 80 0d 41 64 6d 69 6e 69 73 74 dc=net..Administ
0040: 72 61 74 6f 72 rator
ldap_connect_to_host: TCP 127.0.0.1:389
ldap_new_connection 1 1 0
ber_scanf fmt ({i) ber:
ldap_new_socket: 12
ldap_int_open_connection
ber_dump: buf=0x802854000 ptr=0x802854005 end=0x802854045 len=64
0000: 60 3e 02 01 03 04 2a 75 69 64 3d 41 64 6d 69 6e `>....*uid=Admin
0010: 69 73 74 72 61 74 6f 72 2c 6f 75 3d 55 73 65 72 istrator,ou=User
0020: 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d 6e 65 s,dc=muxas,dc=ne
0030: 74 80 0d 41 64 6d 69 6e 69 73 74 72 61 74 6f 72 t..Administrator
ldap_prepare_socket: 12
ber_flush2: 69 bytes to sd 11
0000: 30 43 02 01 01 60 3e 02 01 03 04 2a 75 69 64 3d 0C...`>....*uid=
0010: 41 64 6d 69 6e 69 73 74 72 61 74 6f 72 2c 6f 75 Administrator,ou
0020: 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c =Users,dc=muxas,
0030: 64 63 3d 6e 65 74 80 0d 41 64 6d 69 6e 69 73 74 dc=net..Administ
0040: 72 61 74 6f 72 rator
ldap_connect_to_host: TCP 127.0.0.1:389
ldap_write: want=69, written=69
ldap_connect_to_host: Trying 127.0.0.1:389
ldap_pvt_connect: fd: 12 tm: 10 async: 0
ldap_ndelay_on: 12
0000: 30 43 02 01 01 60 3e 02 01 03 04 2a 75 69 64 3d 0C...`>....*uid=
0010: 41 64 6d 69 6e 69 73 74 72 61 74 6f 72 2c 6f 75 Administrator,ou
0020: 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c =Users,dc=muxas,
0030: 64 63 3d 6e 65 74 80 0d 41 64 6d 69 6e 69 73 74 dc=net..Administ
0040: 72 61 74 6f 72 rator
ldap_result ld 0x802835040 msgid 1
wait4msg ld 0x802835040 msgid 1 (timeout 10000000 usec)
wait4msg continue ld 0x802835040 msgid 1 all 1
** ld 0x802835040 Connections:
* host: 127.0.0.1 port: 389 (default)
refcnt: 2 status: Connected
last used: Mon Jan 16 12:56:18 2012
** ld 0x802835040 Outstanding Requests:
* msgid 1, origid 1, status InProgress
outstanding referrals 0, parent count 0
ld 0x802835040 request count 1 (abandoned 0)
** ld 0x802835040 Response Queue:
Empty
ld 0x802835040 response count 0
ldap_chkResponseList ld 0x802835040 msgid 1 all 1
ldap_chkResponseList returns ld 0x802835040 NULL
ldap_int_select
read1msg: ld 0x802835040 msgid 1 all 1
ber_get_next
ldap_read: want=8, got=8
0000: 30 0c 02 01 01 61 07 0a 0....a..
ldap_new_socket: 13
ldap_read: want=6, got=6
ldap_int_poll: fd: 12 tm: 10
0000: 01 00 04 00 04 00 ......
ldap_is_sock_ready: 12
ldap_prepare_socket: 13
ber_get_next: tag 0x30 len 12 contents:
ldap_connect_to_host: Trying 127.0.0.1:389
ber_dump: buf=0x802848050 ptr=0x802848050 end=0x80284805c len=12
ldap_pvt_connect: fd: 13 tm: 10 async: 0
ldap_ndelay_on: 13
0000: 02 01 01 61 07 0a 01 00 04 00 04 00 ...a........
ldap_ndelay_off: 12
read1msg: ld 0x802835040 msgid 1 message type bind
ber_scanf fmt ({eAA) ber:
ldap_pvt_connect: 0
ldap_int_poll: fd: 13 tm: 10
ber_dump: buf=0x802848050 ptr=0x802848053 end=0x80284805c len=9
0000: 61 07 0a 01 00 04 00 04 00 a........
ldap_open_defconn: successful
read1msg: ld 0x802835040 0 new referrals
ldap_send_server_request
ldap_is_sock_ready: 13
read1msg: mark request completed, ld 0x802835040 msgid 1
ldap_ndelay_off: 13
request done: ld 0x802835040 msgid 1
ldap_pvt_connect: 0
res_errno: 0, res_error: <>, res_matched: <>
ldap_open_defconn: successful
ldap_send_server_request
ldap_free_request (origid 1, msgid 1)
ber_scanf fmt ({it) ber:
ber_dump: buf=0x803054000 ptr=0x803054000 end=0x803054045 len=69
0000: 30 43 02 01 01 60 3e 02 01 03 04 2a 75 69 64 3d 0C...`>....*uid=
0010: 41 64 6d 69 6e 69 73 74 72 61 74 6f 72 2c 6f 75 Administrator,ou
0020: 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c =Users,dc=muxas,
ldap_parse_result
ber_scanf fmt ({it) ber:
ber_dump: buf=0x802c54000 ptr=0x802c54000 end=0x802c54045 len=69
ber_scanf fmt ({iAA) ber:
0030: 64 63 3d 6e 65 74 80 0d 41 64 6d 69 6e 69 73 74 dc=net..Administ
0040: 72 61 74 6f 72 rator
ber_scanf fmt ({i) ber:
ber_dump: buf=0x802848050 ptr=0x802848053 end=0x80284805c len=9
0000: 61 07 0a 01 00 04 00 04 00 a........
0000: 30 43 02 01 01 60 3e 02 01 03 04 2a 75 69 64 3d 0C...`>....*uid=
ber_dump: buf=0x803054000 ptr=0x803054005 end=0x803054045 len=64
0000: 60 3e 02 01 03 04 2a 75 69 64 3d 41 64 6d 69 6e `>....*uid=Admin
0010: 69 73 74 72 61 74 6f 72 2c 6f 75 3d 55 73 65 72 istrator,ou=User
0020: 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d 6e 65 s,dc=muxas,dc=ne
0030: 74 80 0d 41 64 6d 69 6e 69 73 74 72 61 74 6f 72 t..Administrator
0010: 41 64 6d 69 6e 69 73 74 72 61 74 6f 72 2c 6f 75 Administrator,ou
0020: 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c =Users,dc=muxas,
ber_scanf fmt (}) ber:
ber_flush2: 69 bytes to sd 12
0000: 30 43 02 01 01 60 3e 02 01 03 04 2a 75 69 64 3d 0C...`>....*uid=
0010: 41 64 6d 69 6e 69 73 74 72 61 74 6f 72 2c 6f 75 Administrator,ou
0020: 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c =Users,dc=muxas,
0030: 64 63 3d 6e 65 74 80 0d 41 64 6d 69 6e 69 73 74 dc=net..Administ
0040: 72 61 74 6f 72 rator
0030: 64 63 3d 6e 65 74 80 0d 41 64 6d 69 6e 69 73 74 dc=net..Administ
0040: 72 61 74 6f 72 rator
ber_dump: buf=0x802848050 ptr=0x80284805c end=0x80284805c len=0
ldap_write: want=69, written=69
ldap_msgfree
ber_scanf fmt ({i) ber:
0000: 30 43 02 01 01 60 3e 02 01 03 04 2a 75 69 64 3d 0C...`>....*uid=
ldap_search_ext
0010: 41 64 6d 69 6e 69 73 74 72 61 74 6f 72 2c 6f 75 Administrator,ou
put_filter: "(&(objectClass=posixAccount)(uid=muxas))"
ber_dump: buf=0x802c54000 ptr=0x802c54005 end=0x802c54045 len=64
0000: 60 3e 02 01 03 04 2a 75 69 64 3d 41 64 6d 69 6e `>....*uid=Admin
0010: 69 73 74 72 61 74 6f 72 2c 6f 75 3d 55 73 65 72 istrator,ou=User
0020: 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c =Users,dc=muxas,
0030: 64 63 3d 6e 65 74 80 0d 41 64 6d 69 6e 69 73 74 dc=net..Administ
0040: 72 61 74 6f 72 rator
put_filter: AND
ldap_result ld 0x803035040 msgid 1
put_filter_list "(objectClass=posixAccount)(uid=muxas)"
0020: 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d 6e 65 s,dc=muxas,dc=ne
0030: 74 80 0d 41 64 6d 69 6e 69 73 74 72 61 74 6f 72 t..Administrator
put_filter: "(objectClass=posixAccount)"
ber_flush2: 69 bytes to sd 13
0000: 30 43 02 01 01 60 3e 02 01 03 04 2a 75 69 64 3d 0C...`>....*uid=
0010: 41 64 6d 69 6e 69 73 74 72 61 74 6f 72 2c 6f 75 Administrator,ou
0020: 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c =Users,dc=muxas,
0030: 64 63 3d 6e 65 74 80 0d 41 64 6d 69 6e 69 73 74 dc=net..Administ
0040: 72 61 74 6f 72 rator
put_filter: simple
ldap_write: want=69, written=69
0000: 30 43 02 01 01 60 3e 02 01 03 04 2a 75 69 64 3d 0C...`>....*uid=
0010: 41 64 6d 69 6e 69 73 74 72 61 74 6f 72 2c 6f 75 Administrator,ou
wait4msg ld 0x803035040 msgid 1 (timeout 10000000 usec)
wait4msg continue ld 0x803035040 msgid 1 all 1
put_simple_filter: "objectClass=posixAccount"
put_filter: "(uid=muxas)"
** ld 0x803035040 Connections:
put_filter: simple
0020: 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c =Users,dc=muxas,
0030: 64 63 3d 6e 65 74 80 0d 41 64 6d 69 6e 69 73 74 dc=net..Administ
0040: 72 61 74 6f 72 rator
* host: 127.0.0.1 port: 389 (default)
ldap_result ld 0x802c35040 msgid 1
put_simple_filter: "uid=muxas"
wait4msg ld 0x802c35040 msgid 1 (timeout 10000000 usec)
refcnt: 2 status: Connected
ldap_build_search_req ATTRS: userPassword cn gidNumber uidNumber loginShell
objectClass gecos uid homeDirectory
last used: Mon Jan 16 12:56:18 2012
wait4msg continue ld 0x802c35040 msgid 1 all 1
ldap_send_initial_request
** ld 0x803035040 Outstanding Requests:
** ld 0x802c35040 Connections:
ldap_send_server_request
* msgid 1, origid 1, status InProgress
ber_scanf fmt ({it) ber:
* host: 127.0.0.1 port: 389 (default)
refcnt: 2 status: Connected
ber_dump: buf=0x802854000 ptr=0x802854000 end=0x8028540bd len=189
last used: Mon Jan 16 12:56:18 2012
outstanding referrals 0, parent count 0
0000: 30 81 ba 02 01 02 63 81 b4 04 18 6f 75 3d 55 73 0.....c....ou=Us
0010: 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d ers,dc=muxas,dc=
ld 0x803035040 request count 1 (abandoned 0)
** ld 0x802c35040 Outstanding Requests:
* msgid 1, origid 1, status InProgress
0020: 6e 65 74 0a 01 02 0a 01 00 02 01 00 02 01 00 01 net.............
** ld 0x803035040 Response Queue:
0030: 01 00 a0 2b a3 1b 04 0b 6f 62 6a 65 63 74 43 6c ...+....objectCl
0040: 61 73 73 04 0c 70 6f 73 69 78 41 63 63 6f 75 6e ass..posixAccoun
0050: 74 a3 0c 04 03 75 69 64 04 05 6d 75 78 61 73 30 t....uid..muxas0
0060: 5c 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 04 \..userPassword.
0070: 02 63 6e 04 09 67 69 64 4e 75 6d 62 65 72 04 09 .cn..gidNumber..
0080: 75 69 64 4e 75 6d 62 65 72 04 0a 6c 6f 67 69 6e uidNumber..login
0090: 53 68 65 6c 6c 04 0b 6f 62 6a 65 63 74 43 6c 61 Shell..objectCla
00a0: 73 73 04 05 67 65 63 6f 73 04 03 75 69 64 04 0d ss..gecos..uid..
00b0: 68 6f 6d 65 44 69 72 65 63 74 6f 72 79 homeDirectory
Empty
ber_scanf fmt ({) ber:
ber_dump: buf=0x802854000 ptr=0x802854006 end=0x8028540bd len=183
ld 0x803035040 response count 0
outstanding referrals 0, parent count 0
0000: 63 81 b4 04 18 6f 75 3d 55 73 65 72 73 2c 64 63 c....ou=Users,dc
0010: 3d 6d 75 78 61 73 2c 64 63 3d 6e 65 74 0a 01 02 =muxas,dc=net...
0020: 0a 01 00 02 01 00 02 01 00 01 01 00 a0 2b a3 1b .............+..
0030: 04 0b 6f 62 6a 65 63 74 43 6c 61 73 73 04 0c 70 ..objectClass..p
0040: 6f 73 69 78 41 63 63 6f 75 6e 74 a3 0c 04 03 75 osixAccount....u
0050: 69 64 04 05 6d 75 78 61 73 30 5c 04 0c 75 73 65 id..muxas0\..use
0060: 72 50 61 73 73 77 6f 72 64 04 02 63 6e 04 09 67 rPassword..cn..g
0070: 69 64 4e 75 6d 62 65 72 04 09 75 69 64 4e 75 6d idNumber..uidNum
0080: 62 65 72 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 04 ber..loginShell.
0090: 0b 6f 62 6a 65 63 74 43 6c 61 73 73 04 05 67 65 .objectClass..ge
00a0: 63 6f 73 04 03 75 69 64 04 0d 68 6f 6d 65 44 69 cos..uid..homeDi
00b0: 72 65 63 74 6f 72 79 rectory
ldap_chkResponseList ld 0x803035040 msgid 1 all 1
ld 0x802c35040 request count 1 (abandoned 0)
ber_flush2: 189 bytes to sd 11
ldap_chkResponseList returns ld 0x803035040 NULL
0000: 30 81 ba 02 01 02 63 81 b4 04 18 6f 75 3d 55 73 0.....c....ou=Us
ldap_int_select
** ld 0x802c35040 Response Queue:
Empty
read1msg: ld 0x803035040 msgid 1 all 1
ber_get_next
0010: 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d ers,dc=muxas,dc=
ldap_read: want=8, got=8
0000: 30 0c 02 01 01 61 07 0a 0....a..
ld 0x802c35040 response count 0
0020: 6e 65 74 0a 01 02 0a 01 00 02 01 00 02 01 00 01 net.............
0030: 01 00 a0 2b a3 1b 04 0b 6f 62 6a 65 63 74 43 6c ...+....objectCl
0040: 61 73 73 04 0c 70 6f 73 69 78 41 63 63 6f 75 6e ass..posixAccoun
0050: 74 a3 0c 04 03 75 69 64 04 05 6d 75 78 61 73 30 t....uid..muxas0
0060: 5c 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 04 \..userPassword.
0070: 02 63 6e 04 09 67 69 64 4e 75 6d 62 65 72 04 09 .cn..gidNumber..
0080: 75 69 64 4e 75 6d 62 65 72 04 0a 6c 6f 67 69 6e uidNumber..login
0090: 53 68 65 6c 6c 04 0b 6f 62 6a 65 63 74 43 6c 61 Shell..objectCla
00a0: 73 73 04 05 67 65 63 6f 73 04 03 75 69 64 04 0d ss..gecos..uid..
00b0: 68 6f 6d 65 44 69 72 65 63 74 6f 72 79 homeDirectory
ldap_chkResponseList ld 0x802c35040 msgid 1 all 1
ldap_chkResponseList returns ld 0x802c35040 NULL
ldap_int_select
ldap_write: want=189, written=189
0000: 30 81 ba 02 01 02 63 81 b4 04 18 6f 75 3d 55 73 0.....c....ou=Us
0010: 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d ers,dc=muxas,dc=
read1msg: ld 0x802c35040 msgid 1 all 1
0020: 6e 65 74 0a 01 02 0a 01 00 02 01 00 02 01 00 01 net.............
ber_get_next
ldap_read: want=6, got=6
0000: 01 00 04 00 04 00 ......
0030: 01 00 a0 2b a3 1b 04 0b 6f 62 6a 65 63 74 43 6c ...+....objectCl
ldap_read: want=8, got=8
ber_get_next: tag 0x30 len 12 contents:
ber_dump: buf=0x803048050 ptr=0x803048050 end=0x80304805c len=12
0000: 02 01 01 61 07 0a 01 00 04 00 04 00 ...a........
0040: 61 73 73 04 0c 70 6f 73 69 78 41 63 63 6f 75 6e ass..posixAccoun
0050: 74 a3 0c 04 03 75 69 64 04 05 6d 75 78 61 73 30 t....uid..muxas0
0060: 5c 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 04 \..userPassword.
0070: 02 63 6e 04 09 67 69 64 4e 75 6d 62 65 72 04 09 .cn..gidNumber..
0080: 75 69 64 4e 75 6d 62 65 72 04 0a 6c 6f 67 69 6e uidNumber..login
0090: 53 68 65 6c 6c 04 0b 6f 62 6a 65 63 74 43 6c 61 Shell..objectCla
00a0: 73 73 04 05 67 65 63 6f 73 04 03 75 69 64 04 0d ss..gecos..uid..
0000: 30 0c 02 01 01 61 07 0a 0....a..
00b0: 68 6f 6d 65 44 69 72 65 63 74 6f 72 79 homeDirectory
ldap_read: want=6, got=6
0000: 01 00 04 00 04 00 ......
ldap_result ld 0x802835040 msgid 2
read1msg: ld 0x803035040 msgid 1 message type bind
wait4msg ld 0x802835040 msgid 2 (timeout 10000000 usec)
wait4msg continue ld 0x802835040 msgid 2 all 0
ber_get_next: tag 0x30 len 12 contents:
ber_dump: buf=0x802c48050 ptr=0x802c48050 end=0x802c4805c len=12
ber_scanf fmt ({eAA) ber:
0000: 02 01 01 61 07 0a 01 00 04 00 04 00 ...a........
ber_dump: buf=0x803048050 ptr=0x803048053 end=0x80304805c len=9
read1msg: ld 0x802c35040 msgid 1 message type bind
** ld 0x802835040 Connections:
* host: 127.0.0.1 port: 389 (default)
refcnt: 2 status: Connected
0000: 61 07 0a 01 00 04 00 04 00 a........
ber_scanf fmt ({eAA) ber:
last used: Mon Jan 16 12:56:18 2012
read1msg: ld 0x803035040 0 new referrals
ber_dump: buf=0x802c48050 ptr=0x802c48053 end=0x802c4805c len=9
0000: 61 07 0a 01 00 04 00 04 00 a........
** ld 0x802835040 Outstanding Requests:
read1msg: ld 0x802c35040 0 new referrals
read1msg: mark request completed, ld 0x803035040 msgid 1
request done: ld 0x803035040 msgid 1
read1msg: mark request completed, ld 0x802c35040 msgid 1
* msgid 2, origid 2, status InProgress
res_errno: 0, res_error: <>, res_matched: <>
request done: ld 0x802c35040 msgid 1
outstanding referrals 0, parent count 0
ldap_free_request (origid 1, msgid 1)
res_errno: 0, res_error: <>, res_matched: <>
ld 0x802835040 request count 1 (abandoned 0)
ldap_parse_result
ldap_free_request (origid 1, msgid 1)
** ld 0x802835040 Response Queue:
ldap_parse_result
Empty
ber_scanf fmt ({iAA) ber:
ber_scanf fmt ({iAA) ber:
ld 0x802835040 response count 0
ber_dump: buf=0x803048050 ptr=0x803048053 end=0x80304805c len=9
0000: 61 07 0a 01 00 04 00 04 00 a........
ldap_chkResponseList ld 0x802835040 msgid 2 all 0
ldap_chkResponseList returns ld 0x802835040 NULL
ber_scanf fmt (}) ber:
ber_dump: buf=0x802c48050 ptr=0x802c48053 end=0x802c4805c len=9
0000: 61 07 0a 01 00 04 00 04 00 a........
ldap_int_select
ber_scanf fmt (}) ber:
ber_dump: buf=0x803048050 ptr=0x80304805c end=0x80304805c len=0
ldap_msgfree
read1msg: ld 0x802835040 msgid 2 all 0
ber_dump: buf=0x802c48050 ptr=0x802c4805c end=0x802c4805c len=0
ber_get_next
ldap_search_ext
ldap_msgfree
ldap_read: want=8, got=8
ldap_search_ext
0000: 30 82 01 4c 02 01 02 64 0..L...d
put_filter: "(&(objectClass=posixAccount)(uid=muxas))"
put_filter: "(&(objectClass=posixAccount)(uid=muxas))"
put_filter: AND
ldap_read: want=328, got=328
0000: 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c 6f ..E."uid=muxas,o
0010: 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 u=Users,dc=muxas
0020: 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b 6f ,dc=net0...09..o
0030: 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 6f bjectClass1*..to
0040: 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 78 p..person..posix
0050: 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 41 Account..shadowA
0060: 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 0c ccount0...cn1...
0070: 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 09 Vetrov Maxim0...
0080: 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 30 gidNumber1...100
0090: 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 74 010...homeDirect
00a0: 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 ory1.../home/mux
00b0: 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 78 as0...uid1...mux
00c0: 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 31 as0...uidNumber1
00d0: 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 6f ...100010...geco
00e0: 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 s1...Homegrown
00f0: 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 user0...loginShe
0100: 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 ll1.../bin/csh08
0110: 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 ..userPassword1(
0120: 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 .&{SSHA}7UkOfYA8
0130: 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 3gc9lhur5RR/smUR
0140: 34 63 57 57 44 79 4f 39 4cWWDyO9
put_filter: AND
put_filter_list "(objectClass=posixAccount)(uid=muxas)"
ber_get_next: tag 0x30 len 332 contents:
put_filter_list "(objectClass=posixAccount)(uid=muxas)"
put_filter: "(objectClass=posixAccount)"
ber_dump: buf=0x802807480 ptr=0x802807480 end=0x8028075cc len=332
0000: 02 01 02 64 82 01 45 04 22 75 69 64 3d 6d 75 78 ...d..E."uid=mux
0010: 61 73 2c 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d as,ou=Users,dc=m
0020: 75 78 61 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 uxas,dc=net0...0
0030: 39 04 0b 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 9..objectClass1*
0040: 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 ..top..person..p
0050: 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 osixAccount..sha
0060: 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 63 6e dowAccount0...cn
0070: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0080: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0090: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
00a0: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
00b0: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
00c0: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
00d0: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
00e0: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
00f0: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0100: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
0110: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
0120: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
0130: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
0140: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
put_filter: "(objectClass=posixAccount)"
read1msg: ld 0x802835040 msgid 2 message type search-entry
put_filter: simple
put_simple_filter: "objectClass=posixAccount"
ldap_get_values
put_filter: simple
ber_scanf fmt ({x{{a) ber:
put_filter: "(uid=muxas)"
put_filter: simple
ber_dump: buf=0x802807480 ptr=0x802807483 end=0x8028075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
put_simple_filter: "objectClass=posixAccount"
ber_scanf fmt (x}{a) ber:
put_simple_filter: "uid=muxas"
ber_dump: buf=0x802807480 ptr=0x8028074be end=0x8028075cc len=270
ldap_build_search_req ATTRS: userPassword cn gidNumber uidNumber loginShell
objectClass gecos uid homeDirectory
put_filter: "(uid=muxas)"
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
put_filter: simple
ldap_send_initial_request
ldap_send_server_request
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
put_simple_filter: "uid=muxas"
ber_scanf fmt (x}{a) ber:
ber_scanf fmt ({it) ber:
ldap_build_search_req ATTRS: userPassword cn gidNumber uidNumber loginShell
objectClass gecos uid homeDirectory
ber_dump: buf=0x802807480 ptr=0x8028074f0 end=0x8028075cc len=220
ldap_send_initial_request
ber_dump: buf=0x803054000 ptr=0x803054000 end=0x8030540bd len=189
0000: 30 81 ba 02 01 02 63 81 b4 04 18 6f 75 3d 55 73 0.....c....ou=Us
ldap_send_server_request
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
ber_scanf fmt ({it) ber:
ber_dump: buf=0x802c54000 ptr=0x802c54000 end=0x802c540bd len=189
0000: 30 81 ba 02 01 02 63 81 b4 04 18 6f 75 3d 55 73 0.....c....ou=Us
0010: 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d ers,dc=muxas,dc=
0020: 6e 65 74 0a 01 02 0a 01 00 02 01 00 02 01 00 01 net.............
0030: 01 00 a0 2b a3 1b 04 0b 6f 62 6a 65 63 74 43 6c ...+....objectCl
0040: 61 73 73 04 0c 70 6f 73 69 78 41 63 63 6f 75 6e ass..posixAccoun
0050: 74 a3 0c 04 03 75 69 64 04 05 6d 75 78 61 73 30 t....uid..muxas0
0060: 5c 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 04 \..userPassword.
0070: 02 63 6e 04 09 67 69 64 4e 75 6d 62 65 72 04 09 .cn..gidNumber..
0080: 75 69 64 4e 75 6d 62 65 72 04 0a 6c 6f 67 69 6e uidNumber..login
0090: 53 68 65 6c 6c 04 0b 6f 62 6a 65 63 74 43 6c 61 Shell..objectCla
00a0: 73 73 04 05 67 65 63 6f 73 04 03 75 69 64 04 0d ss..gecos..uid..
00b0: 68 6f 6d 65 44 69 72 65 63 74 6f 72 79 homeDirectory
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt ({) ber:
ber_scanf fmt (x}{a) ber:
0010: 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d ers,dc=muxas,dc=
0020: 6e 65 74 0a 01 02 0a 01 00 02 01 00 02 01 00 01 net.............
0030: 01 00 a0 2b a3 1b 04 0b 6f 62 6a 65 63 74 43 6c ...+....objectCl
0040: 61 73 73 04 0c 70 6f 73 69 78 41 63 63 6f 75 6e ass..posixAccoun
0050: 74 a3 0c 04 03 75 69 64 04 05 6d 75 78 61 73 30 t....uid..muxas0
0060: 5c 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 04 \..userPassword.
0070: 02 63 6e 04 09 67 69 64 4e 75 6d 62 65 72 04 09 .cn..gidNumber..
0080: 75 69 64 4e 75 6d 62 65 72 04 0a 6c 6f 67 69 6e uidNumber..login
0090: 53 68 65 6c 6c 04 0b 6f 62 6a 65 63 74 43 6c 61 Shell..objectCla
ber_dump: buf=0x802c54000 ptr=0x802c54006 end=0x802c540bd len=183
ber_dump: buf=0x802807480 ptr=0x80280750d end=0x8028075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
0000: 63 81 b4 04 18 6f 75 3d 55 73 65 72 73 2c 64 63 c....ou=Users,dc
0010: 3d 6d 75 78 61 73 2c 64 63 3d 6e 65 74 0a 01 02 =muxas,dc=net...
0020: 0a 01 00 02 01 00 02 01 00 01 01 00 a0 2b a3 1b .............+..
00a0: 73 73 04 05 67 65 63 6f 73 04 03 75 69 64 04 0d ss..gecos..uid..
00b0: 68 6f 6d 65 44 69 72 65 63 74 6f 72 79 homeDirectory
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x802807527 end=0x8028075cc len=165
ber_scanf fmt ({) ber:
0030: 04 0b 6f 62 6a 65 63 74 43 6c 61 73 73 04 0c 70 ..objectClass..p
0040: 6f 73 69 78 41 63 63 6f 75 6e 74 a3 0c 04 03 75 osixAccount....u
0050: 69 64 04 05 6d 75 78 61 73 30 5c 04 0c 75 73 65 id..muxas0\..use
0060: 72 50 61 73 73 77 6f 72 64 04 02 63 6e 04 09 67 rPassword..cn..g
0070: 69 64 4e 75 6d 62 65 72 04 09 75 69 64 4e 75 6d idNumber..uidNum
0080: 62 65 72 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 04 ber..loginShell.
0090: 0b 6f 62 6a 65 63 74 43 6c 61 73 73 04 05 67 65 .objectClass..ge
00a0: 63 6f 73 04 03 75 69 64 04 0d 68 6f 6d 65 44 69 cos..uid..homeDi
00b0: 72 65 63 74 6f 72 79 rectory
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
ber_dump: buf=0x803054000 ptr=0x803054006 end=0x8030540bd len=183
0000: 63 81 b4 04 18 6f 75 3d 55 73 65 72 73 2c 64 63 c....ou=Users,dc
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ber_flush2: 189 bytes to sd 13
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x802807480 ptr=0x80280753d end=0x8028075cc len=143
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
0000: 30 81 ba 02 01 02 63 81 b4 04 18 6f 75 3d 55 73 0.....c....ou=Us
0010: 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d ers,dc=muxas,dc=
0020: 6e 65 74 0a 01 02 0a 01 00 02 01 00 02 01 00 01 net.............
0030: 01 00 a0 2b a3 1b 04 0b 6f 62 6a 65 63 74 43 6c ...+....objectCl
ldap_get_values
0010: 3d 6d 75 78 61 73 2c 64 63 3d 6e 65 74 0a 01 02 =muxas,dc=net...
0020: 0a 01 00 02 01 00 02 01 00 01 01 00 a0 2b a3 1b .............+..
0030: 04 0b 6f 62 6a 65 63 74 43 6c 61 73 73 04 0c 70 ..objectClass..p
0040: 6f 73 69 78 41 63 63 6f 75 6e 74 a3 0c 04 03 75 osixAccount....u
0050: 69 64 04 05 6d 75 78 61 73 30 5c 04 0c 75 73 65 id..muxas0\..use
ber_scanf fmt ({x{{a) ber:
0060: 72 50 61 73 73 77 6f 72 64 04 02 63 6e 04 09 67 rPassword..cn..g
0070: 69 64 4e 75 6d 62 65 72 04 09 75 69 64 4e 75 6d idNumber..uidNum
ber_dump: buf=0x802807480 ptr=0x802807483 end=0x8028075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0040: 61 73 73 04 0c 70 6f 73 69 78 41 63 63 6f 75 6e ass..posixAccoun
0080: 62 65 72 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 04 ber..loginShell.
0090: 0b 6f 62 6a 65 63 74 43 6c 61 73 73 04 05 67 65 .objectClass..ge
00a0: 63 6f 73 04 03 75 69 64 04 0d 68 6f 6d 65 44 69 cos..uid..homeDi
0050: 74 a3 0c 04 03 75 69 64 04 05 6d 75 78 61 73 30 t....uid..muxas0
0060: 5c 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 04 \..userPassword.
0070: 02 63 6e 04 09 67 69 64 4e 75 6d 62 65 72 04 09 .cn..gidNumber..
0080: 75 69 64 4e 75 6d 62 65 72 04 0a 6c 6f 67 69 6e uidNumber..login
0090: 53 68 65 6c 6c 04 0b 6f 62 6a 65 63 74 43 6c 61 Shell..objectCla
00a0: 73 73 04 05 67 65 63 6f 73 04 03 75 69 64 04 0d ss..gecos..uid..
00b0: 68 6f 6d 65 44 69 72 65 63 74 6f 72 79 homeDirectory
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
00b0: 72 65 63 74 6f 72 79 rectory
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
ber_flush2: 189 bytes to sd 12
0000: 30 81 ba 02 01 02 63 81 b4 04 18 6f 75 3d 55 73 0.....c....ou=Us
0010: 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d ers,dc=muxas,dc=
0020: 6e 65 74 0a 01 02 0a 01 00 02 01 00 02 01 00 01 net.............
0030: 01 00 a0 2b a3 1b 04 0b 6f 62 6a 65 63 74 43 6c ...+....objectCl
0040: 61 73 73 04 0c 70 6f 73 69 78 41 63 63 6f 75 6e ass..posixAccoun
0050: 74 a3 0c 04 03 75 69 64 04 05 6d 75 78 61 73 30 t....uid..muxas0
0060: 5c 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 04 \..userPassword.
ldap_write: want=189, written=189
0000: 30 81 ba 02 01 02 63 81 b4 04 18 6f 75 3d 55 73 0.....c....ou=Us
0010: 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d ers,dc=muxas,dc=
0020: 6e 65 74 0a 01 02 0a 01 00 02 01 00 02 01 00 01 net.............
0070: 02 63 6e 04 09 67 69 64 4e 75 6d 62 65 72 04 09 .cn..gidNumber..
0080: 75 69 64 4e 75 6d 62 65 72 04 0a 6c 6f 67 69 6e uidNumber..login
0090: 53 68 65 6c 6c 04 0b 6f 62 6a 65 63 74 43 6c 61 Shell..objectCla
00a0: 73 73 04 05 67 65 63 6f 73 04 03 75 69 64 04 0d ss..gecos..uid..
00b0: 68 6f 6d 65 44 69 72 65 63 74 6f 72 79 homeDirectory
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
ldap_write: want=189, written=189
0000: 30 81 ba 02 01 02 63 81 b4 04 18 6f 75 3d 55 73 0.....c....ou=Us
0010: 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d ers,dc=muxas,dc=
0030: 01 00 a0 2b a3 1b 04 0b 6f 62 6a 65 63 74 43 6c ...+....objectCl
0040: 61 73 73 04 0c 70 6f 73 69 78 41 63 63 6f 75 6e ass..posixAccoun
0050: 74 a3 0c 04 03 75 69 64 04 05 6d 75 78 61 73 30 t....uid..muxas0
0060: 5c 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 04 \..userPassword.
0070: 02 63 6e 04 09 67 69 64 4e 75 6d 62 65 72 04 09 .cn..gidNumber..
0080: 75 69 64 4e 75 6d 62 65 72 04 0a 6c 6f 67 69 6e uidNumber..login
0090: 53 68 65 6c 6c 04 0b 6f 62 6a 65 63 74 43 6c 61 Shell..objectCla
00a0: 73 73 04 05 67 65 63 6f 73 04 03 75 69 64 04 0d ss..gecos..uid..
00b0: 68 6f 6d 65 44 69 72 65 63 74 6f 72 79 homeDirectory
0020: 6e 65 74 0a 01 02 0a 01 00 02 01 00 02 01 00 01 net.............
0030: 01 00 a0 2b a3 1b 04 0b 6f 62 6a 65 63 74 43 6c ...+....objectCl
0040: 61 73 73 04 0c 70 6f 73 69 78 41 63 63 6f 75 6e ass..posixAccoun
0050: 74 a3 0c 04 03 75 69 64 04 05 6d 75 78 61 73 30 t....uid..muxas0
ldap_result ld 0x802c35040 msgid 2
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x802807480 ptr=0x8028074be end=0x8028075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
wait4msg ld 0x802c35040 msgid 2 (timeout 10000000 usec)
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0060: 5c 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 04 \..userPassword.
0070: 02 63 6e 04 09 67 69 64 4e 75 6d 62 65 72 04 09 .cn..gidNumber..
wait4msg continue ld 0x802c35040 msgid 2 all 0
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
** ld 0x802c35040 Connections:
0080: 75 69 64 4e 75 6d 62 65 72 04 0a 6c 6f 67 69 6e uidNumber..login
0090: 53 68 65 6c 6c 04 0b 6f 62 6a 65 63 74 43 6c 61 Shell..objectCla
00a0: 73 73 04 05 67 65 63 6f 73 04 03 75 69 64 04 0d ss..gecos..uid..
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00b0: 68 6f 6d 65 44 69 72 65 63 74 6f 72 79 homeDirectory
* host: 127.0.0.1 port: 389 (default)
ldap_result ld 0x803035040 msgid 2
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
refcnt: 2 status: Connected
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
last used: Mon Jan 16 12:56:18 2012
ldap_get_values
ber_scanf fmt ({x{{a) ber:
** ld 0x802c35040 Outstanding Requests:
wait4msg ld 0x803035040 msgid 2 (timeout 10000000 usec)
* msgid 2, origid 2, status InProgress
ber_dump: buf=0x802807480 ptr=0x802807483 end=0x8028075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
wait4msg continue ld 0x803035040 msgid 2 all 0
outstanding referrals 0, parent count 0
** ld 0x803035040 Connections:
* host: 127.0.0.1 port: 389 (default)
refcnt: 2 status: Connected
ld 0x802c35040 request count 1 (abandoned 0)
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
last used: Mon Jan 16 12:56:18 2012
** ld 0x802c35040 Response Queue:
Empty
** ld 0x803035040 Outstanding Requests:
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
* msgid 2, origid 2, status InProgress
outstanding referrals 0, parent count 0
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
ld 0x803035040 request count 1 (abandoned 0)
** ld 0x803035040 Response Queue:
Empty
ld 0x802c35040 response count 0
ld 0x803035040 response count 0
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
ldap_chkResponseList ld 0x803035040 msgid 2 all 0
ldap_chkResponseList returns ld 0x803035040 NULL
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
ldap_int_select
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
read1msg: ld 0x803035040 msgid 2 all 0
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_get_next
ldap_chkResponseList ld 0x802c35040 msgid 2 all 0
ldap_read: want=8, got=8
0000: 30 82 01 4c 02 01 02 64 0..L...d
ldap_chkResponseList returns ld 0x802c35040 NULL
ldap_read: want=328, got=328
0000: 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c 6f ..E."uid=muxas,o
0010: 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 u=Users,dc=muxas
0020: 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b 6f ,dc=net0...09..o
0030: 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 6f bjectClass1*..to
0040: 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 78 p..person..posix
ber_scanf fmt (x}{a) ber:
ldap_int_select
ber_dump: buf=0x802807480 ptr=0x8028074be end=0x8028075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
read1msg: ld 0x802c35040 msgid 2 all 0
ber_get_next
0050: 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 41 Account..shadowA
ldap_read: want=8, got=8
0000: 30 82 01 4c 02 01 02 64 0..L...d
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
ldap_read: want=328, got=328
0000: 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c 6f ..E."uid=muxas,o
0010: 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 u=Users,dc=muxas
0020: 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b 6f ,dc=net0...09..o
0030: 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 6f bjectClass1*..to
0040: 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 78 p..person..posix
0050: 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 41 Account..shadowA
0060: 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 0c ccount0...cn1...
0070: 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 09 Vetrov Maxim0...
0080: 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 30 gidNumber1...100
0090: 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 74 010...homeDirect
00a0: 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 ory1.../home/mux
00b0: 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 78 as0...uid1...mux
00c0: 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 31 as0...uidNumber1
00d0: 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 6f ...100010...geco
00e0: 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 s1...Homegrown
00f0: 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 user0...loginShe
0100: 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 ll1.../bin/csh08
0110: 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 ..userPassword1(
0120: 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 .&{SSHA}7UkOfYA8
0130: 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 3gc9lhur5RR/smUR
0140: 34 63 57 57 44 79 4f 39 4cWWDyO9
0060: 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 0c ccount0...cn1...
0070: 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 09 Vetrov Maxim0...
0080: 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 30 gidNumber1...100
0090: 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 74 010...homeDirect
00a0: 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 ory1.../home/mux
00b0: 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 78 as0...uid1...mux
00c0: 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 31 as0...uidNumber1
00d0: 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 6f ...100010...geco
00e0: 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 s1...Homegrown
00f0: 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 user0...loginShe
0100: 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 ll1.../bin/csh08
0110: 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 ..userPassword1(
0120: 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 .&{SSHA}7UkOfYA8
0130: 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 3gc9lhur5RR/smUR
0140: 34 63 57 57 44 79 4f 39 4cWWDyO9
ber_get_next: tag 0x30 len 332 contents:
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
ber_dump: buf=0x802c07480 ptr=0x802c07480 end=0x802c075cc len=332
0000: 02 01 02 64 82 01 45 04 22 75 69 64 3d 6d 75 78 ...d..E."uid=mux
0010: 61 73 2c 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d as,ou=Users,dc=m
0020: 75 78 61 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 uxas,dc=net0...0
0030: 39 04 0b 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 9..objectClass1*
0040: 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 ..top..person..p
ber_get_next: tag 0x30 len 332 contents:
ber_dump: buf=0x803007480 ptr=0x803007480 end=0x8030075cc len=332
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
0050: 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 osixAccount..sha
0060: 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 63 6e dowAccount0...cn
0070: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0080: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0090: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
00a0: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
00b0: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
00c0: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
00d0: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
00e0: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
00f0: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0100: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
0110: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
0120: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
0130: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
0140: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
0000: 02 01 02 64 82 01 45 04 22 75 69 64 3d 6d 75 78 ...d..E."uid=mux
read1msg: ld 0x802c35040 msgid 2 message type search-entry
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
ldap_get_values
ber_scanf fmt ({x{{a) ber:
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
ber_dump: buf=0x802c07480 ptr=0x802c07483 end=0x802c075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
0010: 61 73 2c 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d as,ou=Users,dc=m
0020: 75 78 61 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 uxas,dc=net0...0
0030: 39 04 0b 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 9..objectClass1*
0040: 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 ..top..person..p
0050: 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 osixAccount..sha
0060: 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 63 6e dowAccount0...cn
0070: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0080: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0090: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
00a0: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
00b0: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
00c0: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
00d0: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
00e0: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
00f0: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0100: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
0110: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
0120: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
0130: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
0140: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
read1msg: ld 0x803035040 msgid 2 message type search-entry
ber_scanf fmt (x}{a) ber:
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ldap_get_values
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x8028074f0 end=0x8028075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x803007480 ptr=0x803007483 end=0x8030075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_dump: buf=0x802c07480 ptr=0x802c074be end=0x802c075cc len=270
ber_scanf fmt (x}{a) ber:
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
ber_dump: buf=0x803007480 ptr=0x8030074be end=0x8030075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
ber_scanf fmt (x}{a) ber:
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
ber_dump: buf=0x803007480 ptr=0x8030074f0 end=0x8030075cc len=220
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
ber_scanf fmt (x}{a) ber:
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
ber_dump: buf=0x802c07480 ptr=0x802c074f0 end=0x802c075cc len=220
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
ber_scanf fmt (x}{a) ber:
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x80280750d end=0x8028075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
ber_dump: buf=0x802c07480 ptr=0x802c0750d end=0x802c075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_scanf fmt (x}{a) ber:
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
ber_dump: buf=0x802807480 ptr=0x802807527 end=0x8028075cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
ber_dump: buf=0x803007480 ptr=0x80300750d end=0x8030075cc len=191
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
00a0: 57 44 79 4f 39 WDyO9
ber_dump: buf=0x802c07480 ptr=0x802c07527 end=0x802c075cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x80280753d end=0x8028075cc len=143
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x803007480 ptr=0x803007527 end=0x8030075cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
ber_dump: buf=0x802807480 ptr=0x802807553 end=0x8028075cc len=121
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0000: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
0010: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
0020: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0030: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0040: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0050: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0060: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
0070: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x802c07480 ptr=0x802c0753d end=0x802c075cc len=143
ldap_get_values
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x802807480 ptr=0x802807483 end=0x8028075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
ber_scanf fmt (x}{a) ber:
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_dump: buf=0x802807480 ptr=0x8028074be end=0x8028075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
ldap_get_values
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
ber_scanf fmt ({x{{a) ber:
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ber_dump: buf=0x802c07480 ptr=0x802c07483 end=0x802c075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
ber_scanf fmt ([v]) ber:
ber_scanf fmt ([v]) ber:
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_dump: buf=0x802c07480 ptr=0x802c074be end=0x802c075cc len=270
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x80300753d end=0x8030075cc len=143
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
ber_dump: buf=0x802807480 ptr=0x8028074f0 end=0x8028075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt ([v]) ber:
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x802c07480 ptr=0x802c07483 end=0x802c075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
ber_dump: buf=0x802807480 ptr=0x80280750d end=0x8028075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
ldap_get_values
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
ber_scanf fmt ({x{{a) ber:
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
ber_dump: buf=0x802807480 ptr=0x802807483 end=0x8028075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x8028074be end=0x8028075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ldap_get_values
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802c07480 ptr=0x802c074be end=0x802c075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x802807480 ptr=0x8028074f0 end=0x8028075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x803007483 end=0x8030075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
ber_dump: buf=0x802807480 ptr=0x80280750d end=0x8028075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802c07480 ptr=0x802c074f0 end=0x802c075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
ber_scanf fmt (x}{a) ber:
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
ber_dump: buf=0x802c07480 ptr=0x802c0750d end=0x802c075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
ber_scanf fmt (x}{a) ber:
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x802807527 end=0x8028075cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ber_dump: buf=0x802c07480 ptr=0x802c07527 end=0x802c075cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ber_scanf fmt (x}{a) ber:
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
ber_dump: buf=0x802807480 ptr=0x80280753d end=0x8028075cc len=143
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
ber_scanf fmt (x}{a) ber:
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_dump: buf=0x802c07480 ptr=0x802c0753d end=0x802c075cc len=143
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_dump: buf=0x802807480 ptr=0x802807553 end=0x8028075cc len=121
0000: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
0010: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
0020: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0030: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0040: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0050: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0060: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0070: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt ([v]) ber:
ber_scanf fmt ([v]) ber:
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x802807480 ptr=0x802807565 end=0x8028075cc len=103
0000: 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 1...Homegrown u
0010: 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c ser0...loginShel
0020: 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 l1.../bin/csh08.
ber_dump: buf=0x803007480 ptr=0x8030074be end=0x8030075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0030: 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 .userPassword1(.
0040: 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 &{SSHA}7UkOfYA83
0050: 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 gc9lhur5RR/smUR4
0060: 63 57 57 44 79 4f 39 cWWDyO9
ber_dump: buf=0x802c07480 ptr=0x802c07553 end=0x802c075cc len=121
ldap_get_values
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x802807480 ptr=0x802807483 end=0x8028075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
0000: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
0010: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
0020: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
ber_scanf fmt (x}{a) ber:
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
ber_dump: buf=0x802807480 ptr=0x8028074be end=0x8028075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
0030: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0040: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
ber_scanf fmt (x}{a) ber:
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
ber_dump: buf=0x802807480 ptr=0x8028074f0 end=0x8028075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
0050: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0060: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
ber_scanf fmt (x}{a) ber:
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
ber_dump: buf=0x802807480 ptr=0x80280750d end=0x8028075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0070: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
ldap_get_values
ber_scanf fmt ({x{{a) ber:
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
ber_dump: buf=0x802c07480 ptr=0x802c07483 end=0x802c075cc len=329
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
ber_scanf fmt (x}{a) ber:
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
ldap_get_values
ber_scanf fmt ({x{{a) ber:
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_dump: buf=0x802c07480 ptr=0x802c074be end=0x802c075cc len=270
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x803007480 ptr=0x803007483 end=0x8030075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
ber_dump: buf=0x802807480 ptr=0x802807527 end=0x8028075cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
ldap_get_values
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
ber_scanf fmt ({x{{a) ber:
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_dump: buf=0x802807480 ptr=0x802807483 end=0x8028075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
ber_scanf fmt (x}{a) ber:
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_dump: buf=0x802c07480 ptr=0x802c074f0 end=0x802c075cc len=220
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x8028074be end=0x8028075cc len=270
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
ber_scanf fmt (x}{a) ber:
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
ber_dump: buf=0x802807480 ptr=0x8028074f0 end=0x8028075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
ber_dump: buf=0x802807480 ptr=0x80280750d end=0x8028075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x802c07480 ptr=0x802c0750d end=0x802c075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
ldap_get_values
ber_scanf fmt ({x{{a) ber:
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
ber_dump: buf=0x802c07480 ptr=0x802c07483 end=0x802c075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802c07480 ptr=0x802c074be end=0x802c075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
ber_scanf fmt (x}{a) ber:
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
ber_dump: buf=0x803007480 ptr=0x8030074be end=0x8030075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
ber_dump: buf=0x802807480 ptr=0x802807527 end=0x8028075cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
ber_scanf fmt (x}{a) ber:
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
ber_dump: buf=0x802807480 ptr=0x80280753d end=0x8028075cc len=143
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
ber_scanf fmt (x}{a) ber:
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
ber_dump: buf=0x802807480 ptr=0x802807553 end=0x8028075cc len=121
0000: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
0010: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
0020: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0030: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0040: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0050: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0060: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0070: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_dump: buf=0x802807480 ptr=0x802807565 end=0x8028075cc len=103
0000: 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 1...Homegrown u
0010: 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c ser0...loginShel
0020: 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 l1.../bin/csh08.
0030: 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 .userPassword1(.
0040: 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 &{SSHA}7UkOfYA83
0050: 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 gc9lhur5RR/smUR4
0060: 63 57 57 44 79 4f 39 cWWDyO9
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_scanf fmt ([v]) ber:
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x8030074f0 end=0x8030075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
ber_dump: buf=0x802807480 ptr=0x802807586 end=0x8028075cc len=70
0000: 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 1.../bin/csh08..
0010: 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 userPassword1(.&
0020: 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 {SSHA}7UkOfYA83g
0030: 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 c9lhur5RR/smUR4c
0040: 57 57 44 79 4f 39 WWDyO9
ber_dump: buf=0x802c07480 ptr=0x802c074f0 end=0x802c075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
passwd.c:387:write_passwd: WRITE_INT32 : var=0 int32=0
passwd.c:387:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:388:write_passwd: WRITE_STRING: var=usernames[i] string="muxas"
passwd.c:388:write_passwd: WRITE_INT32 : var=strlen(usernames[i]) int32=5
passwd.c:388:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:388:write_passwd: WRITE : var=(usernames[i]) size=5
passwd.c:389:write_passwd: WRITE_STRING: var=passwd string="x"
passwd.c:389:write_passwd: WRITE_INT32 : var=strlen(passwd) int32=1
passwd.c:389:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:389:write_passwd: WRITE : var=(passwd) size=1
passwd.c:390:write_passwd: WRITE : var=&(uids[j]) size=4
passwd.c:391:write_passwd: WRITE : var=&(gid) size=4
passwd.c:392:write_passwd: WRITE_STRING: var=gecos string="Homegrown user"
passwd.c:392:write_passwd: WRITE_INT32 : var=strlen(gecos) int32=15
passwd.c:392:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:392:write_passwd: WRITE : var=(gecos) size=15
passwd.c:393:write_passwd: WRITE_STRING: var=homedir string="/home/muxas"
passwd.c:393:write_passwd: WRITE_INT32 : var=strlen(homedir) int32=11
passwd.c:393:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:393:write_passwd: WRITE : var=(homedir) size=11
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
passwd.c:393:write_passwd: WRITE : var=(homedir) error: Broken pipe
nslcd: [b7acd9] error writing to client: Broken pipe
ldap_msgfree
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
ldap_abandon 2
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
ldap_abandon_ext 2
do_abandon origid 2, msgid 2
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
ldap_msgdelete ld=0x802835040 msgid=2
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
ber_flush2: 8 bytes to sd 11
0000: 30 06 02 01 03 50 01 02 0....P..
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
ldap_write: want=8, written=8
0000: 30 06 02 01 03 50 01 02 0....P..
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ldap_free_connection 0 1
ldap_free_connection: refcnt 1
ber_dump: buf=0x803007480 ptr=0x80300750d end=0x8030075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
ldap_free_request (origid 2, msgid 2)
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
ldap_msgfree
ber_scanf fmt (x}{a) ber:
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_dump: buf=0x802c07480 ptr=0x802c0750d end=0x802c075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x803007527 end=0x8030075cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ber_scanf fmt (x}{a) ber:
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802c07480 ptr=0x802c07527 end=0x802c075cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ber_dump: buf=0x803007480 ptr=0x80300753d end=0x8030075cc len=143
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802c07480 ptr=0x802c0753d end=0x802c075cc len=143
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802c07480 ptr=0x802c07553 end=0x802c075cc len=121
0000: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
0010: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
0020: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0030: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0040: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0050: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0060: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0070: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt ([v]) ber:
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x803007480 ptr=0x803007553 end=0x8030075cc len=121
0000: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
0010: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
0020: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0030: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0040: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0050: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0060: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0070: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_dump: buf=0x802c07480 ptr=0x802c07565 end=0x802c075cc len=103
0000: 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 1...Homegrown u
0010: 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c ser0...loginShel
0020: 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 l1.../bin/csh08.
0030: 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 .userPassword1(.
0040: 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 &{SSHA}7UkOfYA83
0050: 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 gc9lhur5RR/smUR4
0060: 63 57 57 44 79 4f 39 cWWDyO9
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x803007480 ptr=0x803007483 end=0x8030075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x802c07480 ptr=0x802c07483 end=0x802c075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x8030074be end=0x8030075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802c07480 ptr=0x802c074be end=0x802c075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802c07480 ptr=0x802c074f0 end=0x802c075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802c07480 ptr=0x802c0750d end=0x802c075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x802c07480 ptr=0x802c07527 end=0x802c075cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x802c07480 ptr=0x802c07483 end=0x802c075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x8030074f0 end=0x8030075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_dump: buf=0x802c07480 ptr=0x802c074be end=0x802c075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x803007480 ptr=0x80300750d end=0x8030075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x803007480 ptr=0x803007483 end=0x8030075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_dump: buf=0x802c07480 ptr=0x802c074f0 end=0x802c075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x8030074be end=0x8030075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_dump: buf=0x802c07480 ptr=0x802c0750d end=0x802c075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802c07480 ptr=0x802c07527 end=0x802c075cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802c07480 ptr=0x802c0753d end=0x802c075cc len=143
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802c07480 ptr=0x802c07553 end=0x802c075cc len=121
0000: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
0010: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
0020: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0030: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0040: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0050: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0060: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0070: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802c07480 ptr=0x802c07565 end=0x802c075cc len=103
0000: 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 1...Homegrown u
0010: 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c ser0...loginShel
0020: 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 l1.../bin/csh08.
0030: 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 .userPassword1(.
0040: 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 &{SSHA}7UkOfYA83
0050: 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 gc9lhur5RR/smUR4
0060: 63 57 57 44 79 4f 39 cWWDyO9
ber_scanf fmt ([v]) ber:
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802c07480 ptr=0x802c07586 end=0x802c075cc len=70
0000: 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 1.../bin/csh08..
0010: 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 userPassword1(.&
0020: 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 {SSHA}7UkOfYA83g
0030: 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 c9lhur5RR/smUR4c
0040: 57 57 44 79 4f 39 WWDyO9
passwd.c:387:write_passwd: WRITE_INT32 : var=0 int32=0
passwd.c:387:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:388:write_passwd: WRITE_STRING: var=usernames[i] string="muxas"
passwd.c:388:write_passwd: WRITE_INT32 : var=strlen(usernames[i]) int32=5
passwd.c:388:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:388:write_passwd: WRITE : var=(usernames[i]) size=5
passwd.c:389:write_passwd: WRITE_STRING: var=passwd string="x"
passwd.c:389:write_passwd: WRITE_INT32 : var=strlen(passwd) int32=1
passwd.c:389:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:389:write_passwd: WRITE : var=(passwd) size=1
passwd.c:390:write_passwd: WRITE : var=&(uids[j]) size=4
passwd.c:391:write_passwd: WRITE : var=&(gid) size=4
passwd.c:392:write_passwd: WRITE_STRING: var=gecos string="Homegrown user"
passwd.c:392:write_passwd: WRITE_INT32 : var=strlen(gecos) int32=15
passwd.c:392:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:392:write_passwd: WRITE : var=(gecos) size=15
passwd.c:393:write_passwd: WRITE_STRING: var=homedir string="/home/muxas"
passwd.c:393:write_passwd: WRITE_INT32 : var=strlen(homedir) int32=11
passwd.c:393:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:393:write_passwd: WRITE : var=(homedir) size=11
ber_dump: buf=0x803007480 ptr=0x8030074f0 end=0x8030075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
passwd.c:393:write_passwd: WRITE : var=(homedir) error: Broken pipe
nslcd: [b50c2a] error writing to client: Broken pipe
ldap_msgfree
ber_scanf fmt (x}{a) ber:
ldap_abandon 2
ldap_abandon_ext 2
do_abandon origid 2, msgid 2
ldap_msgdelete ld=0x802c35040 msgid=2
ber_dump: buf=0x803007480 ptr=0x80300750d end=0x8030075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_flush2: 8 bytes to sd 13
0000: 30 06 02 01 03 50 01 02 0....P..
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x803007527 end=0x8030075cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ldap_write: want=8, written=8
0000: 30 06 02 01 03 50 01 02 0....P..
ldap_free_connection 0 1
ldap_free_connection: refcnt 1
ldap_free_request (origid 2, msgid 2)
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x80300753d end=0x8030075cc len=143
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x803007553 end=0x8030075cc len=121
0000: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
0010: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
0020: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0030: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0040: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0050: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0060: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0070: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x803007480 ptr=0x803007565 end=0x8030075cc len=103
0000: 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 1...Homegrown u
0010: 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c ser0...loginShel
0020: 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 l1.../bin/csh08.
0030: 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 .userPassword1(.
0040: 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 &{SSHA}7UkOfYA83
0050: 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 gc9lhur5RR/smUR4
0060: 63 57 57 44 79 4f 39 cWWDyO9
ldap_msgfree
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x803007480 ptr=0x803007483 end=0x8030075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x8030074be end=0x8030075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x8030074f0 end=0x8030075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x80300750d end=0x8030075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x803007480 ptr=0x803007527 end=0x8030075cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x803007480 ptr=0x803007483 end=0x8030075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x8030074be end=0x8030075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x8030074f0 end=0x8030075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x80300750d end=0x8030075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x803007527 end=0x8030075cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x80300753d end=0x8030075cc len=143
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x803007553 end=0x8030075cc len=121
0000: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
0010: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
0020: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0030: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0040: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0050: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0060: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0070: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x803007480 ptr=0x803007565 end=0x8030075cc len=103
0000: 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 1...Homegrown u
0010: 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c ser0...loginShel
0020: 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 l1.../bin/csh08.
0030: 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 .userPassword1(.
0040: 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 &{SSHA}7UkOfYA83
0050: 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 gc9lhur5RR/smUR4
0060: 63 57 57 44 79 4f 39 cWWDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x803007480 ptr=0x803007586 end=0x8030075cc len=70
0000: 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 1.../bin/csh08..
0010: 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 userPassword1(.&
0020: 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 {SSHA}7UkOfYA83g
0030: 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 c9lhur5RR/smUR4c
0040: 57 57 44 79 4f 39 WWDyO9
passwd.c:387:write_passwd: WRITE_INT32 : var=0 int32=0
passwd.c:387:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:388:write_passwd: WRITE_STRING: var=usernames[i] string="muxas"
passwd.c:388:write_passwd: WRITE_INT32 : var=strlen(usernames[i]) int32=5
passwd.c:388:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:388:write_passwd: WRITE : var=(usernames[i]) size=5
passwd.c:389:write_passwd: WRITE_STRING: var=passwd string="x"
passwd.c:389:write_passwd: WRITE_INT32 : var=strlen(passwd) int32=1
passwd.c:389:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:389:write_passwd: WRITE : var=(passwd) size=1
passwd.c:390:write_passwd: WRITE : var=&(uids[j]) size=4
passwd.c:391:write_passwd: WRITE : var=&(gid) size=4
passwd.c:392:write_passwd: WRITE_STRING: var=gecos string="Homegrown user"
passwd.c:392:write_passwd: WRITE_INT32 : var=strlen(gecos) int32=15
passwd.c:392:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:392:write_passwd: WRITE : var=(gecos) size=15
passwd.c:393:write_passwd: WRITE_STRING: var=homedir string="/home/muxas"
passwd.c:393:write_passwd: WRITE_INT32 : var=strlen(homedir) int32=11
passwd.c:393:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:393:write_passwd: WRITE : var=(homedir) size=11
passwd.c:394:write_passwd: WRITE_STRING: var=shell string="/bin/csh"
passwd.c:394:write_passwd: WRITE_INT32 : var=strlen(shell) int32=8
passwd.c:394:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:394:write_passwd: WRITE : var=(shell) size=8
ldap_msgfree
ldap_result ld 0x803035040 msgid 2
wait4msg ld 0x803035040 msgid 2 (timeout 10000000 usec)
wait4msg continue ld 0x803035040 msgid 2 all 0
** ld 0x803035040 Connections:
* host: 127.0.0.1 port: 389 (default)
refcnt: 2 status: Connected
last used: Mon Jan 16 12:56:18 2012
** ld 0x803035040 Outstanding Requests:
* msgid 2, origid 2, status InProgress
outstanding referrals 0, parent count 0
ld 0x803035040 request count 1 (abandoned 0)
** ld 0x803035040 Response Queue:
Empty
ld 0x803035040 response count 0
ldap_chkResponseList ld 0x803035040 msgid 2 all 0
ldap_chkResponseList returns ld 0x803035040 NULL
ldap_int_select
read1msg: ld 0x803035040 msgid 2 all 0
ber_get_next
ldap_read: want=8, got=8
0000: 30 0c 02 01 02 65 07 0a 0....e..
ldap_read: want=6, got=6
0000: 01 00 04 00 04 00 ......
ber_get_next: tag 0x30 len 12 contents:
ber_dump: buf=0x8030480f0 ptr=0x8030480f0 end=0x8030480fc len=12
0000: 02 01 02 65 07 0a 01 00 04 00 04 00 ...e........
read1msg: ld 0x803035040 msgid 2 message type search-result
ber_scanf fmt ({eAA) ber:
ber_dump: buf=0x8030480f0 ptr=0x8030480f3 end=0x8030480fc len=9
0000: 65 07 0a 01 00 04 00 04 00 e........
read1msg: ld 0x803035040 0 new referrals
read1msg: mark request completed, ld 0x803035040 msgid 2
request done: ld 0x803035040 msgid 2
res_errno: 0, res_error: <>, res_matched: <>
ldap_free_request (origid 2, msgid 2)
ldap_parse_result
ber_scanf fmt ({iAA) ber:
ber_dump: buf=0x8030480f0 ptr=0x8030480f3 end=0x8030480fc len=9
0000: 65 07 0a 01 00 04 00 04 00 e........
ber_scanf fmt (}) ber:
ber_dump: buf=0x8030480f0 ptr=0x8030480fc end=0x8030480fc len=0
ldap_msgfree
nslcd: [31b782] DEBUG: ldap_result(): end of results
passwd.c:414:nslcd_passwd_byname: WRITE_INT32 : var=3 int32=3
passwd.c:414:nslcd_passwd_byname: WRITE : var=&(tmpint32) size=4
nslcd: [06dac8] DEBUG: connection from pid=-1 uid=0 gid=0
nslcd.c:342:read_header: READ : var=&(tmpint32) size=4
nslcd.c:349:read_header: READ : var=action size=4
pam.c:141:nslcd_pam_authc: READ : var=&(tmpint32) size=4
pam.c:141:nslcd_pam_authc: READ_STRING: var=username strlen=5
pam.c:141:nslcd_pam_authc: READ : var=username size=5
pam.c:141:nslcd_pam_authc: READ_STRING: var=username string="muxas"
pam.c:142:nslcd_pam_authc: READ : var=&(tmpint32) size=4
pam.c:142:nslcd_pam_authc: READ_STRING: var=userdn strlen=0
pam.c:142:nslcd_pam_authc: READ_STRING: var=userdn string=""
pam.c:143:nslcd_pam_authc: READ : var=&(tmpint32) size=4
pam.c:143:nslcd_pam_authc: READ_STRING: var=servicename strlen=5
pam.c:143:nslcd_pam_authc: READ : var=servicename size=5
pam.c:143:nslcd_pam_authc: READ_STRING: var=servicename string="login"
pam.c:144:nslcd_pam_authc: READ : var=&(tmpint32) size=4
pam.c:144:nslcd_pam_authc: READ_STRING: var=password strlen=10
pam.c:144:nslcd_pam_authc: READ : var=password size=10
pam.c:144:nslcd_pam_authc: READ_STRING: var=password string="muxasmuxas"
nslcd: [06dac8] DEBUG: nslcd_pam_authc("muxas","","login","***")
pam.c:149:nslcd_pam_authc: WRITE_INT32 : var=1 int32=1
pam.c:149:nslcd_pam_authc: WRITE : var=&(tmpint32) size=4
pam.c:150:nslcd_pam_authc: WRITE_INT32 : var=20001 int32=20001
pam.c:150:nslcd_pam_authc: WRITE : var=&(tmpint32) size=4
nslcd: [06dac8] DEBUG: myldap_search(base="ou=Users,dc=muxas,dc=net",
filter="(&(objectClass=posixAccount)(uid=muxas))")
ldap_search_ext
put_filter: "(&(objectClass=posixAccount)(uid=muxas))"
put_filter: AND
put_filter_list "(objectClass=posixAccount)(uid=muxas)"
put_filter: "(objectClass=posixAccount)"
put_filter: simple
put_simple_filter: "objectClass=posixAccount"
put_filter: "(uid=muxas)"
put_filter: simple
put_simple_filter: "uid=muxas"
ldap_build_search_req ATTRS: uid
ldap_send_initial_request
ldap_send_server_request
ber_scanf fmt ({it) ber:
ber_dump: buf=0x801cb5000 ptr=0x801cb5000 end=0x801cb5064 len=100
0000: 30 62 02 01 03 63 5d 04 18 6f 75 3d 55 73 65 72 0b...c]..ou=User
0010: 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d 6e 65 s,dc=muxas,dc=ne
0020: 74 0a 01 02 0a 01 00 02 01 00 02 01 00 01 01 00 t...............
0030: a0 2b a3 1b 04 0b 6f 62 6a 65 63 74 43 6c 61 73 .+....objectClas
0040: 73 04 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 a3 s..posixAccount.
0050: 0c 04 03 75 69 64 04 05 6d 75 78 61 73 30 05 04 ...uid..muxas0..
0060: 03 75 69 64 .uid
ber_scanf fmt ({) ber:
ber_dump: buf=0x801cb5000 ptr=0x801cb5005 end=0x801cb5064 len=95
0000: 63 5d 04 18 6f 75 3d 55 73 65 72 73 2c 64 63 3d c]..ou=Users,dc=
0010: 6d 75 78 61 73 2c 64 63 3d 6e 65 74 0a 01 02 0a muxas,dc=net....
0020: 01 00 02 01 00 02 01 00 01 01 00 a0 2b a3 1b 04 ............+...
0030: 0b 6f 62 6a 65 63 74 43 6c 61 73 73 04 0c 70 6f .objectClass..po
0040: 73 69 78 41 63 63 6f 75 6e 74 a3 0c 04 03 75 69 sixAccount....ui
0050: 64 04 05 6d 75 78 61 73 30 05 04 03 75 69 64 d..muxas0...uid
ber_flush2: 100 bytes to sd 10
0000: 30 62 02 01 03 63 5d 04 18 6f 75 3d 55 73 65 72 0b...c]..ou=User
0010: 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d 6e 65 s,dc=muxas,dc=ne
0020: 74 0a 01 02 0a 01 00 02 01 00 02 01 00 01 01 00 t...............
0030: a0 2b a3 1b 04 0b 6f 62 6a 65 63 74 43 6c 61 73 .+....objectClas
0040: 73 04 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 a3 s..posixAccount.
0050: 0c 04 03 75 69 64 04 05 6d 75 78 61 73 30 05 04 ...uid..muxas0..
0060: 03 75 69 64 .uid
ldap_write: want=100, written=100
0000: 30 62 02 01 03 63 5d 04 18 6f 75 3d 55 73 65 72 0b...c]..ou=User
0010: 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d 6e 65 s,dc=muxas,dc=ne
0020: 74 0a 01 02 0a 01 00 02 01 00 02 01 00 01 01 00 t...............
0030: a0 2b a3 1b 04 0b 6f 62 6a 65 63 74 43 6c 61 73 .+....objectClas
0040: 73 04 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 a3 s..posixAccount.
0050: 0c 04 03 75 69 64 04 05 6d 75 78 61 73 30 05 04 ...uid..muxas0..
0060: 03 75 69 64 .uid
ldap_result ld 0x801cab0d0 msgid 3
wait4msg ld 0x801cab0d0 msgid 3 (timeout 10000000 usec)
wait4msg continue ld 0x801cab0d0 msgid 3 all 0
** ld 0x801cab0d0 Connections:
* host: 127.0.0.1 port: 389 (default)
refcnt: 2 status: Connected
last used: Mon Jan 16 12:56:22 2012
** ld 0x801cab0d0 Outstanding Requests:
* msgid 3, origid 3, status InProgress
outstanding referrals 0, parent count 0
ld 0x801cab0d0 request count 1 (abandoned 0)
** ld 0x801cab0d0 Response Queue:
Empty
ld 0x801cab0d0 response count 0
ldap_chkResponseList ld 0x801cab0d0 msgid 3 all 0
ldap_chkResponseList returns ld 0x801cab0d0 NULL
ldap_int_select
read1msg: ld 0x801cab0d0 msgid 3 all 0
ber_get_next
ldap_read: want=8, got=8
0000: 30 3b 02 01 03 64 36 04 0;...d6.
ldap_read: want=53, got=53
0000: 22 75 69 64 3d 6d 75 78 61 73 2c 6f 75 3d 55 73 "uid=muxas,ou=Us
0010: 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d ers,dc=muxas,dc=
0020: 6e 65 74 30 10 30 0e 04 03 75 69 64 31 07 04 05 net0.0...uid1...
0030: 6d 75 78 61 73 muxas
ber_get_next: tag 0x30 len 59 contents:
ber_dump: buf=0x801c54180 ptr=0x801c54180 end=0x801c541bb len=59
0000: 02 01 03 64 36 04 22 75 69 64 3d 6d 75 78 61 73 ...d6."uid=muxas
0010: 2c 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 ,ou=Users,dc=mux
0020: 61 73 2c 64 63 3d 6e 65 74 30 10 30 0e 04 03 75 as,dc=net0.0...u
0030: 69 64 31 07 04 05 6d 75 78 61 73 id1...muxas
read1msg: ld 0x801cab0d0 msgid 3 message type search-entry
ldap_get_dn
ber_scanf fmt ({a) ber:
ber_dump: buf=0x801c54180 ptr=0x801c54183 end=0x801c541bb len=56
0000: 64 36 04 22 75 69 64 3d 6d 75 78 61 73 2c 6f 75 d6."uid=muxas,ou
0010: 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c =Users,dc=muxas,
0020: 64 63 3d 6e 65 74 30 10 30 0e 04 03 75 69 64 31 dc=net0.0...uid1
0030: 07 04 05 6d 75 78 61 73 ...muxas
ldap_explode_dn
=> ldap_bv2dn(uid=muxas,ou=Users,dc=muxas,dc=net,0)
<= ldap_bv2dn(uid=muxas,ou=Users,dc=muxas,dc=net)=0
ldap_explode_rdn
nslcd: [06dac8] DEBUG: myldap_search(base="uid=muxas,ou=Users,dc=muxas,dc=net",
filter="(objectClass=posixAccount)")
nslcd: [06dac8] DEBUG: ldap_initialize(ldap://127.0.0.1/)
ldap_create
ldap_url_parse_ext(ldap://127.0.0.1/)
nslcd: [06dac8] DEBUG: ldap_set_rebind_proc()
nslcd: [06dac8] DEBUG: ldap_set_option(LDAP_OPT_PROTOCOL_VERSION,3)
nslcd: [06dac8] DEBUG: ldap_set_option(LDAP_OPT_DEREF,0)
nslcd: [06dac8] DEBUG: ldap_set_option(LDAP_OPT_TIMELIMIT,0)
nslcd: [06dac8] DEBUG: ldap_set_option(LDAP_OPT_TIMEOUT,0)
nslcd: [06dac8] DEBUG: ldap_set_option(LDAP_OPT_NETWORK_TIMEOUT,0)
nslcd: [06dac8] DEBUG: ldap_set_option(LDAP_OPT_REFERRALS,LDAP_OPT_ON)
nslcd: [06dac8] DEBUG: ldap_set_option(LDAP_OPT_RESTART,LDAP_OPT_ON)
nslcd: [06dac8] DEBUG:
ldap_simple_bind_s("uid=muxas,ou=Users,dc=muxas,dc=net","***")
(uri="ldap://127.0.0.1/")
ldap_simple_bind_s
ldap_sasl_bind_s
ldap_sasl_bind
ldap_send_initial_request
ldap_new_connection 1 1 0
ldap_int_open_connection
ldap_connect_to_host: TCP 127.0.0.1:389
ldap_new_socket: 14
ldap_prepare_socket: 14
ldap_connect_to_host: Trying 127.0.0.1:389
ldap_pvt_connect: fd: 14 tm: 10 async: 0
ldap_ndelay_on: 14
ldap_int_poll: fd: 14 tm: 10
ldap_is_sock_ready: 14
ldap_ndelay_off: 14
ldap_pvt_connect: 0
ldap_open_defconn: successful
ldap_send_server_request
ber_scanf fmt ({it) ber:
ber_dump: buf=0x801cb6000 ptr=0x801cb6000 end=0x801cb603a len=58
0000: 30 38 02 01 01 60 33 02 01 03 04 22 75 69 64 3d 08...`3...."uid=
0010: 6d 75 78 61 73 2c 6f 75 3d 55 73 65 72 73 2c 64 muxas,ou=Users,d
0020: 63 3d 6d 75 78 61 73 2c 64 63 3d 6e 65 74 80 0a c=muxas,dc=net..
0030: 6d 75 78 61 73 6d 75 78 61 73 muxasmuxas
ber_scanf fmt ({i) ber:
ber_dump: buf=0x801cb6000 ptr=0x801cb6005 end=0x801cb603a len=53
0000: 60 33 02 01 03 04 22 75 69 64 3d 6d 75 78 61 73 `3...."uid=muxas
0010: 2c 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 ,ou=Users,dc=mux
0020: 61 73 2c 64 63 3d 6e 65 74 80 0a 6d 75 78 61 73 as,dc=net..muxas
0030: 6d 75 78 61 73 muxas
ber_flush2: 58 bytes to sd 14
0000: 30 38 02 01 01 60 33 02 01 03 04 22 75 69 64 3d 08...`3...."uid=
0010: 6d 75 78 61 73 2c 6f 75 3d 55 73 65 72 73 2c 64 muxas,ou=Users,d
0020: 63 3d 6d 75 78 61 73 2c 64 63 3d 6e 65 74 80 0a c=muxas,dc=net..
0030: 6d 75 78 61 73 6d 75 78 61 73 muxasmuxas
ldap_write: want=58, written=58
0000: 30 38 02 01 01 60 33 02 01 03 04 22 75 69 64 3d 08...`3...."uid=
0010: 6d 75 78 61 73 2c 6f 75 3d 55 73 65 72 73 2c 64 muxas,ou=Users,d
0020: 63 3d 6d 75 78 61 73 2c 64 63 3d 6e 65 74 80 0a c=muxas,dc=net..
0030: 6d 75 78 61 73 6d 75 78 61 73 muxasmuxas
ldap_result ld 0x801cab250 msgid 1
wait4msg ld 0x801cab250 msgid 1 (timeout 10000000 usec)
wait4msg continue ld 0x801cab250 msgid 1 all 1
** ld 0x801cab250 Connections:
* host: 127.0.0.1 port: 389 (default)
refcnt: 2 status: Connected
last used: Mon Jan 16 12:56:22 2012
** ld 0x801cab250 Outstanding Requests:
* msgid 1, origid 1, status InProgress
outstanding referrals 0, parent count 0
ld 0x801cab250 request count 1 (abandoned 0)
** ld 0x801cab250 Response Queue:
Empty
ld 0x801cab250 response count 0
ldap_chkResponseList ld 0x801cab250 msgid 1 all 1
ldap_chkResponseList returns ld 0x801cab250 NULL
ldap_int_select
read1msg: ld 0x801cab250 msgid 1 all 1
ber_get_next
ldap_read: want=8, got=8
0000: 30 0c 02 01 01 61 07 0a 0....a..
ldap_read: want=6, got=6
0000: 01 00 04 00 04 00 ......
ber_get_next: tag 0x30 len 12 contents:
ber_dump: buf=0x801cac1a0 ptr=0x801cac1a0 end=0x801cac1ac len=12
0000: 02 01 01 61 07 0a 01 00 04 00 04 00 ...a........
read1msg: ld 0x801cab250 msgid 1 message type bind
ber_scanf fmt ({eAA) ber:
ber_dump: buf=0x801cac1a0 ptr=0x801cac1a3 end=0x801cac1ac len=9
0000: 61 07 0a 01 00 04 00 04 00 a........
read1msg: ld 0x801cab250 0 new referrals
read1msg: mark request completed, ld 0x801cab250 msgid 1
request done: ld 0x801cab250 msgid 1
res_errno: 0, res_error: <>, res_matched: <>
ldap_free_request (origid 1, msgid 1)
ldap_parse_result
ber_scanf fmt ({iAA) ber:
ber_dump: buf=0x801cac1a0 ptr=0x801cac1a3 end=0x801cac1ac len=9
0000: 61 07 0a 01 00 04 00 04 00 a........
ber_scanf fmt (}) ber:
ber_dump: buf=0x801cac1a0 ptr=0x801cac1ac end=0x801cac1ac len=0
ldap_msgfree
ldap_search_ext
put_filter: "(objectClass=posixAccount)"
put_filter: simple
put_simple_filter: "objectClass=posixAccount"
ldap_build_search_req ATTRS: uid
ldap_send_initial_request
ldap_send_server_request
ber_scanf fmt ({it) ber:
ber_dump: buf=0x801cb6000 ptr=0x801cb6000 end=0x801cb605e len=94
0000: 30 5c 02 01 02 63 57 04 22 75 69 64 3d 6d 75 78 0\...cW."uid=mux
0010: 61 73 2c 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d as,ou=Users,dc=m
0020: 75 78 61 73 2c 64 63 3d 6e 65 74 0a 01 00 0a 01 uxas,dc=net.....
0030: 00 02 01 00 02 01 00 01 01 00 a3 1b 04 0b 6f 62 ..............ob
0040: 6a 65 63 74 43 6c 61 73 73 04 0c 70 6f 73 69 78 jectClass..posix
0050: 41 63 63 6f 75 6e 74 30 05 04 03 75 69 64 Account0...uid
ber_scanf fmt ({) ber:
ber_dump: buf=0x801cb6000 ptr=0x801cb6005 end=0x801cb605e len=89
0000: 63 57 04 22 75 69 64 3d 6d 75 78 61 73 2c 6f 75 cW."uid=muxas,ou
0010: 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c =Users,dc=muxas,
0020: 64 63 3d 6e 65 74 0a 01 00 0a 01 00 02 01 00 02 dc=net..........
0030: 01 00 01 01 00 a3 1b 04 0b 6f 62 6a 65 63 74 43 .........objectC
0040: 6c 61 73 73 04 0c 70 6f 73 69 78 41 63 63 6f 75 lass..posixAccou
0050: 6e 74 30 05 04 03 75 69 64 nt0...uid
ber_flush2: 94 bytes to sd 14
0000: 30 5c 02 01 02 63 57 04 22 75 69 64 3d 6d 75 78 0\...cW."uid=mux
0010: 61 73 2c 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d as,ou=Users,dc=m
0020: 75 78 61 73 2c 64 63 3d 6e 65 74 0a 01 00 0a 01 uxas,dc=net.....
0030: 00 02 01 00 02 01 00 01 01 00 a3 1b 04 0b 6f 62 ..............ob
0040: 6a 65 63 74 43 6c 61 73 73 04 0c 70 6f 73 69 78 jectClass..posix
0050: 41 63 63 6f 75 6e 74 30 05 04 03 75 69 64 Account0...uid
ldap_write: want=94, written=94
0000: 30 5c 02 01 02 63 57 04 22 75 69 64 3d 6d 75 78 0\...cW."uid=mux
0010: 61 73 2c 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d as,ou=Users,dc=m
0020: 75 78 61 73 2c 64 63 3d 6e 65 74 0a 01 00 0a 01 uxas,dc=net.....
0030: 00 02 01 00 02 01 00 01 01 00 a3 1b 04 0b 6f 62 ..............ob
0040: 6a 65 63 74 43 6c 61 73 73 04 0c 70 6f 73 69 78 jectClass..posix
0050: 41 63 63 6f 75 6e 74 30 05 04 03 75 69 64 Account0...uid
ldap_result ld 0x801cab250 msgid 2
wait4msg ld 0x801cab250 msgid 2 (timeout 10000000 usec)
wait4msg continue ld 0x801cab250 msgid 2 all 0
** ld 0x801cab250 Connections:
* host: 127.0.0.1 port: 389 (default)
refcnt: 2 status: Connected
last used: Mon Jan 16 12:56:22 2012
** ld 0x801cab250 Outstanding Requests:
* msgid 2, origid 2, status InProgress
outstanding referrals 0, parent count 0
ld 0x801cab250 request count 1 (abandoned 0)
** ld 0x801cab250 Response Queue:
Empty
ld 0x801cab250 response count 0
ldap_chkResponseList ld 0x801cab250 msgid 2 all 0
ldap_chkResponseList returns ld 0x801cab250 NULL
ldap_int_select
read1msg: ld 0x801cab250 msgid 2 all 0
ber_get_next
ldap_read: want=8, got=8
0000: 30 3b 02 01 02 64 36 04 0;...d6.
ldap_read: want=53, got=53
0000: 22 75 69 64 3d 6d 75 78 61 73 2c 6f 75 3d 55 73 "uid=muxas,ou=Us
0010: 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d ers,dc=muxas,dc=
0020: 6e 65 74 30 10 30 0e 04 03 75 69 64 31 07 04 05 net0.0...uid1...
0030: 6d 75 78 61 73 muxas
ber_get_next: tag 0x30 len 59 contents:
ber_dump: buf=0x801c54240 ptr=0x801c54240 end=0x801c5427b len=59
0000: 02 01 02 64 36 04 22 75 69 64 3d 6d 75 78 61 73 ...d6."uid=muxas
0010: 2c 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 ,ou=Users,dc=mux
0020: 61 73 2c 64 63 3d 6e 65 74 30 10 30 0e 04 03 75 as,dc=net0.0...u
0030: 69 64 31 07 04 05 6d 75 78 61 73 id1...muxas
read1msg: ld 0x801cab250 msgid 2 message type search-entry
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x801c54240 ptr=0x801c54243 end=0x801c5427b len=56
0000: 64 36 04 22 75 69 64 3d 6d 75 78 61 73 2c 6f 75 d6."uid=muxas,ou
0010: 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c =Users,dc=muxas,
0020: 64 63 3d 6e 65 74 30 10 30 0e 04 03 75 69 64 31 dc=net0.0...uid1
0030: 07 04 05 6d 75 78 61 73 ...muxas
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x801c54240 ptr=0x801c54272 end=0x801c5427b len=9
0000: 31 07 04 05 6d 75 78 61 73 1...muxas
ldap_msgfree
ldap_abandon 2
ldap_abandon_ext 2
do_abandon origid 2, msgid 2
ldap_msgdelete ld=0x801cab250 msgid=2
ber_flush2: 8 bytes to sd 14
0000: 30 06 02 01 03 50 01 02 0....P..
ldap_write: want=8, written=8
0000: 30 06 02 01 03 50 01 02 0....P..
ldap_free_connection 0 1
ldap_free_connection: refcnt 1
ldap_free_request (origid 2, msgid 2)
ldap_msgfree
nslcd: [06dac8] DEBUG: ldap_unbind()
ldap_unbind
ldap_free_connection 1 1
ldap_send_unbind
ber_flush2: 7 bytes to sd 14
0000: 30 05 02 01 04 42 00 0....B.
ldap_write: want=7, written=7
0000: 30 05 02 01 04 42 00 0....B.
ldap_free_connection: actually freed
nslcd: [06dac8] DEBUG: bind successful
pam.c:172:nslcd_pam_authc: WRITE_INT32 : var=0 int32=0
pam.c:172:nslcd_pam_authc: WRITE : var=&(tmpint32) size=4
pam.c:173:nslcd_pam_authc: WRITE_STRING: var=username string="muxas"
pam.c:173:nslcd_pam_authc: WRITE_INT32 : var=strlen(username) int32=5
pam.c:173:nslcd_pam_authc: WRITE : var=&(tmpint32) size=4
pam.c:173:nslcd_pam_authc: WRITE : var=(username) size=5
pam.c:174:nslcd_pam_authc: WRITE_STRING: var=userdn
string="uid=muxas,ou=Users,dc=muxas,dc=net"
pam.c:174:nslcd_pam_authc: WRITE_INT32 : var=strlen(userdn) int32=34
pam.c:174:nslcd_pam_authc: WRITE : var=&(tmpint32) size=4
pam.c:174:nslcd_pam_authc: WRITE : var=(userdn) size=34
pam.c:175:nslcd_pam_authc: WRITE_INT32 : var=rc int32=0
pam.c:175:nslcd_pam_authc: WRITE : var=&(tmpint32) size=4
pam.c:176:nslcd_pam_authc: WRITE_INT32 : var=rc int32=0
pam.c:176:nslcd_pam_authc: WRITE : var=&(tmpint32) size=4
pam.c:177:nslcd_pam_authc: WRITE_STRING: var="" string=""
pam.c:177:nslcd_pam_authc: WRITE_INT32 : var=strlen("") int32=0
pam.c:177:nslcd_pam_authc: WRITE : var=&(tmpint32) size=4
pam.c:178:nslcd_pam_authc: WRITE_INT32 : var=3 int32=3
pam.c:178:nslcd_pam_authc: WRITE : var=&(tmpint32) size=4
ldap_msgfree
ldap_abandon 3
ldap_abandon_ext 3
do_abandon origid 3, msgid 3
ldap_msgdelete ld=0x801cab0d0 msgid=3
ber_flush2: 8 bytes to sd 10
0000: 30 06 02 01 04 50 01 03 0....P..
ldap_write: want=8, written=8
0000: 30 06 02 01 04 50 01 03 0....P..
ldap_free_connection 0 1
ldap_free_connection: refcnt 1
ldap_free_request (origid 3, msgid 3)
ldap_msgfree
nslcd: [058ed8] DEBUG: connection from pid=-1 uid=0 gid=0
nslcd.c:342:read_header: READ : var=&(tmpint32) error: No error: 0
nslcd: [058ed8] error reading from client: No error: 0
nslcd: [e509fe] DEBUG: connection from pid=-1 uid=0 gid=0
nslcd.c:342:read_header: READ : var=&(tmpint32) size=4
nslcd.c:349:read_header: READ : var=action size=4
passwd.c:414:nslcd_passwd_byname: READ : var=&(tmpint32) size=4
passwd.c:414:nslcd_passwd_byname: READ_STRING: var=name strlen=5
passwd.c:414:nslcd_passwd_byname: READ : var=name size=5
passwd.c:414:nslcd_passwd_byname: READ_STRING: var=name string="muxas"
nslcd: [e509fe] DEBUG: nslcd_passwd_byname(muxas)
passwd.c:414:nslcd_passwd_byname: WRITE_INT32 : var=1 int32=1
passwd.c:414:nslcd_passwd_byname: WRITE : var=&(tmpint32) size=4
passwd.c:414:nslcd_passwd_byname: WRITE_INT32 : var=1001 int32=1001
passwd.c:414:nslcd_passwd_byname: WRITE : var=&(tmpint32) size=4
nslcd: [e509fe] DEBUG: myldap_search(base="ou=Users,dc=muxas,dc=net",
filter="(&(objectClass=posixAccount)(uid=muxas))")
ldap_search_ext
put_filter: "(&(objectClass=posixAccount)(uid=muxas))"
put_filter: AND
put_filter_list "(objectClass=posixAccount)(uid=muxas)"
put_filter: "(objectClass=posixAccount)"
put_filter: simple
put_simple_filter: "objectClass=posixAccount"
put_filter: "(uid=muxas)"
put_filter: simple
put_simple_filter: "uid=muxas"
ldap_build_search_req ATTRS: userPassword cn gidNumber uidNumber loginShell
objectClass gecos uid homeDirectory
ldap_send_initial_request
ldap_send_server_request
ber_scanf fmt ({it) ber:
ber_dump: buf=0x802854000 ptr=0x802854000 end=0x8028540bd len=189
0000: 30 81 ba 02 01 04 63 81 b4 04 18 6f 75 3d 55 73 0.....c....ou=Us
0010: 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d ers,dc=muxas,dc=
0020: 6e 65 74 0a 01 02 0a 01 00 02 01 00 02 01 00 01 net.............
0030: 01 00 a0 2b a3 1b 04 0b 6f 62 6a 65 63 74 43 6c ...+....objectCl
0040: 61 73 73 04 0c 70 6f 73 69 78 41 63 63 6f 75 6e ass..posixAccoun
0050: 74 a3 0c 04 03 75 69 64 04 05 6d 75 78 61 73 30 t....uid..muxas0
0060: 5c 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 04 \..userPassword.
0070: 02 63 6e 04 09 67 69 64 4e 75 6d 62 65 72 04 09 .cn..gidNumber..
0080: 75 69 64 4e 75 6d 62 65 72 04 0a 6c 6f 67 69 6e uidNumber..login
0090: 53 68 65 6c 6c 04 0b 6f 62 6a 65 63 74 43 6c 61 Shell..objectCla
00a0: 73 73 04 05 67 65 63 6f 73 04 03 75 69 64 04 0d ss..gecos..uid..
00b0: 68 6f 6d 65 44 69 72 65 63 74 6f 72 79 homeDirectory
ber_scanf fmt ({) ber:
ber_dump: buf=0x802854000 ptr=0x802854006 end=0x8028540bd len=183
0000: 63 81 b4 04 18 6f 75 3d 55 73 65 72 73 2c 64 63 c....ou=Users,dc
0010: 3d 6d 75 78 61 73 2c 64 63 3d 6e 65 74 0a 01 02 =muxas,dc=net...
0020: 0a 01 00 02 01 00 02 01 00 01 01 00 a0 2b a3 1b .............+..
0030: 04 0b 6f 62 6a 65 63 74 43 6c 61 73 73 04 0c 70 ..objectClass..p
0040: 6f 73 69 78 41 63 63 6f 75 6e 74 a3 0c 04 03 75 osixAccount....u
0050: 69 64 04 05 6d 75 78 61 73 30 5c 04 0c 75 73 65 id..muxas0\..use
0060: 72 50 61 73 73 77 6f 72 64 04 02 63 6e 04 09 67 rPassword..cn..g
0070: 69 64 4e 75 6d 62 65 72 04 09 75 69 64 4e 75 6d idNumber..uidNum
0080: 62 65 72 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 04 ber..loginShell.
0090: 0b 6f 62 6a 65 63 74 43 6c 61 73 73 04 05 67 65 .objectClass..ge
00a0: 63 6f 73 04 03 75 69 64 04 0d 68 6f 6d 65 44 69 cos..uid..homeDi
00b0: 72 65 63 74 6f 72 79 rectory
ber_flush2: 189 bytes to sd 11
0000: 30 81 ba 02 01 04 63 81 b4 04 18 6f 75 3d 55 73 0.....c....ou=Us
0010: 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d ers,dc=muxas,dc=
0020: 6e 65 74 0a 01 02 0a 01 00 02 01 00 02 01 00 01 net.............
0030: 01 00 a0 2b a3 1b 04 0b 6f 62 6a 65 63 74 43 6c ...+....objectCl
0040: 61 73 73 04 0c 70 6f 73 69 78 41 63 63 6f 75 6e ass..posixAccoun
0050: 74 a3 0c 04 03 75 69 64 04 05 6d 75 78 61 73 30 t....uid..muxas0
0060: 5c 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 04 \..userPassword.
0070: 02 63 6e 04 09 67 69 64 4e 75 6d 62 65 72 04 09 .cn..gidNumber..
0080: 75 69 64 4e 75 6d 62 65 72 04 0a 6c 6f 67 69 6e uidNumber..login
0090: 53 68 65 6c 6c 04 0b 6f 62 6a 65 63 74 43 6c 61 Shell..objectCla
00a0: 73 73 04 05 67 65 63 6f 73 04 03 75 69 64 04 0d ss..gecos..uid..
00b0: 68 6f 6d 65 44 69 72 65 63 74 6f 72 79 homeDirectory
ldap_write: want=189, written=189
0000: 30 81 ba 02 01 04 63 81 b4 04 18 6f 75 3d 55 73 0.....c....ou=Us
0010: 65 72 73 2c 64 63 3d 6d 75 78 61 73 2c 64 63 3d ers,dc=muxas,dc=
0020: 6e 65 74 0a 01 02 0a 01 00 02 01 00 02 01 00 01 net.............
0030: 01 00 a0 2b a3 1b 04 0b 6f 62 6a 65 63 74 43 6c ...+....objectCl
0040: 61 73 73 04 0c 70 6f 73 69 78 41 63 63 6f 75 6e ass..posixAccoun
0050: 74 a3 0c 04 03 75 69 64 04 05 6d 75 78 61 73 30 t....uid..muxas0
0060: 5c 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 04 \..userPassword.
0070: 02 63 6e 04 09 67 69 64 4e 75 6d 62 65 72 04 09 .cn..gidNumber..
0080: 75 69 64 4e 75 6d 62 65 72 04 0a 6c 6f 67 69 6e uidNumber..login
0090: 53 68 65 6c 6c 04 0b 6f 62 6a 65 63 74 43 6c 61 Shell..objectCla
00a0: 73 73 04 05 67 65 63 6f 73 04 03 75 69 64 04 0d ss..gecos..uid..
00b0: 68 6f 6d 65 44 69 72 65 63 74 6f 72 79 homeDirectory
ldap_result ld 0x802835040 msgid 4
wait4msg ld 0x802835040 msgid 4 (timeout 10000000 usec)
wait4msg continue ld 0x802835040 msgid 4 all 0
** ld 0x802835040 Connections:
* host: 127.0.0.1 port: 389 (default)
refcnt: 2 status: Connected
last used: Mon Jan 16 12:56:22 2012
** ld 0x802835040 Outstanding Requests:
* msgid 4, origid 4, status InProgress
outstanding referrals 0, parent count 0
ld 0x802835040 request count 1 (abandoned 1)
** ld 0x802835040 Response Queue:
Empty
ld 0x802835040 response count 0
ldap_chkResponseList ld 0x802835040 msgid 4 all 0
ldap_chkResponseList returns ld 0x802835040 NULL
ldap_int_select
read1msg: ld 0x802835040 msgid 4 all 0
ber_get_next
ldap_read: want=8, got=8
0000: 30 0c 02 01 02 65 07 0a 0....e..
ldap_read: want=6, got=6
0000: 01 00 04 00 04 00 ......
ber_get_next: tag 0x30 len 12 contents:
ber_dump: buf=0x8028480f0 ptr=0x8028480f0 end=0x8028480fc len=12
0000: 02 01 02 65 07 0a 01 00 04 00 04 00 ...e........
abandoned/discarded ld 0x802835040 msgid 2 message type search-result
wait4msg ld 0x802835040 9 s 999921 us to go
wait4msg continue ld 0x802835040 msgid 4 all 0
** ld 0x802835040 Connections:
* host: 127.0.0.1 port: 389 (default)
refcnt: 2 status: Connected
last used: Mon Jan 16 12:56:22 2012
** ld 0x802835040 Outstanding Requests:
* msgid 4, origid 4, status InProgress
outstanding referrals 0, parent count 0
ld 0x802835040 request count 1 (abandoned 0)
** ld 0x802835040 Response Queue:
Empty
ld 0x802835040 response count 0
ldap_chkResponseList ld 0x802835040 msgid 4 all 0
ldap_chkResponseList returns ld 0x802835040 NULL
ldap_int_select
read1msg: ld 0x802835040 msgid 4 all 0
ber_get_next
ldap_read: want=8, got=8
0000: 30 82 01 4c 02 01 04 64 0..L...d
ldap_read: want=328, got=328
0000: 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c 6f ..E."uid=muxas,o
0010: 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 73 u=Users,dc=muxas
0020: 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b 6f ,dc=net0...09..o
0030: 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 6f bjectClass1*..to
0040: 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 78 p..person..posix
0050: 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 41 Account..shadowA
0060: 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 0c ccount0...cn1...
0070: 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 09 Vetrov Maxim0...
0080: 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 30 gidNumber1...100
0090: 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 74 010...homeDirect
00a0: 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 ory1.../home/mux
00b0: 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 78 as0...uid1...mux
00c0: 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 31 as0...uidNumber1
00d0: 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 6f ...100010...geco
00e0: 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 s1...Homegrown
00f0: 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 user0...loginShe
0100: 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 ll1.../bin/csh08
0110: 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 ..userPassword1(
0120: 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 .&{SSHA}7UkOfYA8
0130: 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 3gc9lhur5RR/smUR
0140: 34 63 57 57 44 79 4f 39 4cWWDyO9
ber_get_next: tag 0x30 len 332 contents:
ber_dump: buf=0x802807480 ptr=0x802807480 end=0x8028075cc len=332
0000: 02 01 04 64 82 01 45 04 22 75 69 64 3d 6d 75 78 ...d..E."uid=mux
0010: 61 73 2c 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d as,ou=Users,dc=m
0020: 75 78 61 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 uxas,dc=net0...0
0030: 39 04 0b 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 9..objectClass1*
0040: 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 ..top..person..p
0050: 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 osixAccount..sha
0060: 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 63 6e dowAccount0...cn
0070: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0080: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0090: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
00a0: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
00b0: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
00c0: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
00d0: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
00e0: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
00f0: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0100: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
0110: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
0120: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
0130: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
0140: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
read1msg: ld 0x802835040 msgid 4 message type search-entry
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x802807480 ptr=0x802807483 end=0x8028075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x8028074be end=0x8028075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x8028074f0 end=0x8028075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x80280750d end=0x8028075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x802807527 end=0x8028075cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x802807480 ptr=0x80280753d end=0x8028075cc len=143
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x802807480 ptr=0x802807483 end=0x8028075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x802807480 ptr=0x8028074be end=0x8028075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x802807480 ptr=0x802807483 end=0x8028075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x8028074be end=0x8028075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x8028074f0 end=0x8028075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x80280750d end=0x8028075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x802807527 end=0x8028075cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x80280753d end=0x8028075cc len=143
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x802807480 ptr=0x802807553 end=0x8028075cc len=121
0000: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
0010: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
0020: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0030: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0040: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0050: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0060: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0070: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x802807480 ptr=0x802807483 end=0x8028075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x8028074be end=0x8028075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x8028074f0 end=0x8028075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x802807480 ptr=0x80280750d end=0x8028075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x802807480 ptr=0x802807483 end=0x8028075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x8028074be end=0x8028075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x8028074f0 end=0x8028075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x80280750d end=0x8028075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x802807527 end=0x8028075cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x80280753d end=0x8028075cc len=143
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x802807553 end=0x8028075cc len=121
0000: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
0010: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
0020: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0030: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0040: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0050: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0060: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0070: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x802807480 ptr=0x802807565 end=0x8028075cc len=103
0000: 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 1...Homegrown u
0010: 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c ser0...loginShel
0020: 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 l1.../bin/csh08.
0030: 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 .userPassword1(.
0040: 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 &{SSHA}7UkOfYA83
0050: 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 gc9lhur5RR/smUR4
0060: 63 57 57 44 79 4f 39 cWWDyO9
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x802807480 ptr=0x802807483 end=0x8028075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x8028074be end=0x8028075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x8028074f0 end=0x8028075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x80280750d end=0x8028075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x802807480 ptr=0x802807527 end=0x8028075cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ldap_get_values
ber_scanf fmt ({x{{a) ber:
ber_dump: buf=0x802807480 ptr=0x802807483 end=0x8028075cc len=329
0000: 64 82 01 45 04 22 75 69 64 3d 6d 75 78 61 73 2c d..E."uid=muxas,
0010: 6f 75 3d 55 73 65 72 73 2c 64 63 3d 6d 75 78 61 ou=Users,dc=muxa
0020: 73 2c 64 63 3d 6e 65 74 30 82 01 1d 30 39 04 0b s,dc=net0...09..
0030: 6f 62 6a 65 63 74 43 6c 61 73 73 31 2a 04 03 74 objectClass1*..t
0040: 6f 70 04 06 70 65 72 73 6f 6e 04 0c 70 6f 73 69 op..person..posi
0050: 78 41 63 63 6f 75 6e 74 04 0d 73 68 61 64 6f 77 xAccount..shadow
0060: 41 63 63 6f 75 6e 74 30 14 04 02 63 6e 31 0e 04 Account0...cn1..
0070: 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 30 14 04 .Vetrov Maxim0..
0080: 09 67 69 64 4e 75 6d 62 65 72 31 07 04 05 31 30 .gidNumber1...10
0090: 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 72 65 63 0010...homeDirec
00a0: 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 tory1.../home/mu
00b0: 78 61 73 30 0e 04 03 75 69 64 31 07 04 05 6d 75 xas0...uid1...mu
00c0: 78 61 73 30 14 04 09 75 69 64 4e 75 6d 62 65 72 xas0...uidNumber
00d0: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
00e0: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
00f0: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0100: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0110: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0120: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0130: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0140: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x8028074be end=0x8028075cc len=270
0000: 31 2a 04 03 74 6f 70 04 06 70 65 72 73 6f 6e 04 1*..top..person.
0010: 0c 70 6f 73 69 78 41 63 63 6f 75 6e 74 04 0d 73 .posixAccount..s
0020: 68 61 64 6f 77 41 63 63 6f 75 6e 74 30 14 04 02 hadowAccount0...
0030: 63 6e 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 cn1...Vetrov Max
0040: 69 6d 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 im0...gidNumber1
0050: 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 ...100010...home
0060: 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f Directory1.../ho
0070: 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 me/muxas0...uid1
0080: 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e ...muxas0...uidN
0090: 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 1a umber1...100010.
00a0: 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 ..gecos1...Homeg
00b0: 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f rown user0...lo
00c0: 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e ginShell1.../bin
00d0: 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 /csh08..userPass
00e0: 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 word1(.&{SSHA}7U
00f0: 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 kOfYA83gc9lhur5R
0100: 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 R/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x8028074f0 end=0x8028075cc len=220
0000: 31 0e 04 0c 56 65 74 72 6f 76 20 4d 61 78 69 6d 1...Vetrov Maxim
0010: 30 14 04 09 67 69 64 4e 75 6d 62 65 72 31 07 04 0...gidNumber1..
0020: 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 65 44 69 .100010...homeDi
0030: 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 6f 6d 65 rectory1.../home
0040: 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 31 07 04 /muxas0...uid1..
0050: 05 6d 75 78 61 73 30 14 04 09 75 69 64 4e 75 6d .muxas0...uidNum
0060: 62 65 72 31 07 04 05 31 30 30 30 31 30 1a 04 05 ber1...100010...
0070: 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f gecos1...Homegro
0080: 77 6e 20 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 wn user0...logi
0090: 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 nShell1.../bin/c
00a0: 73 68 30 38 04 0c 75 73 65 72 50 61 73 73 77 6f sh08..userPasswo
00b0: 72 64 31 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f rd1(.&{SSHA}7UkO
00c0: 66 59 41 38 33 67 63 39 6c 68 75 72 35 52 52 2f fYA83gc9lhur5RR/
00d0: 73 6d 55 52 34 63 57 57 44 79 4f 39 smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x80280750d end=0x8028075cc len=191
0000: 31 07 04 05 31 30 30 30 31 30 1e 04 0d 68 6f 6d 1...100010...hom
0010: 65 44 69 72 65 63 74 6f 72 79 31 0d 04 0b 2f 68 eDirectory1.../h
0020: 6f 6d 65 2f 6d 75 78 61 73 30 0e 04 03 75 69 64 ome/muxas0...uid
0030: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0040: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0050: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0060: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0070: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0080: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0090: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
00a0: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
00b0: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x802807527 end=0x8028075cc len=165
0000: 31 0d 04 0b 2f 68 6f 6d 65 2f 6d 75 78 61 73 30 1.../home/muxas0
0010: 0e 04 03 75 69 64 31 07 04 05 6d 75 78 61 73 30 ...uid1...muxas0
0020: 14 04 09 75 69 64 4e 75 6d 62 65 72 31 07 04 05 ...uidNumber1...
0030: 31 30 30 30 31 30 1a 04 05 67 65 63 6f 73 31 11 100010...gecos1.
0040: 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 73 65 ..Homegrown use
0050: 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c 6c 31 r0...loginShell1
0060: 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 75 .../bin/csh08..u
0070: 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 7b serPassword1(.&{
0080: 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 63 SSHA}7UkOfYA83gc
0090: 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 57 9lhur5RR/smUR4cW
00a0: 57 44 79 4f 39 WDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x80280753d end=0x8028075cc len=143
0000: 31 07 04 05 6d 75 78 61 73 30 14 04 09 75 69 64 1...muxas0...uid
0010: 4e 75 6d 62 65 72 31 07 04 05 31 30 30 30 31 30 Number1...100010
0020: 1a 04 05 67 65 63 6f 73 31 11 04 0f 48 6f 6d 65 ...gecos1...Home
0030: 67 72 6f 77 6e 20 20 75 73 65 72 30 18 04 0a 6c grown user0...l
0040: 6f 67 69 6e 53 68 65 6c 6c 31 0a 04 08 2f 62 69 oginShell1.../bi
0050: 6e 2f 63 73 68 30 38 04 0c 75 73 65 72 50 61 73 n/csh08..userPas
0060: 73 77 6f 72 64 31 28 04 26 7b 53 53 48 41 7d 37 sword1(.&{SSHA}7
0070: 55 6b 4f 66 59 41 38 33 67 63 39 6c 68 75 72 35 UkOfYA83gc9lhur5
0080: 52 52 2f 73 6d 55 52 34 63 57 57 44 79 4f 39 RR/smUR4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x802807553 end=0x8028075cc len=121
0000: 31 07 04 05 31 30 30 30 31 30 1a 04 05 67 65 63 1...100010...gec
0010: 6f 73 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 os1...Homegrown
0020: 20 75 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 user0...loginSh
0030: 65 6c 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 ell1.../bin/csh0
0040: 38 04 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 8..userPassword1
0050: 28 04 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 (.&{SSHA}7UkOfYA
0060: 38 33 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 83gc9lhur5RR/smU
0070: 52 34 63 57 57 44 79 4f 39 R4cWWDyO9
ber_scanf fmt (x}{a) ber:
ber_dump: buf=0x802807480 ptr=0x802807565 end=0x8028075cc len=103
0000: 31 11 04 0f 48 6f 6d 65 67 72 6f 77 6e 20 20 75 1...Homegrown u
0010: 73 65 72 30 18 04 0a 6c 6f 67 69 6e 53 68 65 6c ser0...loginShel
0020: 6c 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 l1.../bin/csh08.
0030: 0c 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 .userPassword1(.
0040: 26 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 &{SSHA}7UkOfYA83
0050: 67 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 gc9lhur5RR/smUR4
0060: 63 57 57 44 79 4f 39 cWWDyO9
ber_scanf fmt ([v]) ber:
ber_dump: buf=0x802807480 ptr=0x802807586 end=0x8028075cc len=70
0000: 31 0a 04 08 2f 62 69 6e 2f 63 73 68 30 38 04 0c 1.../bin/csh08..
0010: 75 73 65 72 50 61 73 73 77 6f 72 64 31 28 04 26 userPassword1(.&
0020: 7b 53 53 48 41 7d 37 55 6b 4f 66 59 41 38 33 67 {SSHA}7UkOfYA83g
0030: 63 39 6c 68 75 72 35 52 52 2f 73 6d 55 52 34 63 c9lhur5RR/smUR4c
0040: 57 57 44 79 4f 39 WWDyO9
passwd.c:387:write_passwd: WRITE_INT32 : var=0 int32=0
passwd.c:387:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:388:write_passwd: WRITE_STRING: var=usernames[i] string="muxas"
passwd.c:388:write_passwd: WRITE_INT32 : var=strlen(usernames[i]) int32=5
passwd.c:388:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:388:write_passwd: WRITE : var=(usernames[i]) size=5
passwd.c:389:write_passwd: WRITE_STRING: var=passwd string="x"
passwd.c:389:write_passwd: WRITE_INT32 : var=strlen(passwd) int32=1
passwd.c:389:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:389:write_passwd: WRITE : var=(passwd) size=1
passwd.c:390:write_passwd: WRITE : var=&(uids[j]) size=4
passwd.c:391:write_passwd: WRITE : var=&(gid) size=4
passwd.c:392:write_passwd: WRITE_STRING: var=gecos string="Homegrown user"
passwd.c:392:write_passwd: WRITE_INT32 : var=strlen(gecos) int32=15
passwd.c:392:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:392:write_passwd: WRITE : var=(gecos) size=15
passwd.c:393:write_passwd: WRITE_STRING: var=homedir string="/home/muxas"
passwd.c:393:write_passwd: WRITE_INT32 : var=strlen(homedir) int32=11
passwd.c:393:write_passwd: WRITE : var=&(tmpint32) size=4
passwd.c:393:write_passwd: WRITE : var=(homedir) size=11
passwd.c:393:write_passwd: WRITE : var=(homedir) error: Broken pipe
nslcd: [e509fe] error writing to client: Broken pipe
ldap_msgfree
ldap_abandon 4
ldap_abandon_ext 4
do_abandon origid 4, msgid 4
ldap_msgdelete ld=0x802835040 msgid=4
ber_flush2: 8 bytes to sd 11
0000: 30 06 02 01 05 50 01 04 0....P..
ldap_write: want=8, written=8
0000: 30 06 02 01 05 50 01 04 0....P..
ldap_free_connection 0 1
ldap_free_connection: refcnt 1
ldap_free_request (origid 4, msgid 4)
ldap_msgfree
nslcd: [06dac8] DEBUG: ldap_unbind()
nslcd: [b50c2a] DEBUG: ldap_unbind()
ldap_unbind
ldap_unbind
ldap_free_connection 1 1
nslcd: [e509fe] DEBUG: ldap_unbind()
ldap_unbind
ldap_free_connection 1 1
ldap_send_unbind
ldap_free_connection 1 1
ldap_send_unbind
nslcd: [31b782] DEBUG: ldap_unbind()
ldap_unbind
ber_flush2: 7 bytes to sd 13
ldap_send_unbind
0000: 30 05 02 01 04 42 00 0....B.
ber_flush2: 7 bytes to sd 10
0000: 30 05 02 01 05 42 00 0....B.
ldap_free_connection 1 1
ldap_write: want=7, written=7
ldap_send_unbind
0000: 30 05 02 01 05 42 00 0....B.
ber_flush2: 7 bytes to sd 12
0000: 30 05 02 01 03 42 00 0....B.
ldap_write: want=7, written=7
ldap_free_connection: actually freed
ldap_write: want=7, written=7
0000: 30 05 02 01 04 42 00 0....B.
0000: 30 05 02 01 03 42 00 0....B.
ldap_free_connection: actually freed
ldap_free_connection: actually freed
ber_flush2: 7 bytes to sd 11
0000: 30 05 02 01 06 42 00 0....B.
ldap_write: want=7, written=7
0000: 30 05 02 01 06 42 00 0....B.
ldap_free_connection: actually freed
nslcd: caught signal SIGINT (2), shutting down
nslcd: DEBUG: unlink() of /var/run/nslcd.ctl failed (ignored): Permission denied
nslcd: DEBUG: unlink() of /var/run/nslcd.pid failed (ignored): Permission denied
nslcd: version 0.7.15 bailing out
--
To unsubscribe send an email to
nss-pam-ldapd-users-unsubscribe@lists.arthurdejong.org or see
http://lists.arthurdejong.org/nss-pam-ldapd-users/