1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

r8781: - fixed a memory leak in BASE-SECLEAK (ironic, isn't it). There is

another leak in the ASN.1 code that andrew has volunteered to look at

- make the timelimit controllable with -t
(This used to be commit 227d4d2115)
This commit is contained in:
Andrew Tridgell 2005-07-26 12:41:29 +00:00 committed by Gerald (Jerry) Carter
parent 0f7f08565c
commit e3e794d1a9

View File

@ -36,7 +36,7 @@ static BOOL try_failed_login(struct smbcli_state *cli)
setup.in.capabilities = cli->transport->negotiate.capabilities;
setup.in.workgroup = lp_workgroup();
setup.in.credentials = cli_credentials_init(NULL);
setup.in.credentials = cli_credentials_init(session);
cli_credentials_set_conf(setup.in.credentials);
cli_credentials_set_domain(setup.in.credentials, "INVALID-DOMAIN", CRED_SPECIFIED);
cli_credentials_set_username(setup.in.credentials, "INVALID-USERNAME", CRED_SPECIFIED);
@ -56,15 +56,17 @@ BOOL torture_sec_leak(void)
{
struct smbcli_state *cli;
time_t t1 = time(NULL);
int timelimit = lp_parm_int(-1, "torture", "timelimit", 20);
if (!torture_open_connection(&cli)) {
return False;
}
while (time(NULL) < t1+20) {
while (time(NULL) < t1+timelimit) {
if (!try_failed_login(cli)) {
return False;
}
talloc_report(NULL, stdout);
}
return True;