1#!/usr/bin/ksh 2# 3# This file and its contents are supplied under the terms of the 4# Common Development and Distribution License ("CDDL"), version 1.0. 5# You may only use this file in accordance with the terms of version 6# 1.0 of the CDDL. 7# 8# A full copy of the text of the CDDL should have accompanied this 9# source. A copy of the CDDL is also available via the Internet at 10# http://www.illumos.org/license/CDDL. 11 12# 13# Copyright 2020 Tintri by DDN, Inc. All rights reserved. 14# 15 16# The NETBIOS domain name to which the server is joined. 17export NETBIOS_DOMAIN="DOMAIN" 18# An FQDN of a dc in the domain. 19export DC_FQDN="dc.domain.com" 20# The authenticating user. 21export USERNAME="user" 22# The name of the computer from which the user is authenticating. 23export CLIENT_COMPUTER="client1" 24 25# 26# Binary files exported from Wireshark, containing parts of a 27# NetrSamLogon(Ex) request. 28# 29export CHALLENGE_FILE=/path/to/challenge.bin 30export NT_RESPONSE_FILE=/path/to/nt_file.bin 31export LM_RESPONSE_FILE=/path/to/lm_file.bin