Displaying 20 results from an estimated 30 matches for "logon_count".
2004 Apr 13
0
v3.0.2a: can't login into domain after switching to pdb_mysql
..._time,pass_last_set_time,pass_can_change_time,
pass_must_change_time,username,domain,nt_username,nt_fullname,home_dir,dir_d
rive,logon_script,profile_path,acct_desc,workstations,unknown_str,munged_dia
l,user_sid,group_sid,lm_pw,nt_pw,NULL,acct_ctrl,unknown_3,logon_divs,hours_l
en,bad_password_count,logon_count,unknown_6 FROM user WHERE username =
'root'
60 Query SELECT
logon_time,logoff_time,kickoff_time,pass_last_set_time,pass_can_change_time,
pass_must_change_time,username,domain,nt_username,nt_fullname,home_dir,dir_d
rive,logon_script,profile_path,acct_desc,workstati...
2005 Dec 11
0
samba + mysql
...grate of course. That yielded
some column entry problem so I tried to add a brand new user which
yielded the exact same column entry mistake.
Using mysql i altered the default table and it worked like a charm! The
problem was 1) a syntax (mysql version?) mistake and 2) both columns
logon_hours AND logon_count must exist. I generated a small patch to the
current samba vanilla and also pasted it in.
Cheers,
r.
p.s. I hope im sending it off to the right list... (Also availible on
http://www.sevenrains.ro/pak/smb_mysql.patch)
--- mysql.dump~ 2005-12-11 02:15:17.000000000 +0200
+++ mysql.dump 2005-12-11...
2009 Oct 06
0
Update from pdbsql (MySQL) to LDAP
...har(255) default NULL,
lm_pw varchar(255) default NULL,
nt_pw varchar(255) default NULL,
acct_ctrl int(9) default '528',
logon_divs int(9) default '168',
hours_len int(9) default '21',
unknown_6 int(9) default "1260",
bad_password_count int(9) default NULL,
logon_count int(9) default '0',
logon_hours varchar(42) default NULL,
password_history text default NULL,
KEY username(username)
);
INSERT INTO `user` (`logon_time`, `logoff_time`, `kickoff_time`,
`pass_last_set_time`, `pass_can_change_time`, `pass_must_change_time`,
`username`, `domain`, `nt_user...
2009 Jun 12
1
SAMBA+PDC+Mysql authentication Backend
...,
`lm_pw` varchar(255) default NULL,
`nt_pw` varchar(255) default NULL,
`acct_ctrl` int(9) default '528',
`logon_divs` int(9) default '168',
`hours_len` int(9) default '21',
`unknown_6` int(9) default '1260',
`bad_password_count` int(9) default NULL,
`logon_count` int(9) default '0',
`logon_hours` varchar(42) default NULL,
`password_history` text,
`palin_pw` varchar(255) default NULL,
`plain_pw` varchar(255) default NULL,
PRIMARY KEY (`uid`),
KEY `username` (`username`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=13009 ;
--...
2005 Dec 11
1
how to use MySQL-backend !?
..._pw` varchar(255) default NULL,
`acct_ctrl` int(9) default NULL,
`unknown_3` int(9) default NULL,
`logon_divs` int(9) default NULL,
`hours_len` int(9) default NULL,
`unknown_5` int(9) default NULL,
`unknown_6` int(9) default '1260',
`bad_password_count` int(9) default NULL,
`logon_count` int(9) default '0',
`logon_hours` int(9) default NULL,
PRIMARY KEY (`uid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=15 ;
##### end of MySQL-dump
### dump of smb.conf
[global]
workgroup = WORKGROUP
server string = SAMBA-Server
netbios name = SAMBA
passd...
2011 Nov 08
1
Problem while log on: Windows Server 2008 R2 in samba domain
...home_drive: struct lsa_String
length : 0x0000 (0)
size : 0x0000 (0)
string : NULL
logon_count : 0x0000 (0)
bad_password_count : 0x0000 (0)
rid : 0x00000000 (0)
primary_gid : 0x00000000 (0)
groups: struct samr_RidWith...
2005 Mar 27
1
problem with listing users on winXP/2k+3
...cations work
correctly, i cant get any user listed on my domain! :o/ [that is why im still
using 3.0.0] (i obviously used the same exact configuration from 3.0.0 to
3.0.13...with the small difference that the mysql table changed (as you all
know, it has now two new fields (bad_password_count int(9),logon_count int(9))
Thanks in advance,
+----------------------------------------
| Lu?s Miguel Ferreira da Silva
| Network Administrator @ISPGaya
| Instituto Superior Polit?cnico Gaya
| Rua Ant?nio Rodrigues da Rocha, 291/341
| Sto. Ov?dio ? 4400-025 V. N. de Gaia
| Tel: +351 223745730/3/5
| GSM: +351 9126714...
2004 Sep 16
1
how to submit patches ? (patch for pdb_xml.c included)
...medir(u) && strcmp(pdb_get_homedir(u), ""))
xmlNewChild(user, data->ns, "homedir", pdb_get_homedir(u));
@@ -497,7 +504,7 @@
xmlNewChild(user, data->ns, "bad_password_count", iota(pdb_get_bad_password_count(u)));
xmlNewChild(user, data->ns, "logon_count", iota(pdb_get_logon_count(u)));
xmlNewChild(user, data->ns, "unknown_6", iota(pdb_get_unknown_6(u)));
- xmlSaveFile(data->location, data->doc);
+ xmlSaveFileEnc(data->location, data->doc,"UTF-8");
return NT_STATUS_OK;
}
2005 Apr 10
0
Trouble adding users with pdbedit
...ickoff_time,pass_last_set_time,pass_can_change_time,
pass_must_change_time,username,domain,nt_username,nt_fullname,home_dir,dir_d
rive,logon_script,profile_path,acct_desc,workstations,unknown_str,munged_dia
l,user_sid,group_sid,lm_pw,nt_pw,NULL,acct_ctrl,logon_divs,hours_len,bad_pas
sword_count,logon_count,unknown_6 FROM user WHERE username = '<username>'
The user is added to the database but the 'username' field is empty (NULL).
The mysql bin log shows the following insert statement:
INSERT INTO user
(acct_ctrl,pass_can_change_time,pass_must_change_time,pass_last_set_tim...
2008 Jul 31
0
domain trust relationship with AD 2003 and user profile and home directory problems
...length : 0x0000 (0)
size : 0x0000 (0)
string : *
string : ''
logon_count : 0x0000 (0)
bad_password_count : 0x0000 (0)
rid : 0x00000456
which seems to suggest that the necessary information is equal to the
empty string (That information does exist in AD). Is this happe...
2018 Mar 31
0
How to change Domain password as normal user?
...Password must change Time: Wed, 27 Jun 2018 00:00:11 EDT
unknown_2[0..31]...
user_rid : 0x457
group_rid: 0x201
acb_info : 0x00000010
fields_present: 0x08ffffff
logon_divs: 168
bad_password_count: 0x00000001
logon_count: 0x00000000
padding1[0..7]...
logon_hrs[0..21]...
Not sure I see where the expiration is except that Kickoff Time is set to Dec 31st, 1969 which
is likely a zero in that field. Is that the problem?
Why would passwd and kpasswd not reset that?
--Mark
2018 Apr 05
2
How to change Domain password as normal user?
...Password must change Time: Wed, 04 Jul 2018 10:26:42 EDT
unknown_2[0..31]...
user_rid : 0x457
group_rid: 0x201
acb_info : 0x00000010
fields_present: 0x08ffffff
logon_divs: 168
bad_password_count: 0x00000000
logon_count: 0x00000000
padding1[0..7]...
logon_hrs[0..21]...
--Mark
2020 Mar 19
2
Computer in Samba 4.3.11 domain - logon server unavailable
...acct_expiry : NTTIME(0)
last_password_change : NTTIME(0)
allow_password_change : NTTIME(0)
force_password_change : NTTIME(0)
logon_count : 0x0000 (0)
bad_password_count : 0x0000 (0)
acct_flags : 0x00000000 (0)
authenticated : 0x00 (0)
unix_info : *...
2020 Nov 19
0
PANIC outstanding aio + key does not exist
...last_password_change : Tue Sep 8
07:44:38 PM 2020 UTC
allow_password_change : Wed Sep 9
07:44:38 PM 2020 UTC
force_password_change : Thu Sep 14
02:48:05 AM 30828 UTC
logon_count : 0x0104 (260)
bad_password_count : 0x0000 (0)
acct_flags : 0x00000210
(528)
authenticated : 0x01 (1)
unix_info...
2005 Oct 25
1
Authentication problem with Mysql backend
..._script | profile_path | acct_desc | workstations | unknown_str |
munged_dial | uid | gid | user_sid |
group_sid | lm_pw | nt_pw
| acct_ctrl | unknown_3 | logon_divs | hours_len | unknown_5 | unknown_6
| bad_password_count | logon_count | logon_hours |
+------------+-------------+--------------+--------------------
+----------------------+-----------------------+------------+---------
+-------------+--------------------+---------------------+-----------
+--------------+--------------+-----------+--------------+-------------
+-----...
2020 Mar 08
2
Trouble resolving some group membership after upgrade from 4.8 to 4.10
...last_password_change : Mon Mar 9 10:27:37 2020 NZDT
allow_password_change : Mon Mar 9 10:27:37 2020 NZDT
force_password_change : Tue Jan 19 16:14:07 2038 NZDT
logon_count : 0x0000 (0)
bad_password_count : 0x0000 (0)
acct_flags : 0x00000010 (16)
authenticated : 0x01 (1)...
2018 Mar 31
2
How to change Domain password as normal user?
On Fri, 30 Mar 2018 20:19:02 -0400
Mark Foley via samba <samba at lists.samba.org> wrote:
> > On Wed, 28 Mar 2018 20:14:00 +1300 Andrew Bartlett
> > <abartlet at samba.org> wrote:
> > >
> > > On Wed, 2018-03-28 at 03:09 -0400, Mark Foley via samba wrote:
> > > >
> > > > Actually, that didn't quite work. It did change the
2018 Mar 31
3
How to change Domain password as normal user?
On Sat, 31 Mar 2018 11:42:07 -0400
Mark Foley via samba <samba at lists.samba.org> wrote:
> On Sat, 31 Mar 2018 12:25:14 +0100 Rowland Penny <rpenny at samba.org>
> wrote:
> >
> > This will then prompt the user for their 'oldpassword' and then the
> > new password (twice). There is a gotcha though, as given it will
> > only work on a DC, to do the
2007 Feb 28
2
samba problems. accounts expire after a hour, but work after reset
...f_time,kickoff_time,pass_last_set_time,pass_can_change_time,pass_must_change_time,username,domain,nt_username,nt_fullname,home_dir,dir_drive,logon_script,profile_path,acct_desc,workstations,unknown_str,munged_dial,user_sid,group_sid,lm_pw,nt_pw,NULL,acct_ctrl,logon_divs,hours_len,bad_password_count,logon_count,unknown_6,logon_hours,password_history
FROM user WHERE username = 'ralph'
[2007/02/27 12:09:16, 3] passdb/lookup_sid.c:fetch_gid_from_cache(1015)
fetch gid from cache 1001 -> S-1-5-21-1968991162-2130249723-1959552931-513
[2007/02/27 12:09:16, 3] passdb/lookup_sid.c:fetch_gid_from_cach...
2005 May 13
1
users can login; groups fail even though groups are visible in getent
..._str_len: 0000
[2005/05/13 15:05:58, 5] rpc_parse/parse_prs.c:prs_uint16(613)
~ 005e uni_max_len: 0000
[2005/05/13 15:05:58, 5] rpc_parse/parse_prs.c:prs_uint32(642)
~ 0060 buffer : 00000000
[2005/05/13 15:05:58, 5] rpc_parse/parse_prs.c:prs_uint16(613)
~ 0064 logon_count : 0988
[2005/05/13 15:05:58, 5] rpc_parse/parse_prs.c:prs_uint16(613)
~ 0066 bad_pw_count : 0000
[2005/05/13 15:05:58, 5] rpc_parse/parse_prs.c:prs_uint32(642)
~ 0068 user_rid : 00000471
[2005/05/13 15:05:58, 5] rpc_parse/parse_prs.c:prs_uint32(642)
~ 006c group_r...