diff --git a/backend/src/integration/groovy/jp/vmi/selenium/selenese/command/AttachFile.java b/backend/src/integration/groovy/jp/vmi/selenium/selenese/command/AttachFile.java new file mode 100644 index 000000000..02bf54d65 --- /dev/null +++ b/backend/src/integration/groovy/jp/vmi/selenium/selenese/command/AttachFile.java @@ -0,0 +1,112 @@ +// This code is based on: +// +// com.thoughtworks.selenium.webdriven.commands.AttachFile +// +// in Selenium WebDriver. +// +// The following copyright is copied from original. +// --- +// Licensed to the Software Freedom Conservancy (SFC) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The SFC licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. + +package jp.vmi.selenium.selenese.command; + +import java.io.File; +import java.io.FileOutputStream; +import java.io.IOException; +import java.net.MalformedURLException; +import java.net.URL; + +import org.apache.commons.io.FilenameUtils; +import org.openqa.selenium.WebElement; +import org.openqa.selenium.io.TemporaryFilesystem; + +import com.google.common.io.Resources; + +import jp.vmi.selenium.selenese.Context; +import jp.vmi.selenium.selenese.result.Error; +import jp.vmi.selenium.selenese.result.Result; +import jp.vmi.selenium.selenese.result.Warning; + +import static jp.vmi.selenium.selenese.command.ArgumentType.*; +import static jp.vmi.selenium.selenese.result.Success.*; + +/** + * Re-implementation of AttachFile. + */ +public class AttachFile extends AbstractCommand { + + private static final int ARG_LOCATOR = 0; + private static final int ARG_FILENAME = 1; + + AttachFile(int index, String name, String... args) { + super(index, name, args, LOCATOR, VALUE); + } + + @Override + protected Result executeImpl(Context context, String... curArgs) { + String name = curArgs[ARG_FILENAME]; + File outputTo = null; + if (name.contains("://")) { + // process (remote) url + URL url; + try { + url = new URL(name); + } catch (MalformedURLException e) { + return new Error("Malformed URL: " + name); + } + File dir = TemporaryFilesystem.getDefaultTmpFS().createTempDir("attachFile", "dir"); + outputTo = new File(dir, new File(url.getFile()).getName()); + FileOutputStream fos = null; + try { + fos = new FileOutputStream(outputTo); + Resources.copy(url, fos); + } catch (IOException e) { + return new Error("Can't access file to upload: " + url, e); + } finally { + try { + if (fos != null) { + fos.close(); + } + } catch (IOException e) { + return new Warning("Unable to close stream used for reading file: " + name, e); + } + } + } else { + // process file besides testcase file + // okay, let's fix some cases... + if (name.matches("([a-zA-Z]:)?\\\\.+")) { + // windows absolute path + outputTo = new File(name); + } else { + outputTo = new File(FilenameUtils.getPath(context.getCurrentTestCase().getFilename()), name); + } + if (!outputTo.exists()) { + return new Error("Can't access file: " + outputTo); + } + } + + WebElement element = context.findElement(curArgs[ARG_LOCATOR]); + try { + element.clear(); + } catch (Exception e) { + // ignore exceptions from some drivers when file-input cannot be cleared; + } + element.sendKeys(outputTo.getAbsolutePath()); + return SUCCESS; + } +} diff --git a/backend/src/integration/resources/SHIBUI-1744-2.side b/backend/src/integration/resources/SHIBUI-1744-2.side index 36ec5d6ee..2bc9dc4e1 100644 --- a/backend/src/integration/resources/SHIBUI-1744-2.side +++ b/backend/src/integration/resources/SHIBUI-1744-2.side @@ -367,14 +367,14 @@ "id": "c82be982-6551-4d50-af85-b9e87610e000", "comment": "", "command": "waitForElementVisible", - "target": "css=fieldset > ul > li > strong", + "target": "css=fieldset > div > button > strong", "targets": [], "value": "Bundle - Test Bundle" }, { "id": "e3b80e89-4278-4e2e-9aa4-d2cc03e86932", "comment": "", "command": "assertText", - "target": "css=fieldset > ul > li > strong", + "target": "css=fieldset > div > button > strong", "targets": [ ["css=strong", "css:finder"], ["xpath=//div[@id='root']/div/main/div/section/div[2]/div[2]/div/div/form/div/div/div/div/div[10]/div/div/fieldset/ul/li/strong", "xpath:idRelative"], @@ -386,9 +386,12 @@ "id": "421fdaa5-e42b-4ba3-be22-c5697624ee34", "comment": "", "command": "click", - "target": "css=.fa-check:nth-child(2)", + "target": "css=fieldset > div > button", "targets": [ - ["css=.fa-check:nth-child(2)", "css:finder"] + ["css=.badge-light", "css:finder"], + ["xpath=//div[@id='root']/div/main/div/section/div[2]/div[2]/div/div/form/div/div/div/div/div[10]/div/div/fieldset/div/button/span", "xpath:idRelative"], + ["xpath=//div/button/span", "xpath:position"], + ["xpath=//span[contains(.,'Select Bundle')]", "xpath:innerText"] ], "value": "" }, { diff --git a/backend/src/integration/resources/SHIBUI-1744-3.side b/backend/src/integration/resources/SHIBUI-1744-3.side index bbdbf1a84..96d28a5c4 100644 --- a/backend/src/integration/resources/SHIBUI-1744-3.side +++ b/backend/src/integration/resources/SHIBUI-1744-3.side @@ -454,14 +454,14 @@ "id": "e8a2f501-0efa-43a3-bbf2-b86e5ec8f6d1", "comment": "", "command": "waitForElementVisible", - "target": "css=fieldset > ul > li > strong", + "target": "css=fieldset > div > button > strong", "targets": [], "value": "30000" }, { "id": "cc36c580-3d53-483a-a813-2a6c8fb95792", "comment": "", "command": "assertText", - "target": "css=fieldset > ul > li > strong", + "target": "css=fieldset > div > button > strong", "targets": [ ["css=strong", "css:finder"], ["xpath=//div[@id='root']/div/main/div/section/div[2]/div/div[2]/div[2]/div[2]/div/form/div/div/div/div[8]/div/div/div/fieldset/ul/li/strong", "xpath:idRelative"], @@ -473,7 +473,7 @@ "id": "caabc3c1-7ac7-4251-9885-fe2e3b7c4c10", "comment": "", "command": "click", - "target": "css=fieldset > ul > li > button", + "target": "css=fieldset > div > button", "targets": [ ["css=.fa-check:nth-child(2) > path", "css:finder"] ], @@ -623,11 +623,18 @@ ["xpath=//button[contains(.,' Save')]", "xpath:innerText"] ], "value": "" + }, { + "id": "e54aff89-0f95-452f-92c0-42ca78188fc0", + "comment": "", + "command": "waitForElementVisible", + "target": "css=#filters > ul > li > div > button", + "targets": [], + "value": "30000" }, { "id": "d6a2d477-4b89-4cf5-a4a8-0f35afcdd5f8", "comment": "", "command": "click", - "target": "css=.mx-4", + "target": "css=#filters > ul > li > div > button", "targets": [ ["css=.mx-4", "css:finder"], ["xpath=(//button[@type='button'])[13]", "xpath:attributes"], diff --git a/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/configuration/auto/WebSecurityConfig.java b/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/configuration/auto/WebSecurityConfig.java index 8617bfa3b..8584ff303 100644 --- a/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/configuration/auto/WebSecurityConfig.java +++ b/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/configuration/auto/WebSecurityConfig.java @@ -59,8 +59,8 @@ public class WebSecurityConfig { @Bean @Profile("!no-auth") - public AdminUserService adminUserService(UserRepository userRepository) { - return new AdminUserService(userRepository); + public AdminUserService adminUserService(UserService userService) { + return new AdminUserService(userService); } private HttpFirewall allowUrlEncodedSlashHttpFirewall() { @@ -128,7 +128,7 @@ protected void configure(AuthenticationManagerBuilder auth) throws Exception { .password(defaultPassword) .roles("ADMIN"); } - auth.userDetailsService(adminUserService(userRepository)).passwordEncoder(passwordEncoder); + auth.userDetailsService(adminUserService(userService)).passwordEncoder(passwordEncoder); } @Override diff --git a/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/security/model/User.java b/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/security/model/User.java index d96a18be8..5ca34b4e6 100644 --- a/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/security/model/User.java +++ b/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/security/model/User.java @@ -114,12 +114,15 @@ public String getOwnerId() { public OwnerType getOwnerType() { return OwnerType.USER; } - + + /** + * @return the FIRST role found for the user or an exception if the user has no roles + */ public String getRole() { if (StringUtils.isBlank(this.role)) { Set roles = this.getRoles(); - if (roles.size() != 1) { - throw new RuntimeException(String.format("User with username [%s] has no role or does not have exactly one role!", this.getUsername())); + if (roles.isEmpty()) { + throw new RuntimeException(String.format("User with username [%s] has no roles", this.getUsername())); } this.role = roles.iterator().next().getName(); } diff --git a/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/security/service/IRolesService.java b/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/security/service/IRolesService.java index 26653d241..ac30d986a 100644 --- a/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/security/service/IRolesService.java +++ b/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/security/service/IRolesService.java @@ -1,6 +1,8 @@ package edu.internet2.tier.shibboleth.admin.ui.security.service; import java.util.List; +import java.util.Optional; +import java.util.Set; import edu.internet2.tier.shibboleth.admin.ui.exception.EntityNotFoundException; import edu.internet2.tier.shibboleth.admin.ui.security.exception.RoleDeleteException; @@ -11,12 +13,17 @@ public interface IRolesService { Role createRole(Role role) throws RoleExistsConflictException; - Role updateRole(Role role) throws EntityNotFoundException; - List findAll(); + Optional findByName(String roleNone); + Role findByResourceId(String resourceId) throws EntityNotFoundException; + Set getAndCreateAllRoles(Set roles); + void deleteDefinition(String resourceId) throws EntityNotFoundException, RoleDeleteException; -} + Role updateRole(Role role) throws EntityNotFoundException; + + void save(Role newUserRole); +} \ No newline at end of file diff --git a/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/security/service/RolesServiceImpl.java b/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/security/service/RolesServiceImpl.java index cfbe57fb0..939be59d8 100644 --- a/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/security/service/RolesServiceImpl.java +++ b/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/security/service/RolesServiceImpl.java @@ -1,7 +1,9 @@ package edu.internet2.tier.shibboleth.admin.ui.security.service; +import java.util.HashSet; import java.util.List; import java.util.Optional; +import java.util.Set; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @@ -15,7 +17,7 @@ @Service public class RolesServiceImpl implements IRolesService { @Autowired - private RoleRepository roleRepository; + RoleRepository roleRepository; @Override public Role createRole(Role role) throws RoleExistsConflictException { @@ -42,6 +44,11 @@ public List findAll() { return roleRepository.findAll(); } + @Override + public Optional findByName(String roleName) { + return roleRepository.findByName(roleName); + } + @Override public Role findByResourceId(String resourceId) throws EntityNotFoundException { Optional found = roleRepository.findByResourceId(resourceId); @@ -51,6 +58,30 @@ public Role findByResourceId(String resourceId) throws EntityNotFoundException { return found.get(); } + @Override + public Set getAndCreateAllRoles(Set roleNames) { + HashSet result = new HashSet<>(); + if (roleNames == null || roleNames.isEmpty()) { + Role r = getRoleNone(); + result.add(r); + return result; + } + roleNames.forEach(roleName -> { + Optional role = roleRepository.findByName(roleName); + result.add(role.orElseGet(() -> roleRepository.save(new Role(roleName)))); + }); + return result; + } + + private Role getRoleNone() { + Optional noRole = roleRepository.findByName("ROLE_NONE"); + if (noRole.isEmpty()) { + Role newUserRole = new Role("ROLE_NONE"); + return roleRepository.save(newUserRole); + } + return noRole.get(); + } + @Override public Role updateRole(Role role) throws EntityNotFoundException { Optional found = roleRepository.findByName(role.getName()); @@ -59,4 +90,9 @@ public Role updateRole(Role role) throws EntityNotFoundException { } return roleRepository.save(role); } -} + + @Override + public void save(Role newUserRole) { + roleRepository.save(newUserRole); + } +} \ No newline at end of file diff --git a/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/security/springsecurity/AdminUserService.java b/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/security/springsecurity/AdminUserService.java index a2cab06e2..8782362a4 100644 --- a/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/security/springsecurity/AdminUserService.java +++ b/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/security/springsecurity/AdminUserService.java @@ -2,7 +2,7 @@ import edu.internet2.tier.shibboleth.admin.ui.security.model.Role; import edu.internet2.tier.shibboleth.admin.ui.security.model.User; -import edu.internet2.tier.shibboleth.admin.ui.security.repository.UserRepository; +import edu.internet2.tier.shibboleth.admin.ui.security.service.UserService; import lombok.RequiredArgsConstructor; import org.springframework.security.core.GrantedAuthority; import org.springframework.security.core.authority.SimpleGrantedAuthority; @@ -22,12 +22,12 @@ @RequiredArgsConstructor public class AdminUserService implements UserDetailsService { - private final UserRepository userRepository; + private final UserService userService; @Override @Transactional(readOnly = true) public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException { - User user = userRepository + User user = userService .findByUsername(username) .orElseThrow(() -> new UsernameNotFoundException(String.format("User [%s] is not found", username))); @@ -43,5 +43,4 @@ public UserDetails loadUserByUsername(String username) throws UsernameNotFoundEx return new org.springframework.security.core.userdetails.User(user.getUsername(), user.getPassword(), grantedAuthorities); } -} - +} \ No newline at end of file diff --git a/backend/src/main/resources/application.yml b/backend/src/main/resources/application.yml index 74ae43689..671000aa6 100644 --- a/backend/src/main/resources/application.yml +++ b/backend/src/main/resources/application.yml @@ -14,11 +14,14 @@ # forceServiceProviderMetadataGeneration: false # callbackUrl: "https://localhost:8443/callback" # maximumAuthenticationLifetime: 3600000 +# requireAssertedRoleForNewUsers: false # saml2ProfileMapping: # username: urn:oid:0.9.2342.19200300.100.1.1 # firstname: urn:oid:2.5.4.42 # lastname: urn:oid:2.5.4.4 # email: urn:oid:0.9.2342.19200300.100.1.3 +# groups: urn:oid:1.3.6.1.4.1.5923.1.5.1.1 # attributeId - isMemberOf +# roles: --define name of the attribute containing the incoming user roles-- custom: attributes: diff --git a/backend/src/test/groovy/edu/internet2/tier/shibboleth/admin/ui/security/springsecurity/AdminUserServiceTests.groovy b/backend/src/test/groovy/edu/internet2/tier/shibboleth/admin/ui/security/springsecurity/AdminUserServiceTests.groovy index 3f72adf98..d40e2bd1c 100644 --- a/backend/src/test/groovy/edu/internet2/tier/shibboleth/admin/ui/security/springsecurity/AdminUserServiceTests.groovy +++ b/backend/src/test/groovy/edu/internet2/tier/shibboleth/admin/ui/security/springsecurity/AdminUserServiceTests.groovy @@ -66,8 +66,8 @@ class AdminUserServiceTests extends AbstractBaseDataJpaTest { @TestConfiguration private static class AUSLocalConfig { @Bean - AdminUserService adminUserService(UserRepository userRepository) { - return new AdminUserService(userRepository) + AdminUserService adminUserService(UserService userService) { + return new AdminUserService(userService) } // Rather than having a specific dev context needed, we just stand up the needed bean. diff --git a/pac4j-module/src/main/java/net/unicon/shibui/pac4j/AddNewUserFilter.java b/pac4j-module/src/main/java/net/unicon/shibui/pac4j/AddNewUserFilter.java index 5c99d27a7..c0c9048fa 100644 --- a/pac4j-module/src/main/java/net/unicon/shibui/pac4j/AddNewUserFilter.java +++ b/pac4j-module/src/main/java/net/unicon/shibui/pac4j/AddNewUserFilter.java @@ -5,8 +5,8 @@ import edu.internet2.tier.shibboleth.admin.ui.security.model.Group; import edu.internet2.tier.shibboleth.admin.ui.security.model.Role; import edu.internet2.tier.shibboleth.admin.ui.security.model.User; -import edu.internet2.tier.shibboleth.admin.ui.security.repository.RoleRepository; import edu.internet2.tier.shibboleth.admin.ui.security.service.IGroupService; +import edu.internet2.tier.shibboleth.admin.ui.security.service.IRolesService; import edu.internet2.tier.shibboleth.admin.ui.security.service.UserService; import edu.internet2.tier.shibboleth.admin.ui.service.EmailService; import lombok.extern.slf4j.Slf4j; @@ -18,6 +18,7 @@ import org.springframework.security.core.Authentication; import org.springframework.security.core.context.SecurityContextHolder; import org.springframework.security.crypto.bcrypt.BCrypt; +import org.springframework.transaction.annotation.Transactional; import javax.mail.MessagingException; import javax.servlet.Filter; @@ -28,7 +29,6 @@ import javax.servlet.ServletResponse; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; -import javax.transaction.Transactional; import java.io.IOException; import java.util.ArrayList; import java.util.HashSet; @@ -44,13 +44,13 @@ public class AddNewUserFilter implements Filter { private IGroupService groupService; private Matcher matcher; private Pac4jConfigurationProperties pac4jConfigurationProperties; - private RoleRepository roleRepository; + private IRolesService rolesService; private Pac4jConfigurationProperties.SimpleProfileMapping simpleProfileMapping; private UserService userService; - public AddNewUserFilter(Pac4jConfigurationProperties pac4jConfigurationProperties, UserService userService, RoleRepository roleRepository, Matcher matcher, IGroupService groupService, Optional emailService) { + public AddNewUserFilter(Pac4jConfigurationProperties pac4jConfigurationProperties, UserService userService, IRolesService rolesService, Matcher matcher, IGroupService groupService, Optional emailService) { this.userService = userService; - this.roleRepository = roleRepository; + this.rolesService = rolesService; this.emailService = emailService; this.pac4jConfigurationProperties = pac4jConfigurationProperties; this.matcher = matcher; @@ -60,16 +60,10 @@ public AddNewUserFilter(Pac4jConfigurationProperties pac4jConfigurationPropertie @Transactional User buildAndPersistNewUserFromProfile(CommonProfile profile) { - Optional noRole = roleRepository.findByName(ROLE_NONE); - Role newUserRole; - if (noRole.isEmpty()) { - newUserRole = new Role(ROLE_NONE); - roleRepository.save(newUserRole); - } - newUserRole = noRole.get(); + Set userRoles = rolesService.getAndCreateAllRoles(profile.getRoles()); User user = new User(); - user.getRoles().add(newUserRole); + user.setRoles(userRoles); user.setUsername(profile.getUsername()); user.setPassword(BCrypt.hashpw(RandomStringUtils.randomAlphanumeric(20), BCrypt.gensalt())); user.setFirstName(profile.getFirstName()); @@ -78,6 +72,7 @@ User buildAndPersistNewUserFromProfile(CommonProfile profile) { // get profile attribute for groups Object obj = profile.getAttribute(simpleProfileMapping.getGroups()); + log.debug("User's incoming group from mapping: [{}]", obj); if (obj != null) { final ArrayList groupNames = new ArrayList<>(); if (obj instanceof String) { @@ -91,11 +86,15 @@ User buildAndPersistNewUserFromProfile(CommonProfile profile) { } } - User persistedUser = userService.save(user); + // Don't save the user if the role required flag is on and the user has the default none role + if (pac4jConfigurationProperties.isRequireAssertedRoleForNewUsers() && user.getRole().equals(ROLE_NONE)) { + return user; + } + user = userService.save(user); if (log.isDebugEnabled()) { log.debug("Persisted new user:\n" + user); } - return persistedUser; + return user; } @Override diff --git a/pac4j-module/src/main/java/net/unicon/shibui/pac4j/BetterSAML2Profile.java b/pac4j-module/src/main/java/net/unicon/shibui/pac4j/BetterSAML2Profile.java index f948304cf..1036781e0 100644 --- a/pac4j-module/src/main/java/net/unicon/shibui/pac4j/BetterSAML2Profile.java +++ b/pac4j-module/src/main/java/net/unicon/shibui/pac4j/BetterSAML2Profile.java @@ -5,6 +5,7 @@ import java.util.Collection; import java.util.List; +import java.util.Set; public class BetterSAML2Profile extends SAML2Profile { private SimpleProfileMapping profileMapping; @@ -39,6 +40,15 @@ public List getGroups() { return (List) getAttribute(profileMapping.getGroups()); } + public Set getRoles() { + Set result = super.getRoles(); + List assertedRoles = (List) getAttribute(profileMapping.getRoles()); + if (assertedRoles != null) { + result.addAll(assertedRoles); + } + return result; + } + @Override public String getUsername() { Object username = getAttribute(profileMapping.getUsername()); @@ -49,4 +59,4 @@ public String getUsername() { } } -} +} \ No newline at end of file diff --git a/pac4j-module/src/main/java/net/unicon/shibui/pac4j/Pac4jConfiguration.java b/pac4j-module/src/main/java/net/unicon/shibui/pac4j/Pac4jConfiguration.java index cda47108b..26d32708f 100644 --- a/pac4j-module/src/main/java/net/unicon/shibui/pac4j/Pac4jConfiguration.java +++ b/pac4j-module/src/main/java/net/unicon/shibui/pac4j/Pac4jConfiguration.java @@ -4,16 +4,11 @@ import edu.internet2.tier.shibboleth.admin.ui.security.repository.UserRepository; import edu.internet2.tier.shibboleth.admin.ui.security.service.UserService; import lombok.extern.slf4j.Slf4j; -import org.apache.commons.lang3.StringUtils; +import net.unicon.shibui.pac4j.authenticator.ShibuiPac4JHeaderClientAuthenticator; +import net.unicon.shibui.pac4j.authenticator.ShibuiSAML2Authenticator; import org.pac4j.core.client.Clients; import org.pac4j.core.config.Config; -import org.pac4j.core.context.WebContext; -import org.pac4j.core.credentials.Credentials; -import org.pac4j.core.credentials.TokenCredentials; -import org.pac4j.core.credentials.authenticator.Authenticator; -import org.pac4j.core.exception.CredentialsException; import org.pac4j.core.matching.PathMatcher; -import org.pac4j.core.profile.CommonProfile; import org.pac4j.core.profile.definition.CommonProfileDefinition; import org.pac4j.http.client.direct.HeaderClient; import org.pac4j.saml.client.SAML2Client; @@ -66,29 +61,7 @@ public Config config(final Pac4jConfigurationProperties pac4jConfigProps, switch (pac4jConfigProps.getTypeOfAuth()) { case "HEADER": { log.info("**** Configuring PAC4J Header Client"); - HeaderClient headerClient = new HeaderClient(pac4jConfigProps.getAuthenticationHeader(), - new Authenticator() { - @Override - public void validate(Credentials credentials, WebContext context) { - { - if (credentials instanceof TokenCredentials) { - TokenCredentials creds = (TokenCredentials) credentials; - String token = creds.getToken(); - if (StringUtils.isAllBlank(token)) { - throw new CredentialsException("Supplied token value in header was missing or blank"); - } - } else { - throw new CredentialsException("Invalid Credentials object generated by HeaderClient"); - } - final CommonProfile profile = new CommonProfile(); - String token = ((TokenCredentials)credentials).getToken(); - profile.setId(token); - profile.addAttribute("username", token); - profile.setRoles(userService.getUserRoles(token)); - credentials.setUserProfile(profile); - } - } - }); + HeaderClient headerClient = new HeaderClient(pac4jConfigProps.getAuthenticationHeader(), new ShibuiPac4JHeaderClientAuthenticator(userService)); headerClient.setName(PAC4J_CLIENT_NAME); clients.setClients(headerClient); break; @@ -107,12 +80,10 @@ public void validate(Credentials credentials, WebContext context) { saml2Config.setForceServiceProviderMetadataGeneration(pac4jConfigProps.isForceServiceProviderMetadataGeneration()); saml2Config.setWantsAssertionsSigned(pac4jConfigProps.isWantAssertionsSigned()); saml2Config.setAttributeAsId(pac4jConfigProps.getSimpleProfileMapping().getUsername()); - //saml2Config.setPostLogoutURL(pac4jConfigProps.getPostLogoutURL()); // consideration needed? - //saml2Config.setSpLogoutRequestBindingType(pac4jConfigProps.getSpLogoutRequestBindingType()); final SAML2Client saml2Client = new SAML2Client(saml2Config); saml2Client.addAuthorizationGenerator(saml2ModelAuthorizationGenerator); - SAML2Authenticator saml2Authenticator = new SAML2Authenticator(saml2Config.getAttributeAsId(), saml2Config.getMappedAttributes()); + SAML2Authenticator saml2Authenticator = new ShibuiSAML2Authenticator(saml2Config.getAttributeAsId(), saml2Config.getMappedAttributes(), userService); saml2Authenticator.setProfileDefinition(new CommonProfileDefinition(p -> new BetterSAML2Profile(pac4jConfigProps.getSimpleProfileMapping()))); saml2Client.setAuthenticator(saml2Authenticator); diff --git a/pac4j-module/src/main/java/net/unicon/shibui/pac4j/Pac4jConfigurationProperties.java b/pac4j-module/src/main/java/net/unicon/shibui/pac4j/Pac4jConfigurationProperties.java index 41f65d43b..30311ba84 100644 --- a/pac4j-module/src/main/java/net/unicon/shibui/pac4j/Pac4jConfigurationProperties.java +++ b/pac4j-module/src/main/java/net/unicon/shibui/pac4j/Pac4jConfigurationProperties.java @@ -24,6 +24,7 @@ public class Pac4jConfigurationProperties { private String keystorePath = "/tmp/samlKeystore.jks"; private int maximumAuthenticationLifetime = 3600; private String privateKeyPassword = "changeit"; + private boolean requireAssertedRoleForNewUsers = false; private SimpleProfileMapping simpleProfileMapping; private String serviceProviderEntityId = "https://unicon.net/shibui"; private String serviceProviderMetadataPath = "/tmp/sp-metadata.xml"; @@ -37,6 +38,7 @@ public static class SimpleProfileMapping { private String email; private String firstName; private String groups; + private String roles; private String lastName; private String username; } diff --git a/pac4j-module/src/main/java/net/unicon/shibui/pac4j/WebSecurity.java b/pac4j-module/src/main/java/net/unicon/shibui/pac4j/WebSecurity.java index b9b14a168..17bc554ff 100644 --- a/pac4j-module/src/main/java/net/unicon/shibui/pac4j/WebSecurity.java +++ b/pac4j-module/src/main/java/net/unicon/shibui/pac4j/WebSecurity.java @@ -1,13 +1,12 @@ package net.unicon.shibui.pac4j; import edu.internet2.tier.shibboleth.admin.ui.configuration.auto.EmailConfiguration; -import edu.internet2.tier.shibboleth.admin.ui.security.repository.RoleRepository; import edu.internet2.tier.shibboleth.admin.ui.security.service.IGroupService; +import edu.internet2.tier.shibboleth.admin.ui.security.service.IRolesService; import edu.internet2.tier.shibboleth.admin.ui.security.service.UserService; import edu.internet2.tier.shibboleth.admin.ui.service.EmailService; import static net.unicon.shibui.pac4j.Pac4jConfiguration.PAC4J_CLIENT_NAME; import org.pac4j.core.config.Config; - import org.pac4j.core.matching.Matcher; import org.pac4j.springframework.security.web.CallbackFilter; import org.pac4j.springframework.security.web.SecurityFilter; @@ -34,9 +33,9 @@ public class WebSecurity { @Bean("webSecurityConfig") public WebSecurityConfigurerAdapter webSecurityConfigurerAdapter(final Config config, UserService userService, - RoleRepository roleRepository, Optional emailService, + IRolesService rolesService, Optional emailService, Pac4jConfigurationProperties pac4jConfigurationProperties, IGroupService groupService) { - return new Pac4jWebSecurityConfigurerAdapter(config, userService, roleRepository, emailService, groupService, + return new Pac4jWebSecurityConfigurerAdapter(config, userService, rolesService, emailService, groupService, pac4jConfigurationProperties); } @@ -46,14 +45,14 @@ public static class Pac4jWebSecurityConfigurerAdapter extends WebSecurityConfigu private Optional emailService; private IGroupService groupService; private Pac4jConfigurationProperties pac4jConfigurationProperties; - private RoleRepository roleRepository; + private IRolesService rolesService; private UserService userService; - public Pac4jWebSecurityConfigurerAdapter(final Config config, UserService userService, RoleRepository roleRepository, + public Pac4jWebSecurityConfigurerAdapter(final Config config, UserService userService, IRolesService rolesService, Optional emailService, IGroupService groupService, Pac4jConfigurationProperties pac4jConfigurationProperties) { this.config = config; this.userService = userService; - this.roleRepository = roleRepository; + this.rolesService = rolesService; this.emailService = emailService; this.groupService = groupService; this.pac4jConfigurationProperties = pac4jConfigurationProperties; @@ -69,7 +68,7 @@ protected void configure(HttpSecurity http) throws Exception { http.antMatcher("/**").addFilterBefore(getFilter(config, pac4jConfigurationProperties.getTypeOfAuth()), BasicAuthenticationFilter.class); http.antMatcher("/**").addFilterBefore(securityFilter, BasicAuthenticationFilter.class); // add the new user filter - http.addFilterAfter(new AddNewUserFilter(pac4jConfigurationProperties, userService, roleRepository, getPathMatcher("exclude-paths-matcher"), groupService, emailService), SecurityFilter.class); + http.addFilterAfter(new AddNewUserFilter(pac4jConfigurationProperties, userService, rolesService, getPathMatcher("exclude-paths-matcher"), groupService, emailService), SecurityFilter.class); http.authorizeRequests().anyRequest().fullyAuthenticated(); diff --git a/pac4j-module/src/main/java/net/unicon/shibui/pac4j/authenticator/ShibuiPac4JHeaderClientAuthenticator.java b/pac4j-module/src/main/java/net/unicon/shibui/pac4j/authenticator/ShibuiPac4JHeaderClientAuthenticator.java new file mode 100644 index 000000000..1109b5d72 --- /dev/null +++ b/pac4j-module/src/main/java/net/unicon/shibui/pac4j/authenticator/ShibuiPac4JHeaderClientAuthenticator.java @@ -0,0 +1,40 @@ +package net.unicon.shibui.pac4j.authenticator; + +import edu.internet2.tier.shibboleth.admin.ui.security.service.UserService; +import lombok.AllArgsConstructor; +import org.apache.commons.lang3.StringUtils; +import org.pac4j.core.context.WebContext; +import org.pac4j.core.credentials.Credentials; +import org.pac4j.core.credentials.TokenCredentials; +import org.pac4j.core.credentials.authenticator.Authenticator; +import org.pac4j.core.exception.CredentialsException; +import org.pac4j.core.profile.CommonProfile; + +/** + * Handles parsing the header tokens when using the Pac4J Header client + */ +@AllArgsConstructor +public class ShibuiPac4JHeaderClientAuthenticator implements Authenticator { + private UserService userService; + + @Override + public void validate(Credentials credentials, WebContext context) { + { + if (credentials instanceof TokenCredentials) { + TokenCredentials creds = (TokenCredentials) credentials; + String token = creds.getToken(); + if (StringUtils.isAllBlank(token)) { + throw new CredentialsException("Supplied token value in header was missing or blank"); + } + } else { + throw new CredentialsException("Invalid Credentials object generated by HeaderClient"); + } + final CommonProfile profile = new CommonProfile(); + String token = ((TokenCredentials) credentials).getToken(); + profile.setId(token); + profile.addAttribute("username", token); + profile.setRoles(userService.getUserRoles(token)); + credentials.setUserProfile(profile); + } + } +} \ No newline at end of file diff --git a/pac4j-module/src/main/java/net/unicon/shibui/pac4j/authenticator/ShibuiSAML2Authenticator.java b/pac4j-module/src/main/java/net/unicon/shibui/pac4j/authenticator/ShibuiSAML2Authenticator.java new file mode 100644 index 000000000..c5eb8f18b --- /dev/null +++ b/pac4j-module/src/main/java/net/unicon/shibui/pac4j/authenticator/ShibuiSAML2Authenticator.java @@ -0,0 +1,32 @@ +package net.unicon.shibui.pac4j.authenticator; + +import edu.internet2.tier.shibboleth.admin.ui.security.service.UserService; +import lombok.AllArgsConstructor; +import org.pac4j.core.context.WebContext; +import org.pac4j.core.profile.CommonProfile; +import org.pac4j.saml.credentials.SAML2Credentials; +import org.pac4j.saml.credentials.authenticator.SAML2Authenticator; + +import java.util.Map; + +public class ShibuiSAML2Authenticator extends SAML2Authenticator { + private final UserService userService; + + public ShibuiSAML2Authenticator(final String attributeAsId, final Map mappedAttributes, UserService userService) { + super(attributeAsId, mappedAttributes); + this.userService = userService; + } + + /** + * After setting up the information for the user from the SAML, add user roles from the DB if they exist + * @param credentials + * @param context + */ + @Override + public void validate(final SAML2Credentials credentials, final WebContext context) { + super.validate(credentials, context); + CommonProfile profile = credentials.getUserProfile(); + profile.setRoles(userService.getUserRoles(profile.getUsername())); + credentials.setUserProfile(profile); + } +} \ No newline at end of file diff --git a/pac4j-module/src/main/resources/application.yml b/pac4j-module/src/main/resources/application.yml index 4dd28dc1f..ef1c5ee68 100644 --- a/pac4j-module/src/main/resources/application.yml +++ b/pac4j-module/src/main/resources/application.yml @@ -6,4 +6,30 @@ shibui: firstName: givenName lastName: sn email: mail - groups: urn:oid:1.3.6.1.4.1.5923.1.5.1.1 # attributeId - isMemberOf \ No newline at end of file + groups: urn:oid:1.3.6.1.4.1.5923.1.5.1.1 # attributeId - isMemberOf + roles: + +#shibui: +## Default password must be set for the default user to be configured and setup +# default-rootuser:root +## need to include the encoding for the password - be sure to quote the entire value as shown +# default-password: "{noop}foopassword" +# pac4j-enabled: true +# pac4j: +# keystorePath: "/etc/shibui/samlKeystore.jks" +# keystorePassword: "changeit" +# privateKeyPassword: "changeit" +# serviceProviderEntityId: "https://idp.example.com/shibui" +# serviceProviderMetadataPath: "/etc/shibui/sp-metadata.xml" +# identityProviderMetadataPath: "/etc/shibui/idp-metadata.xml" +# forceServiceProviderMetadataGeneration: false +# callbackUrl: "https://localhost:8443/callback" +# maximumAuthenticationLifetime: 3600000 +# requireAssertedRoleForNewUsers: false #default +# saml2ProfileMapping: +# username: urn:oid:0.9.2342.19200300.100.1.1 +# firstname: urn:oid:2.5.4.42 +# lastname: urn:oid:2.5.4.4 +# email: urn:oid:0.9.2342.19200300.100.1.3 +# groups: urn:oid:1.3.6.1.4.1.5923.1.5.1.1 # attributeId - isMemberOf +# roles: --define name of the attribute containing the incoming user roles-- \ No newline at end of file diff --git a/pac4j-module/src/test/groovy/net/unicon/shibui/pac4j/AddNewUserFilterMockTests.groovy b/pac4j-module/src/test/groovy/net/unicon/shibui/pac4j/AddNewUserFilterMockTests.groovy index f39a8b988..5c1e7450a 100644 --- a/pac4j-module/src/test/groovy/net/unicon/shibui/pac4j/AddNewUserFilterMockTests.groovy +++ b/pac4j-module/src/test/groovy/net/unicon/shibui/pac4j/AddNewUserFilterMockTests.groovy @@ -4,6 +4,7 @@ import edu.internet2.tier.shibboleth.admin.ui.security.model.Role import edu.internet2.tier.shibboleth.admin.ui.security.model.User import edu.internet2.tier.shibboleth.admin.ui.security.repository.RoleRepository import edu.internet2.tier.shibboleth.admin.ui.security.service.IGroupService +import edu.internet2.tier.shibboleth.admin.ui.security.service.RolesServiceImpl import edu.internet2.tier.shibboleth.admin.ui.security.service.UserService import edu.internet2.tier.shibboleth.admin.ui.service.EmailService import org.pac4j.core.matching.PathMatcher @@ -28,58 +29,42 @@ import javax.servlet.http.HttpServletResponse @EnableConfigurationProperties([Pac4jConfigurationProperties]) class AddNewUserFilterMockTests extends Specification { - UserService userService = Mock() - RoleRepository roleRepository = Mock() + @Subject + AddNewUserFilter addNewUserFilter + + @Autowired + Pac4jConfigurationProperties pac4jConfigurationProperties + + Authentication authentication = Mock() + FilterChain chain = Mock() EmailService emailService = Mock() IGroupService groupService = Mock() - HttpServletRequest request = Mock() HttpServletResponse response = Mock() - FilterChain chain = Mock() - - SecurityContext securityContext = Mock() - Authentication authentication = Mock() + RoleRepository roleRepository = Mock() SAML2Profile saml2Profile = Mock() - - @Autowired - Pac4jConfigurationProperties pac4jConfigurationProperties + SecurityContext securityContext = Mock() + UserService userService = Mock() Pac4jConfigurationProperties.SimpleProfileMapping profileMapping - @Subject - AddNewUserFilter addNewUserFilter - def setup() { SecurityContextHolder.setContext(securityContext) securityContext.getAuthentication() >> authentication authentication.getPrincipal() >> saml2Profile - addNewUserFilter = new AddNewUserFilter(pac4jConfigurationProperties, userService, roleRepository, new PathMatcher(), groupService, Optional.of(emailService)) - profileMapping = pac4jConfigurationProperties.simpleProfileMapping - } - - def "new users are redirected"() { - given: - ['Username': 'newUser', - 'FirstName': 'New', - 'LastName': 'User', - 'Email': 'newuser@institution.edu'].each { key, value -> - saml2Profile.getAttribute(profileMapping."get${key}"()) >> [value] + RolesServiceImpl roleService = new RolesServiceImpl().with { + it.roleRepository = roleRepository + it } - saml2Profile.getUsername() >> "newUser" - userService.findByUsername('newUser') >> Optional.empty() - roleRepository.findByName('ROLE_NONE') >> Optional.of(new Role('ROLE_NONE')) - - when: - addNewUserFilter.doFilter(request, response, chain) - then: - 0 * roleRepository.save(_) - 1 * userService.save(_ as User) >> { User user -> user } - 1 * emailService.sendNewUserMail('newUser') - 1 * response.sendRedirect("/unsecured/error.html") + addNewUserFilter = new AddNewUserFilter(pac4jConfigurationProperties, userService, roleService, new PathMatcher(), groupService, Optional.of(emailService)) + profileMapping = pac4jConfigurationProperties.simpleProfileMapping } + // Checked in AddNewUserFilterTests + // def "new users are redirected"() + def "existing users are not redirected"() { given: saml2Profile.getUsername() >> "existingUser" diff --git a/pac4j-module/src/test/groovy/net/unicon/shibui/pac4j/AddNewUserFilterTests.groovy b/pac4j-module/src/test/groovy/net/unicon/shibui/pac4j/AddNewUserFilterTests.groovy index a7c63e1a0..26fe665fd 100644 --- a/pac4j-module/src/test/groovy/net/unicon/shibui/pac4j/AddNewUserFilterTests.groovy +++ b/pac4j-module/src/test/groovy/net/unicon/shibui/pac4j/AddNewUserFilterTests.groovy @@ -6,6 +6,8 @@ import edu.internet2.tier.shibboleth.admin.ui.security.repository.OwnershipRepos import edu.internet2.tier.shibboleth.admin.ui.security.repository.RoleRepository import edu.internet2.tier.shibboleth.admin.ui.security.repository.UserRepository import edu.internet2.tier.shibboleth.admin.ui.security.service.GroupServiceForTesting +import edu.internet2.tier.shibboleth.admin.ui.security.service.IRolesService +import edu.internet2.tier.shibboleth.admin.ui.security.service.RolesServiceImpl import edu.internet2.tier.shibboleth.admin.ui.security.service.UserService import org.pac4j.core.matching.PathMatcher import org.pac4j.saml.profile.SAML2Profile @@ -46,6 +48,9 @@ class AddNewUserFilterTests extends Specification { @Autowired RoleRepository roleRepository + @Autowired + RolesServiceImpl roleService + @Autowired Pac4jConfigurationProperties pac4jConfigurationProperties @@ -71,7 +76,7 @@ class AddNewUserFilterTests extends Specification { securityContext.getAuthentication() >> authentication authentication.getPrincipal() >> saml2Profile - addNewUserFilter = new AddNewUserFilter(pac4jConfigurationProperties, userService, roleRepository, new PathMatcher(), groupService, Optional.empty()) + addNewUserFilter = new AddNewUserFilter(pac4jConfigurationProperties, userService, roleService , new PathMatcher(), groupService, Optional.empty()) profileMapping = pac4jConfigurationProperties.simpleProfileMapping userRepository.findAll().forEach { diff --git a/pac4j-module/src/test/groovy/net/unicon/shibui/pac4j/Pac4JTestingConfig.groovy b/pac4j-module/src/test/groovy/net/unicon/shibui/pac4j/Pac4JTestingConfig.groovy index 552aaca04..c2eb94ca7 100644 --- a/pac4j-module/src/test/groovy/net/unicon/shibui/pac4j/Pac4JTestingConfig.groovy +++ b/pac4j-module/src/test/groovy/net/unicon/shibui/pac4j/Pac4JTestingConfig.groovy @@ -9,6 +9,7 @@ import edu.internet2.tier.shibboleth.admin.ui.security.repository.UserRepository import edu.internet2.tier.shibboleth.admin.ui.security.service.GroupServiceForTesting import edu.internet2.tier.shibboleth.admin.ui.security.service.GroupServiceImpl import edu.internet2.tier.shibboleth.admin.ui.security.service.IGroupService +import edu.internet2.tier.shibboleth.admin.ui.security.service.RolesServiceImpl import edu.internet2.tier.shibboleth.admin.ui.security.service.UserService import org.springframework.context.annotation.Bean import org.springframework.context.annotation.Configuration @@ -49,4 +50,12 @@ class Pac4JTestingConfig { UserService userService(IGroupService groupService, OwnershipRepository ownershipRepository, RoleRepository roleRepository, UserRepository userRepository) { return new UserService(groupService, ownershipRepository, roleRepository, userRepository) } + + @Bean + RolesServiceImpl rolesServiceImpl(RoleRepository roleRepository) { + new RolesServiceImpl().with { + it.roleRepository = roleRepository + it + } + } } \ No newline at end of file diff --git a/testbed/authentication/.env b/testbed/authentication/.env new file mode 100644 index 000000000..cda3f6268 --- /dev/null +++ b/testbed/authentication/.env @@ -0,0 +1 @@ +COMPOSE_PROJECT_NAME=shibui-test diff --git a/testbed/authentication/README.md b/testbed/authentication/README.md new file mode 100644 index 000000000..bf787dc8f --- /dev/null +++ b/testbed/authentication/README.md @@ -0,0 +1,10 @@ +1. add the following to `/etc/hosts`: + + ``` + 127.0.0.1 logs.unicon.local grouper-ui.unicon.local grouper-ws.unicon.local idp.unicon.local sp.unicon.local test-app.unicon.local cas.unicon.local shibui.unicon.local mailhog.unicon.local + 127.0.0.1 mq.unicon.local + ``` + +2. `docker compose up -d` to start, `docker compose logs -f` to follow logs. + +3. Access [https://shibui.unicon.local]. You'll need to accept the self signed certificate diff --git a/testbed/authentication/directory/certs/ca.crt b/testbed/authentication/directory/certs/ca.crt deleted file mode 100644 index 158140b15..000000000 --- a/testbed/authentication/directory/certs/ca.crt +++ /dev/null @@ -1,18 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIC0zCCAlmgAwIBAgIUCfQ+m0pgZ/BjYAJvxrn/bdGNZokwCgYIKoZIzj0EAwMw -gZYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxBMUEgQ2FyIFdhc2gxJDAiBgNVBAsT -G0luZm9ybWF0aW9uIFRlY2hub2xvZ3kgRGVwLjEUMBIGA1UEBxMLQWxidXF1ZXJx -dWUxEzARBgNVBAgTCk5ldyBNZXhpY28xHzAdBgNVBAMTFmRvY2tlci1saWdodC1i -YXNlaW1hZ2UwHhcNMTUxMjIzMTM1MzAwWhcNMjAxMjIxMTM1MzAwWjCBljELMAkG -A1UEBhMCVVMxFTATBgNVBAoTDEExQSBDYXIgV2FzaDEkMCIGA1UECxMbSW5mb3Jt -YXRpb24gVGVjaG5vbG9neSBEZXAuMRQwEgYDVQQHEwtBbGJ1cXVlcnF1ZTETMBEG -A1UECBMKTmV3IE1leGljbzEfMB0GA1UEAxMWZG9ja2VyLWxpZ2h0LWJhc2VpbWFn -ZTB2MBAGByqGSM49AgEGBSuBBAAiA2IABMZf/12pupAgl8Sm+j8GmjNeNbSFAZWW -oTmIvf2Mu4LWPHy4bTldkQgHUbBpT3xWz8f0lB/ru7596CHsGoL2A28hxuclq5hb -Ux1yrIt3bJIY3TuiX25HGTe6kGCJPB1aLaNmMGQwDgYDVR0PAQH/BAQDAgEGMBIG -A1UdEwEB/wQIMAYBAf8CAQIwHQYDVR0OBBYEFE+l6XolXDAYnGLTl4W6ULKHrm74 -MB8GA1UdIwQYMBaAFE+l6XolXDAYnGLTl4W6ULKHrm74MAoGCCqGSM49BAMDA2gA -MGUCMQCXLZj8okyxW6UTL7hribUUbu63PbjuwIXnwi420DdNsvA9A7fcQEXScWFL -XAGC8rkCMGcqwXZPSRfwuI9r+R11gTrP92hnaVxs9sjRikctpkQpOyNlIXFPopFK -8FdfWPypvA== ------END CERTIFICATE----- \ No newline at end of file diff --git a/testbed/authentication/directory/certs/dhparam.pem b/testbed/authentication/directory/certs/dhparam.pem deleted file mode 100644 index 73b8c1e61..000000000 --- a/testbed/authentication/directory/certs/dhparam.pem +++ /dev/null @@ -1,8 +0,0 @@ ------BEGIN DH PARAMETERS----- -MIIBCAKCAQEA7adhygsX/CvbcQBlSEKBmm0D0+hVfIttcftyFTuDPNok4yDJUBUF -zzc7X/i3PUMzANhShBrngBaXbOhVk3QcjMC623TPhFmILx0r236+aQEUGnlwN73M -RUFM6EblYgH4+E4nv+JLwzHdO72+qMAd92rtzVMiaDlCWghH6wdAFoasTsT6Posc -F5T8WCkzFAZeVhNGRKPP6k3l2BjvRJzkwYMMJrxaIYznMEK6H5CYIqZcpeAB3d2B -NaZXLxFCemLrSS16UHrH1modEe8yjrOaE5+ZesGAA9onsNRZkAJp0x/pRaO/+rHn -Q5QVCQCzxY16UsLzH0q/P80xPMU7BMoocwIBAg== ------END DH PARAMETERS----- diff --git a/testbed/authentication/directory/certs/ldap.crt b/testbed/authentication/directory/certs/ldap.crt deleted file mode 100644 index 1e6c74550..000000000 --- a/testbed/authentication/directory/certs/ldap.crt +++ /dev/null @@ -1,18 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIC+DCCAn2gAwIBAgIUUjr8VSD3Ze+xx2wTk+B7wb2AMhEwCgYIKoZIzj0EAwMw -gZYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxBMUEgQ2FyIFdhc2gxJDAiBgNVBAsT -G0luZm9ybWF0aW9uIFRlY2hub2xvZ3kgRGVwLjEUMBIGA1UEBxMLQWxidXF1ZXJx -dWUxEzARBgNVBAgTCk5ldyBNZXhpY28xHzAdBgNVBAMTFmRvY2tlci1saWdodC1i -YXNlaW1hZ2UwHhcNMjAwOTE0MjAzODAwWhcNMjEwOTE0MjAzODAwWjCBiTELMAkG -A1UEBhMCVVMxEzARBgNVBAgTCk5ldyBNZXhpY28xFDASBgNVBAcTC0FsYnVxdWVy -cXVlMRUwEwYDVQQKEwxBMUEgQ2FyIFdhc2gxJDAiBgNVBAsTG0luZm9ybWF0aW9u -IFRlY2hub2xvZ3kgRGVwLjESMBAGA1UEAxMJZGlyZWN0b3J5MHYwEAYHKoZIzj0C -AQYFK4EEACIDYgAES273bAjfhMOi5t6arQFMA80plxRnNx299spxYjVLxABp0JCZ -fNxwCOxVCB1uBeHUAeUNgrh7bl5DL9rn5jEFfNUvLufU0VGzvcbsUqmKw+vGJtc/ -7zm1WytGncb2Ldc4o4GWMIGTMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggr -BgEFBQcDAQYIKwYBBQUHAwIwDAYDVR0TAQH/BAIwADAdBgNVHQ4EFgQUhEBnUCZo -fZHO7R/hUHUgxEJgOOcwHwYDVR0jBBgwFoAUT6XpeiVcMBicYtOXhbpQsoeubvgw -FAYDVR0RBA0wC4IJZGlyZWN0b3J5MAoGCCqGSM49BAMDA2kAMGYCMQCOY/jUx+qB -kRQtDA+UF++/gI22HP8CVKrOA+9/xd68sowhlOoOK0MG22gc6gWVcicCMQCyRw8Z -ydB2NE11uJFrUOu2NYZnFwiYzCrTBuJccUYn/HROMdGFnxqvWfkU5lpQptY= ------END CERTIFICATE----- diff --git a/testbed/authentication/directory/certs/ldap.key b/testbed/authentication/directory/certs/ldap.key deleted file mode 100644 index 4c8d1130d..000000000 --- a/testbed/authentication/directory/certs/ldap.key +++ /dev/null @@ -1,6 +0,0 @@ ------BEGIN EC PRIVATE KEY----- -MIGkAgEBBDBXf/9AHrnYIt5+nudUpJ9wUb4zg15/ixrAUzZ2kj8uBf+qJBakq5hO -/V5/BV8AKAygBwYFK4EEACKhZANiAARLbvdsCN+Ew6Lm3pqtAUwDzSmXFGc3Hb32 -ynFiNUvEAGnQkJl83HAI7FUIHW4F4dQB5Q2CuHtuXkMv2ufmMQV81S8u59TRUbO9 -xuxSqYrD68Ym1z/vObVbK0adxvYt1zg= ------END EC PRIVATE KEY----- diff --git a/testbed/authentication/docker-compose.yml b/testbed/authentication/docker-compose.yml index 89881119f..884042c4a 100644 --- a/testbed/authentication/docker-compose.yml +++ b/testbed/authentication/docker-compose.yml @@ -20,18 +20,19 @@ services: - "8080:8080" - "443:443" - "8443:8443" +# - "8000:8000" volumes: - /var/run/docker.sock:/var/run/docker.sock - - ./reverse-proxy/:/configuration/ - - ./reverse-proxy/certs/:/certs/ + - ../reverse-proxy/:/configuration/ + - ../reverse-proxy/certs/:/certs/ directory: - build: ./directory + build: ../directory networks: - idp volumes: - directory_data:/var/lib/ldap - directory_config:/etc/ldap/slapd.d - - ./directory/certs:/container/service/slapd/assets/certs + - ../directory/certs:/container/service/slapd/assets/certs environment: LDAP_BASE_DN: "dc=unicon,dc=local" LDAP_DOMAIN: "unicon.local" @@ -52,7 +53,7 @@ services: - reverse-proxy - idp volumes: - - ./directory/certs/ca.crt:/opt/shibboleth-idp/credentials/ldap-server.crt + - ../directory/certs/ca.crt:/opt/shibboleth-idp/credentials/ldap-server.crt - ./shibboleth-idp/metadata/dynamic:/opt/shibboleth-idp/metadata/dynamic healthcheck: disable: true @@ -69,6 +70,9 @@ services: volumes: - ./shibui:/conf - ./shibui/application.yml:/application.yml + ports: + - "8000:8000" + entrypoint: ["/usr/bin/java", "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:8000", "-jar", "app.war"] networks: reverse-proxy: idp: @@ -76,4 +80,4 @@ volumes: directory_data: driver: local directory_config: - driver: local + driver: local \ No newline at end of file diff --git a/testbed/authentication/reverse-proxy/.gitkeep b/testbed/authentication/reverse-proxy/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/testbed/authentication/reverse-proxy/certs/.gitkeep b/testbed/authentication/reverse-proxy/certs/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/testbed/authentication/shibboleth-idp/config/shib-idp/conf/attribute-filter.xml b/testbed/authentication/shibboleth-idp/config/shib-idp/conf/attribute-filter.xml index d4d57250a..c394b76d3 100644 --- a/testbed/authentication/shibboleth-idp/config/shib-idp/conf/attribute-filter.xml +++ b/testbed/authentication/shibboleth-idp/config/shib-idp/conf/attribute-filter.xml @@ -129,6 +129,12 @@ + + + + + + diff --git a/testbed/authentication/shibboleth-idp/config/shib-idp/conf/attribute-resolver.xml b/testbed/authentication/shibboleth-idp/config/shib-idp/conf/attribute-resolver.xml index 135b4bc53..68ba7b6fe 100644 --- a/testbed/authentication/shibboleth-idp/config/shib-idp/conf/attribute-resolver.xml +++ b/testbed/authentication/shibboleth-idp/config/shib-idp/conf/attribute-resolver.xml @@ -124,6 +124,10 @@ + + + + diff --git a/testbed/authentication/shibboleth-idp/config/shib-idp/conf/attributes/inetOrgPerson.xml b/testbed/authentication/shibboleth-idp/config/shib-idp/conf/attributes/inetOrgPerson.xml new file mode 100644 index 000000000..65a422b92 --- /dev/null +++ b/testbed/authentication/shibboleth-idp/config/shib-idp/conf/attributes/inetOrgPerson.xml @@ -0,0 +1,523 @@ + + + + + + + + + + + + + cn + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:2.5.4.3 + urn:mace:dir:attribute-def:cn + Common name + Common name of a person + + + + + + + + departmentNumber + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:2.16.840.1.113730.3.1.2 + urn:mace:dir:attribute-def:departmentNumber + Department number + Abteilungsnummer + Department number + Nummer der Abteilung + + + + + + + + displayName + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:2.16.840.1.113730.3.1.241 + urn:mace:dir:attribute-def:displayName + Display name + Anzeigename + Nom + Nome + 表示名 + The name that should appear in white-pages-like applications for this person. + Anzeigename + Nom complet d'affichage + Nome + アプリケーションでの表示に用いられる英字氏名 + + + + + + + + employeeNumber + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:2.16.840.1.113730.3.1.3 + urn:mace:dir:attribute-def:employeeNumber + Employee number + Mitarbeiternummer + Numéro d'employé + Numero dell'utente + 従業員番号 + Identifies an employee within an organization + Identifiziert einen Mitarbeiter innerhalb der Organisation + Identifie un employé au sein de l'organisation + Identifica l' utente presso l'organizzazione + 所属機関における利用者の従業員番号 + + + + + + + + employeeType + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:2.16.840.1.113730.3.1.4 + urn:mace:dir:attribute-def:employeeType + Employee type + Employee type + + + + + + + + givenName + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:2.5.4.42 + urn:mace:dir:attribute-def:givenName + Given name + Vorname + Prénom + Nome + + Given name of a person + Vorname + Prénom de l'utilisateur + Nome + 氏名(名)の英語表記 + + + + + + + + homePhone + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:0.9.2342.19200300.100.1.20 + urn:mace:dir:attribute-def:homePhone + Private phone number + Telefon Privat + Teléphone personnel + Numero di telefono privato + 自宅電話番号 + Private phone number + Private Telefonnummer + Numéro de téléphone de domicile de la personne + Numero di telefono privato + 自宅の電話番号 + + + + + + + + homePostalAddress + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:0.9.2342.19200300.100.1.39 + urn:mace:dir:attribute-def:homePostalAddress + Home postal address + Heimatadresse + Heimadresse + Adresse personnelle + Indirizzo personale + 自宅住所 + Home postal address: Home address of the user + Heimatadresse + Heimadresse + Adresse postale de domicile de la personne + Indirizzo personale: indirizzo dove abita l'utente + 自宅の住所 + + + + + + + + initials + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:2.5.4.43 + urn:mace:dir:attribute-def:initials + Initials + Initialen + Initiales + イニシャル + Initials + Anfangsbuchstaben des Namens + Die Anfangsbuchstaben + L' initiales + イニシャル + + + + + + + + l + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:2.5.4.7 + urn:mace:dir:attribute-def:l + Locality name + Ort + Locality name + 場所(L) + Locality name + Ort + Nom de la localité où réside l'objet + 場所の名前 日本の場合は市区町村名 + + + + + + + + mail + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:0.9.2342.19200300.100.1.3 + urn:mace:dir:attribute-def:mail + E-mail + E-Mail + Email + E-mail + メールアドレス + E-Mail: Preferred address for e-mail to be sent to this person + E-Mail-Adresse + E-Mail Adresse + Adresse de courrier électronique + E-Mail: l'indirizzo e-mail preferito dall'utente + メールアドレス + + + + + + + + mobile + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:0.9.2342.19200300.100.1.41 + urn:mace:dir:attribute-def:mobile + Mobile phone number + Telefon Mobil + Numéro de mobile + Numero di cellulare + 携帯電話番号 + Mobile phone number + Mobile Telefonnummer + Numéro de teléphone mobile + Numero di cellulare + 携帯電話の電話番号 + + + + + + + + o + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:2.5.4.10 + urn:mace:dir:attribute-def:o + Organization name + Organisationsname + Nom de l'organisation + 所属機関名 + Organization name + Name der Organisation + Nom de l'organisation + 所属機関名称の英語表記 + + + + + + + + ou + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:2.5.4.11 + urn:mace:dir:attribute-def:ou + Organizational unit + Organisationseinheit + Unité organisationnelle + 機関内所属名 + Organizational unit + Name der Organisationseinheit + Nom de l'unité organisationnelle + 機関内所属名称の英語表記 + + + + + + + + pager + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:0.9.2342.19200300.100.1.42 + urn:mace:dir:attribute-def:pager + Pager number + Pager number + + + + + + + + postalAddress + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:2.5.4.16 + urn:mace:dir:attribute-def:postalAddress + Business postal address + Geschäftsadresse + Adresse professionnelle + Indirizzo professionale + 所属機関住所 + Business postal address: Campus or office address + Geschäftliche Adresse + Adresse am Arbeitsplatz + Adresse de l'institut, de l'université + Indirizzo professionale: indirizzo dell'istituto o dell'ufficio + 所属機関の住所 + + + + + + + + postalCode + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:2.5.4.17 + urn:mace:dir:attribute-def:postalCode + Postal code + ZIP code + Postleitzahl + Code postal + 郵便番号 + Postal code + ZIP code + Postleitzahl + Code postal + 郵便番号 + + + + + + + + postOfficeBox + SAML2StringTranscoder SAML1StringTranscoder + urn:mace:dir:attribute-def:postOfficeBox + urn:oid:2.5.4.18 + Postal box + Postfach + Boite postale + Case postale + 私書箱 + Postal box identifier + Postfach + Boite postale + Case postale + 私書箱 + + + + + + + + preferredLanguage + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:2.16.840.1.113730.3.1.39 + urn:mace:dir:attribute-def:preferredLanguage + Preferred Language + Bevorzugte Sprache + Langue préférée + Lingua preferita + 希望言語 + Preferred language: Users preferred language (see RFC1766) + Bevorzugte Sprache (siehe RFC1766) + Exemple: fr, de, it, en, ... (voir RFC1766) + Lingua preferita: la lingua preferita dall'utente (cfr. RFC1766) + 利用者が希望する言語(RFC1766 を参照) + + + + + + + + sn + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:2.5.4.4 + urn:mace:dir:attribute-def:sn + Surname + Nachname + Nom de famille + Cognome + + Surname or family name + Familienname + Nom de famille de l'utilisateur. + Cognome dell'utilizzatore + 氏名(姓)の英語表記 + + + + + + + + st + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:2.5.4.8 + urn:mace:dir:attribute-def:st + State or province name + 都道府県もしくは州や省(ST) + State or province name + 州名や省名 国によって異なり日本の場合は都道府県名 + + + + + + + + street + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:2.5.4.9 + urn:mace:dir:attribute-def:street + Street + Straße + Strasse + Rue + 通り + Street address + Name der Straße + Strassenadresse + Nom de rue + 通りおよび番地 + + + + + + + + + telephoneNumber + SAML2StringTranscoder SAML1StringTranscoder + urn:mace:dir:attribute-def:telephoneNumber + urn:oid:2.5.4.20 + Business phone number + Telefon Geschäft + Teléphone professionnel + Numero di telefono dell'ufficio + 所属機関内電話番号 + Business phone number: Office or campus phone number + Telefonnummer am Arbeitsplatz + Teléphone de l'institut, de l'université + Numero di telefono dell'ufficio + 所属機関での利用者の電話番号 + + + + + + + + title + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:2.5.4.12 + urn:mace:dir:attribute-def:title + Title + Titel + Title + 肩書き + Title of a person + Titel der Person + Titre de la personne + 利用者の肩書き + + + + + + + + uid + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:0.9.2342.19200300.100.1.1 + urn:mace:dir:attribute-def:uid + User ID + Benutzer-ID + ID utilisateur + ID dell'utente + ユーザID + A unique identifier for a person, mainly used for user identification within the user's home organization. + Eine eindeutige Nummer für eine Person, welche hauptsächlich zur Identifikation innerhalb der Organisation benutzt wird. + Identifiant de connexion d'une personnes sur les systèmes informatiques. + Identificativo unico della persona, usato per l'identificazione dell'utente all'interno della organizzazione di appartenenza. + 所属機関内で一意の利用者識別子 + + + + + + + + businessCategory + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:2.5.4.15 + urn:mace:dir:attribute-def:businessCategory + Business Category + Business Category + + + + + + + + + diff --git a/testbed/authentication/shibui/application.yml b/testbed/authentication/shibui/application.yml index c8e9ef8cc..14085a9b7 100644 --- a/testbed/authentication/shibui/application.yml +++ b/testbed/authentication/shibui/application.yml @@ -6,7 +6,7 @@ spring: include: shibui: user-bootstrap-resource: file:/conf/users.csv - roles: ROLE_ADMIN,ROLE_NONE,ROLE_USER,ROLE_PONY + roles: ROLE_ADMIN,ROLE_NONE,ROLE_USER,ROLE_ENABLE,ROLE_PONY pac4j-enabled: true pac4j: keystorePath: "/conf/samlKeystore.jks" @@ -23,3 +23,5 @@ shibui: firstName: urn:oid:2.5.4.42 lastName: urn:oid:2.5.4.4 email: urn:oid:0.9.2342.19200300.100.1.3 + groups: urn:oid:2.5.4.15 # businessCategory + roles: urn:oid:1.3.6.1.4.1.5923.1.1.1.7 # eduPersonEntitlement \ No newline at end of file diff --git a/testbed/authentication/directory/001_eduperson.ldif b/testbed/directory/001_eduperson.ldif similarity index 100% rename from testbed/authentication/directory/001_eduperson.ldif rename to testbed/directory/001_eduperson.ldif diff --git a/testbed/authentication/directory/999_users.ldif b/testbed/directory/999_users.ldif similarity index 91% rename from testbed/authentication/directory/999_users.ldif rename to testbed/directory/999_users.ldif index 2beedb37f..a3086787d 100644 --- a/testbed/authentication/directory/999_users.ldif +++ b/testbed/directory/999_users.ldif @@ -46,10 +46,11 @@ givenName: Karl cn: Karl White uid: kwhite mail: kwhite@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student +eduPersonEntitlement: ROLE_ADMIN dn: uid=whenderson,ou=People,dc=unicon,dc=local objectClass: organizationalPerson @@ -62,9 +63,10 @@ givenName: William cn: William Henderson uid: whenderson mail: whenderson@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community +eduPersonEntitlement: ROLE_USER dn: uid=ddavis,ou=People,dc=unicon,dc=local objectClass: organizationalPerson @@ -77,7 +79,7 @@ givenName: David cn: David Davis uid: ddavis mail: ddavis@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff @@ -92,7 +94,7 @@ givenName: Colin cn: Colin Morrison uid: cmorrison mail: cmorrison@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member eduPersonAffiliation: faculty @@ -108,7 +110,7 @@ givenName: Donna cn: Donna Anderson uid: danderson mail: danderson@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -123,7 +125,7 @@ givenName: Ann cn: Ann Morrison uid: amorrison mail: amorrison@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -139,7 +141,7 @@ givenName: William cn: William Price uid: wprice mail: wprice@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -154,7 +156,7 @@ givenName: Marie cn: Marie Roberts uid: mroberts mail: mroberts@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -170,7 +172,7 @@ givenName: Kiersten cn: Kiersten Johnson uid: kjohnson mail: kjohnson@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty @@ -185,7 +187,7 @@ givenName: James cn: James Brown uid: jbrown mail: jbrown@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: staff @@ -201,7 +203,7 @@ givenName: Ann cn: Ann Gasper uid: agasper mail: agasper@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -217,7 +219,7 @@ givenName: Jennifer cn: Jennifer Scott uid: jscott mail: jscott@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -233,7 +235,7 @@ givenName: Betty cn: Betty Butler uid: bbutler mail: bbutler@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -249,7 +251,7 @@ givenName: Thomas cn: Thomas Morrison uid: tmorrison mail: tmorrison@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -265,7 +267,7 @@ givenName: Jennifer cn: Jennifer Brown uid: jbrown14 mail: jbrown14@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member eduPersonAffiliation: staff @@ -281,7 +283,7 @@ givenName: Greg cn: Greg Johnson uid: gjohnson mail: gjohnson@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: community eduPersonAffiliation: alum @@ -297,7 +299,7 @@ givenName: Robert cn: Robert Martinez uid: rmartinez mail: rmartinez@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -313,7 +315,7 @@ givenName: Jo cn: Jo Lewis uid: jlewis mail: jlewis@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -329,7 +331,7 @@ givenName: Mary cn: Mary Gasper uid: mgasper mail: mgasper@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty @@ -344,7 +346,7 @@ givenName: Karoline cn: Karoline Vales uid: kvales mail: kvales@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -360,7 +362,7 @@ givenName: Thomas cn: Thomas Grady uid: tgrady mail: tgrady@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: alum @@ -375,7 +377,7 @@ givenName: Kiersten cn: Kiersten Morrison uid: kmorrison mail: kmorrison@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -391,7 +393,7 @@ givenName: David cn: David Grady uid: dgrady mail: dgrady@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community @@ -406,7 +408,7 @@ givenName: Mary cn: Mary Thompson uid: mthompson mail: mthompson@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -422,7 +424,7 @@ givenName: Bill cn: Bill Gasper uid: bgasper mail: bgasper@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum @@ -437,7 +439,7 @@ givenName: David cn: David Lopez uid: dlopez mail: dlopez@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -453,7 +455,7 @@ givenName: Heather cn: Heather White uid: hwhite mail: hwhite@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: staff @@ -468,7 +470,7 @@ givenName: Donna cn: Donna Davis uid: ddavis27 mail: ddavis27@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: community @@ -484,7 +486,7 @@ givenName: Bill cn: Bill Gasper uid: bgasper28 mail: bgasper28@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty @@ -499,7 +501,7 @@ givenName: Jennifer cn: Jennifer Johnson uid: jjohnson mail: jjohnson@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -515,7 +517,7 @@ givenName: Ann cn: Ann Morrison uid: amorrison30 mail: amorrison30@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum @@ -530,7 +532,7 @@ givenName: Karl cn: Karl Martinez uid: kmartinez mail: kmartinez@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student @@ -545,7 +547,7 @@ givenName: Ann cn: Ann Henderson uid: ahenderson mail: ahenderson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -561,7 +563,7 @@ givenName: Ann cn: Ann Vales uid: avales mail: avales@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -577,7 +579,7 @@ givenName: Greg cn: Greg Gonazles uid: ggonazles mail: ggonazles@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -592,7 +594,7 @@ givenName: Blake cn: Blake Doe uid: bdoe mail: bdoe@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -607,7 +609,7 @@ givenName: Paul cn: Paul Langenberg uid: plangenberg mail: plangenberg@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff @@ -622,7 +624,7 @@ givenName: Greg cn: Greg Vales uid: gvales mail: gvales@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -638,7 +640,7 @@ givenName: Nancy cn: Nancy Henderson uid: nhenderson mail: nhenderson@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member @@ -653,7 +655,7 @@ givenName: William cn: William Thompson uid: wthompson mail: wthompson@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff @@ -668,7 +670,7 @@ givenName: Karl cn: Karl Vales uid: kvales40 mail: kvales40@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community @@ -683,7 +685,7 @@ givenName: Bill cn: Bill Lee uid: blee mail: blee@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -699,7 +701,7 @@ givenName: Marie cn: Marie Lee uid: mlee mail: mlee@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff @@ -714,7 +716,7 @@ givenName: Kiersten cn: Kiersten Clark uid: kclark mail: kclark@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff @@ -729,7 +731,7 @@ givenName: William cn: William Scott uid: wscott mail: wscott@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -744,7 +746,7 @@ givenName: Donna cn: Donna Butler uid: dbutler mail: dbutler@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community @@ -759,7 +761,7 @@ givenName: Ann cn: Ann White uid: awhite mail: awhite@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -775,7 +777,7 @@ givenName: Heather cn: Heather Doe uid: hdoe mail: hdoe@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community eduPersonAffiliation: alum @@ -791,7 +793,7 @@ givenName: David cn: David Langenberg uid: dlangenberg mail: dlangenberg@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -807,7 +809,7 @@ givenName: Eric cn: Eric Thompson uid: ethompson mail: ethompson@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member @@ -822,7 +824,7 @@ givenName: Jennifer cn: Jennifer Brown uid: jbrown50 mail: jbrown50@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: staff @@ -838,7 +840,7 @@ givenName: Michael cn: Michael Gonazles uid: mgonazles mail: mgonazles@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -854,7 +856,7 @@ givenName: Greg cn: Greg Butler uid: gbutler mail: gbutler@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community eduPersonAffiliation: staff @@ -870,7 +872,7 @@ givenName: Mark cn: Mark Vales uid: mvales mail: mvales@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student @@ -885,7 +887,7 @@ givenName: Michael cn: Michael Lewis uid: mlewis mail: mlewis@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: student @@ -900,7 +902,7 @@ givenName: Heather cn: Heather Vales uid: hvales mail: hvales@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -915,7 +917,7 @@ givenName: Jo cn: Jo Scott uid: jscott56 mail: jscott56@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -931,7 +933,7 @@ givenName: Sarah cn: Sarah Doe uid: sdoe mail: sdoe@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -947,7 +949,7 @@ givenName: Sarah cn: Sarah Vales uid: svales mail: svales@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student @@ -962,7 +964,7 @@ givenName: Heather cn: Heather Morrison uid: hmorrison mail: hmorrison@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -978,7 +980,7 @@ givenName: Jennifer cn: Jennifer Lopez uid: jlopez mail: jlopez@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -994,7 +996,7 @@ givenName: Donna cn: Donna Langenberg uid: dlangenberg61 mail: dlangenberg61@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -1010,7 +1012,7 @@ givenName: Betty cn: Betty Grady uid: bgrady mail: bgrady@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum @@ -1025,7 +1027,7 @@ givenName: Jennifer cn: Jennifer Morrison uid: jmorrison mail: jmorrison@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff @@ -1040,7 +1042,7 @@ givenName: William cn: William Vales uid: wvales mail: wvales@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member @@ -1055,7 +1057,7 @@ givenName: Mark cn: Mark Martinez uid: mmartinez mail: mmartinez@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum @@ -1070,7 +1072,7 @@ givenName: Jennifer cn: Jennifer Martinez uid: jmartinez mail: jmartinez@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -1086,7 +1088,7 @@ givenName: Mary cn: Mary Gasper uid: mgasper67 mail: mgasper67@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff @@ -1101,7 +1103,7 @@ givenName: David cn: David Peterson uid: dpeterson mail: dpeterson@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -1117,7 +1119,7 @@ givenName: Erik cn: Erik Price uid: eprice mail: eprice@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum @@ -1132,7 +1134,7 @@ givenName: James cn: James Gasper uid: jgasper mail: jgasper@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -1148,7 +1150,7 @@ givenName: Jennifer cn: Jennifer Clark uid: jclark mail: jclark@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: member @@ -1164,7 +1166,7 @@ givenName: Betty cn: Betty Peterson uid: bpeterson mail: bpeterson@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -1180,7 +1182,7 @@ givenName: William cn: William Smith uid: wsmith mail: wsmith@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty @@ -1195,7 +1197,7 @@ givenName: Lisa cn: Lisa Williams uid: lwilliams mail: lwilliams@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty @@ -1210,7 +1212,7 @@ givenName: David cn: David Grady uid: dgrady76 mail: dgrady76@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member @@ -1225,7 +1227,7 @@ givenName: Jo cn: Jo Martinez uid: jmartinez77 mail: jmartinez77@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -1241,7 +1243,7 @@ givenName: Donna cn: Donna Lewis uid: dlewis mail: dlewis@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -1257,7 +1259,7 @@ givenName: William cn: William Scott uid: wscott79 mail: wscott79@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -1273,7 +1275,7 @@ givenName: Donna cn: Donna Doe uid: ddoe mail: ddoe@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -1289,7 +1291,7 @@ givenName: Greg cn: Greg Morrison uid: gmorrison mail: gmorrison@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -1305,7 +1307,7 @@ givenName: Kim cn: Kim Henderson uid: khenderson mail: khenderson@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -1321,7 +1323,7 @@ givenName: Karoline cn: Karoline Peterson uid: kpeterson mail: kpeterson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community @@ -1336,7 +1338,7 @@ givenName: Erik cn: Erik Price uid: eprice84 mail: eprice84@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty @@ -1351,7 +1353,7 @@ givenName: Heather cn: Heather Smith uid: hsmith mail: hsmith@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -1367,7 +1369,7 @@ givenName: Donna cn: Donna Williams uid: dwilliams mail: dwilliams@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: staff @@ -1383,7 +1385,7 @@ givenName: Karl cn: Karl Lopez uid: klopez mail: klopez@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: community @@ -1399,7 +1401,7 @@ givenName: William cn: William Johnson uid: wjohnson mail: wjohnson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff @@ -1414,7 +1416,7 @@ givenName: William cn: William Brown uid: wbrown mail: wbrown@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member @@ -1429,7 +1431,7 @@ givenName: Heather cn: Heather Brown uid: hbrown mail: hbrown@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: faculty @@ -1444,7 +1446,7 @@ givenName: Kim cn: Kim Roberts uid: kroberts mail: kroberts@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -1459,7 +1461,7 @@ givenName: Donna cn: Donna Walters uid: dwalters mail: dwalters@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community @@ -1474,7 +1476,7 @@ givenName: Nancy cn: Nancy Lee uid: nlee mail: nlee@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: member @@ -1490,7 +1492,7 @@ givenName: Sarah cn: Sarah Gonazles uid: sgonazles mail: sgonazles@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty @@ -1505,7 +1507,7 @@ givenName: Heather cn: Heather Anderson uid: handerson mail: handerson@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member @@ -1520,7 +1522,7 @@ givenName: David cn: David Anderson uid: danderson96 mail: danderson96@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum @@ -1535,7 +1537,7 @@ givenName: David cn: David Grady uid: dgrady97 mail: dgrady97@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community @@ -1550,7 +1552,7 @@ givenName: James cn: James Grady uid: jgrady mail: jgrady@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student @@ -1565,7 +1567,7 @@ givenName: John cn: John Thompson uid: jthompson mail: jthompson@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -1581,7 +1583,7 @@ givenName: Kiersten cn: Kiersten Thompson uid: kthompson mail: kthompson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -1597,7 +1599,7 @@ givenName: John cn: John Peterson uid: jpeterson mail: jpeterson@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -1613,7 +1615,7 @@ givenName: Lisa cn: Lisa Morrison uid: lmorrison mail: lmorrison@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: staff @@ -1629,7 +1631,7 @@ givenName: Greg cn: Greg Lee uid: glee mail: glee@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -1645,7 +1647,7 @@ givenName: Lori cn: Lori Henderson uid: lhenderson mail: lhenderson@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -1661,7 +1663,7 @@ givenName: Marie cn: Marie Scott uid: mscott mail: mscott@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty @@ -1676,7 +1678,7 @@ givenName: Lori cn: Lori Davis uid: ldavis mail: ldavis@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -1691,7 +1693,7 @@ givenName: James cn: James Roberts uid: jroberts mail: jroberts@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -1707,7 +1709,7 @@ givenName: Ann cn: Ann Smith uid: asmith mail: asmith@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -1723,7 +1725,7 @@ givenName: Mark cn: Mark Brown uid: mbrown mail: mbrown@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community @@ -1738,7 +1740,7 @@ givenName: Kim cn: Kim White uid: kwhite110 mail: kwhite110@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -1754,7 +1756,7 @@ givenName: Mark cn: Mark Roberts uid: mroberts111 mail: mroberts111@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: faculty @@ -1769,7 +1771,7 @@ givenName: Mark cn: Mark White uid: mwhite mail: mwhite@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff @@ -1784,7 +1786,7 @@ givenName: Jim cn: Jim Price uid: jprice mail: jprice@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -1800,7 +1802,7 @@ givenName: Michael cn: Michael Smith uid: msmith mail: msmith@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -1816,7 +1818,7 @@ givenName: Sarah cn: Sarah Clark uid: sclark mail: sclark@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -1832,7 +1834,7 @@ givenName: Donna cn: Donna Vales uid: dvales mail: dvales@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community @@ -1847,7 +1849,7 @@ givenName: Kim cn: Kim Johnson uid: kjohnson117 mail: kjohnson117@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -1863,7 +1865,7 @@ givenName: David cn: David Smith uid: dsmith mail: dsmith@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff @@ -1878,7 +1880,7 @@ givenName: Blake cn: Blake White uid: bwhite mail: bwhite@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: member @@ -1893,7 +1895,7 @@ givenName: Lori cn: Lori Doe uid: ldoe mail: ldoe@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty @@ -1908,7 +1910,7 @@ givenName: David cn: David Langenberg uid: dlangenberg121 mail: dlangenberg121@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community @@ -1923,7 +1925,7 @@ givenName: Greg cn: Greg Williams uid: gwilliams mail: gwilliams@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: faculty @@ -1938,7 +1940,7 @@ givenName: Karoline cn: Karoline Clark uid: kclark123 mail: kclark123@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff @@ -1953,7 +1955,7 @@ givenName: Eric cn: Eric Williams uid: ewilliams mail: ewilliams@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty @@ -1968,7 +1970,7 @@ givenName: Eric cn: Eric Gonazles uid: egonazles mail: egonazles@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum @@ -1983,7 +1985,7 @@ givenName: Robert cn: Robert Price uid: rprice mail: rprice@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student @@ -1998,7 +2000,7 @@ givenName: Erik cn: Erik Walters uid: ewalters mail: ewalters@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -2014,7 +2016,7 @@ givenName: Colin cn: Colin Langenberg uid: clangenberg mail: clangenberg@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum @@ -2029,7 +2031,7 @@ givenName: Colin cn: Colin Morrison uid: cmorrison129 mail: cmorrison129@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: community @@ -2044,7 +2046,7 @@ givenName: Mary cn: Mary Butler uid: mbutler mail: mbutler@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -2060,7 +2062,7 @@ givenName: Sarah cn: Sarah Martinez uid: smartinez mail: smartinez@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -2075,7 +2077,7 @@ givenName: Karl cn: Karl Lewis uid: klewis mail: klewis@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -2091,7 +2093,7 @@ givenName: Marie cn: Marie Williams uid: mwilliams mail: mwilliams@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty @@ -2106,7 +2108,7 @@ givenName: David cn: David Smith uid: dsmith134 mail: dsmith134@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -2121,7 +2123,7 @@ givenName: Greg cn: Greg Peterson uid: gpeterson mail: gpeterson@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -2137,7 +2139,7 @@ givenName: Betty cn: Betty Grady uid: bgrady136 mail: bgrady136@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -2153,7 +2155,7 @@ givenName: Mark cn: Mark Thompson uid: mthompson137 mail: mthompson137@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty @@ -2168,7 +2170,7 @@ givenName: Mary cn: Mary Roberts uid: mroberts138 mail: mroberts138@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: member @@ -2184,7 +2186,7 @@ givenName: James cn: James Anderson uid: janderson mail: janderson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -2200,7 +2202,7 @@ givenName: Jo cn: Jo Scott uid: jscott140 mail: jscott140@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -2216,7 +2218,7 @@ givenName: Donna cn: Donna Davis uid: ddavis141 mail: ddavis141@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -2232,7 +2234,7 @@ givenName: Jennifer cn: Jennifer Butler uid: jbutler mail: jbutler@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -2248,7 +2250,7 @@ givenName: Jo cn: Jo Lewis uid: jlewis143 mail: jlewis143@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member @@ -2263,7 +2265,7 @@ givenName: John cn: John Anderson uid: janderson144 mail: janderson144@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -2279,7 +2281,7 @@ givenName: Marie cn: Marie Langenberg uid: mlangenberg mail: mlangenberg@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: community eduPersonAffiliation: staff @@ -2295,7 +2297,7 @@ givenName: Jennifer cn: Jennifer Thompson uid: jthompson146 mail: jthompson146@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -2311,7 +2313,7 @@ givenName: Heather cn: Heather Vales uid: hvales147 mail: hvales147@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: staff @@ -2326,7 +2328,7 @@ givenName: John cn: John White uid: jwhite mail: jwhite@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff @@ -2341,7 +2343,7 @@ givenName: Thomas cn: Thomas Gasper uid: tgasper mail: tgasper@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -2357,7 +2359,7 @@ givenName: Bill cn: Bill Johnson uid: bjohnson mail: bjohnson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum @@ -2372,7 +2374,7 @@ givenName: Mark cn: Mark Roberts uid: mroberts151 mail: mroberts151@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -2388,7 +2390,7 @@ givenName: William cn: William Thompson uid: wthompson152 mail: wthompson152@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community eduPersonAffiliation: staff @@ -2404,7 +2406,7 @@ givenName: Michael cn: Michael Doe uid: mdoe mail: mdoe@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff @@ -2419,7 +2421,7 @@ givenName: Bill cn: Bill Gonazles uid: bgonazles mail: bgonazles@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -2434,7 +2436,7 @@ givenName: Mark cn: Mark Thompson uid: mthompson155 mail: mthompson155@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community @@ -2449,7 +2451,7 @@ givenName: David cn: David Lee uid: dlee mail: dlee@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -2465,7 +2467,7 @@ givenName: Bill cn: Bill Roberts uid: broberts mail: broberts@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: community @@ -2480,7 +2482,7 @@ givenName: John cn: John Vales uid: jvales mail: jvales@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -2495,7 +2497,7 @@ givenName: William cn: William Williams uid: wwilliams mail: wwilliams@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -2511,7 +2513,7 @@ givenName: William cn: William Williams uid: wwilliams160 mail: wwilliams160@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -2527,7 +2529,7 @@ givenName: Greg cn: Greg Gasper uid: ggasper mail: ggasper@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff @@ -2542,7 +2544,7 @@ givenName: Robert cn: Robert Lopez uid: rlopez mail: rlopez@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -2558,7 +2560,7 @@ givenName: Michael cn: Michael Grady uid: mgrady mail: mgrady@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: alum @@ -2573,7 +2575,7 @@ givenName: Lisa cn: Lisa Peterson uid: lpeterson mail: lpeterson@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -2589,7 +2591,7 @@ givenName: Lori cn: Lori Johnson uid: ljohnson mail: ljohnson@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -2605,7 +2607,7 @@ givenName: Greg cn: Greg Scott uid: gscott mail: gscott@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -2621,7 +2623,7 @@ givenName: Marie cn: Marie Price uid: mprice mail: mprice@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -2636,7 +2638,7 @@ givenName: Bill cn: Bill Price uid: bprice mail: bprice@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -2651,7 +2653,7 @@ givenName: Ann cn: Ann Anderson uid: aanderson mail: aanderson@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -2666,7 +2668,7 @@ givenName: Blake cn: Blake Price uid: bprice170 mail: bprice170@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum @@ -2681,7 +2683,7 @@ givenName: Heather cn: Heather Scott uid: hscott mail: hscott@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -2697,7 +2699,7 @@ givenName: Heather cn: Heather Thompson uid: hthompson mail: hthompson@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -2713,7 +2715,7 @@ givenName: Jo cn: Jo Morrison uid: jmorrison173 mail: jmorrison173@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum @@ -2728,7 +2730,7 @@ givenName: Mary cn: Mary Price uid: mprice174 mail: mprice174@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community @@ -2743,7 +2745,7 @@ givenName: Heather cn: Heather Price uid: hprice mail: hprice@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member @@ -2758,7 +2760,7 @@ givenName: Karoline cn: Karoline Butler uid: kbutler mail: kbutler@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -2773,7 +2775,7 @@ givenName: Blake cn: Blake Johnson uid: bjohnson177 mail: bjohnson177@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -2789,7 +2791,7 @@ givenName: Jennifer cn: Jennifer Lee uid: jlee mail: jlee@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -2805,7 +2807,7 @@ givenName: Robert cn: Robert Williams uid: rwilliams mail: rwilliams@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -2821,7 +2823,7 @@ givenName: Jo cn: Jo Price uid: jprice180 mail: jprice180@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -2836,7 +2838,7 @@ givenName: Kim cn: Kim Gasper uid: kgasper mail: kgasper@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -2852,7 +2854,7 @@ givenName: Colin cn: Colin Thompson uid: cthompson mail: cthompson@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -2868,7 +2870,7 @@ givenName: Eric cn: Eric Thompson uid: ethompson183 mail: ethompson183@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -2884,7 +2886,7 @@ givenName: Betty cn: Betty Clark uid: bclark mail: bclark@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -2900,7 +2902,7 @@ givenName: Lori cn: Lori Lee uid: llee mail: llee@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -2915,7 +2917,7 @@ givenName: Karl cn: Karl Peterson uid: kpeterson186 mail: kpeterson186@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff @@ -2930,7 +2932,7 @@ givenName: William cn: William Lee uid: wlee mail: wlee@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community @@ -2945,7 +2947,7 @@ givenName: Greg cn: Greg Johnson uid: gjohnson188 mail: gjohnson188@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -2961,7 +2963,7 @@ givenName: Michael cn: Michael Lopez uid: mlopez mail: mlopez@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff @@ -2976,7 +2978,7 @@ givenName: Sarah cn: Sarah Grady uid: sgrady mail: sgrady@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty @@ -2991,7 +2993,7 @@ givenName: Paul cn: Paul Brown uid: pbrown mail: pbrown@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -3007,7 +3009,7 @@ givenName: Mary cn: Mary Williams uid: mwilliams192 mail: mwilliams192@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: student @@ -3022,7 +3024,7 @@ givenName: James cn: James Lewis uid: jlewis193 mail: jlewis193@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -3038,7 +3040,7 @@ givenName: Nancy cn: Nancy Brown uid: nbrown mail: nbrown@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -3054,7 +3056,7 @@ givenName: Jo cn: Jo Walters uid: jwalters mail: jwalters@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: staff @@ -3070,7 +3072,7 @@ givenName: Heather cn: Heather Doe uid: hdoe196 mail: hdoe196@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -3086,7 +3088,7 @@ givenName: Michael cn: Michael Lewis uid: mlewis197 mail: mlewis197@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum @@ -3101,7 +3103,7 @@ givenName: Bill cn: Bill Lewis uid: blewis mail: blewis@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff @@ -3116,7 +3118,7 @@ givenName: Michael cn: Michael Walters uid: mwalters mail: mwalters@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -3132,7 +3134,7 @@ givenName: Lisa cn: Lisa Lopez uid: llopez mail: llopez@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: community @@ -3147,7 +3149,7 @@ givenName: James cn: James Walters uid: jwalters201 mail: jwalters201@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -3163,7 +3165,7 @@ givenName: Karoline cn: Karoline Morrison uid: kmorrison202 mail: kmorrison202@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -3179,7 +3181,7 @@ givenName: Bill cn: Bill Grady uid: bgrady203 mail: bgrady203@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff @@ -3194,7 +3196,7 @@ givenName: Colin cn: Colin Lewis uid: clewis mail: clewis@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty @@ -3209,7 +3211,7 @@ givenName: Heather cn: Heather White uid: hwhite205 mail: hwhite205@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -3225,7 +3227,7 @@ givenName: David cn: David Price uid: dprice mail: dprice@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -3241,7 +3243,7 @@ givenName: John cn: John Lee uid: jlee207 mail: jlee207@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community @@ -3256,7 +3258,7 @@ givenName: John cn: John Butler uid: jbutler208 mail: jbutler208@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member @@ -3271,7 +3273,7 @@ givenName: Betty cn: Betty Davis uid: bdavis mail: bdavis@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum @@ -3286,7 +3288,7 @@ givenName: Jennifer cn: Jennifer Roberts uid: jroberts210 mail: jroberts210@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -3301,7 +3303,7 @@ givenName: Greg cn: Greg Johnson uid: gjohnson211 mail: gjohnson211@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member @@ -3316,7 +3318,7 @@ givenName: Jennifer cn: Jennifer Langenberg uid: jlangenberg mail: jlangenberg@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -3332,7 +3334,7 @@ givenName: Donna cn: Donna Henderson uid: dhenderson mail: dhenderson@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -3348,7 +3350,7 @@ givenName: Paul cn: Paul Martinez uid: pmartinez mail: pmartinez@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -3364,7 +3366,7 @@ givenName: Greg cn: Greg Anderson uid: ganderson mail: ganderson@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: member @@ -3380,7 +3382,7 @@ givenName: Mary cn: Mary Peterson uid: mpeterson mail: mpeterson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -3396,7 +3398,7 @@ givenName: Karoline cn: Karoline Lopez uid: klopez217 mail: klopez217@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member @@ -3411,7 +3413,7 @@ givenName: Thomas cn: Thomas Gasper uid: tgasper218 mail: tgasper218@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: alum @@ -3426,7 +3428,7 @@ givenName: Lori cn: Lori Smith uid: lsmith mail: lsmith@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member @@ -3441,7 +3443,7 @@ givenName: Eric cn: Eric Butler uid: ebutler mail: ebutler@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -3457,7 +3459,7 @@ givenName: Jim cn: Jim Vales uid: jvales221 mail: jvales221@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -3473,7 +3475,7 @@ givenName: James cn: James Vales uid: jvales222 mail: jvales222@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community @@ -3488,7 +3490,7 @@ givenName: Karoline cn: Karoline Johnson uid: kjohnson223 mail: kjohnson223@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -3504,7 +3506,7 @@ givenName: Kiersten cn: Kiersten Scott uid: kscott mail: kscott@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community @@ -3519,7 +3521,7 @@ givenName: David cn: David Williams uid: dwilliams225 mail: dwilliams225@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -3535,7 +3537,7 @@ givenName: Betty cn: Betty Clark uid: bclark226 mail: bclark226@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member eduPersonAffiliation: faculty @@ -3551,7 +3553,7 @@ givenName: Marie cn: Marie White uid: mwhite227 mail: mwhite227@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -3566,7 +3568,7 @@ givenName: David cn: David Anderson uid: danderson228 mail: danderson228@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff @@ -3581,7 +3583,7 @@ givenName: David cn: David Grady uid: dgrady229 mail: dgrady229@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -3597,7 +3599,7 @@ givenName: James cn: James Grady uid: jgrady230 mail: jgrady230@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -3612,7 +3614,7 @@ givenName: James cn: James Doe uid: jdoe mail: jdoe@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -3627,7 +3629,7 @@ givenName: David cn: David Morrison uid: dmorrison mail: dmorrison@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community @@ -3642,7 +3644,7 @@ givenName: Marie cn: Marie Clark uid: mclark mail: mclark@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -3658,7 +3660,7 @@ givenName: Paul cn: Paul Lopez uid: plopez mail: plopez@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum @@ -3673,7 +3675,7 @@ givenName: Heather cn: Heather Lewis uid: hlewis mail: hlewis@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty @@ -3688,7 +3690,7 @@ givenName: David cn: David Smith uid: dsmith236 mail: dsmith236@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member @@ -3703,7 +3705,7 @@ givenName: Kiersten cn: Kiersten Butler uid: kbutler237 mail: kbutler237@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -3719,7 +3721,7 @@ givenName: Kim cn: Kim Davis uid: kdavis mail: kdavis@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -3735,7 +3737,7 @@ givenName: Kiersten cn: Kiersten Doe uid: kdoe mail: kdoe@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: member @@ -3751,7 +3753,7 @@ givenName: Karl cn: Karl Grady uid: kgrady mail: kgrady@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member @@ -3766,7 +3768,7 @@ givenName: James cn: James Price uid: jprice241 mail: jprice241@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff @@ -3781,7 +3783,7 @@ givenName: Sarah cn: Sarah Henderson uid: shenderson mail: shenderson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community @@ -3796,7 +3798,7 @@ givenName: Kiersten cn: Kiersten Morrison uid: kmorrison243 mail: kmorrison243@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -3812,7 +3814,7 @@ givenName: Mark cn: Mark Gonazles uid: mgonazles244 mail: mgonazles244@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -3828,7 +3830,7 @@ givenName: Ann cn: Ann Lewis uid: alewis mail: alewis@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -3844,7 +3846,7 @@ givenName: Michael cn: Michael Davis uid: mdavis mail: mdavis@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -3860,7 +3862,7 @@ givenName: Marie cn: Marie Anderson uid: manderson mail: manderson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff @@ -3875,7 +3877,7 @@ givenName: Blake cn: Blake Morrison uid: bmorrison mail: bmorrison@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -3891,7 +3893,7 @@ givenName: Marie cn: Marie Smith uid: msmith249 mail: msmith249@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: member @@ -3907,7 +3909,7 @@ givenName: James cn: James Doe uid: jdoe250 mail: jdoe250@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty @@ -3922,7 +3924,7 @@ givenName: James cn: James Gasper uid: jgasper251 mail: jgasper251@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -3938,7 +3940,7 @@ givenName: Jo cn: Jo Scott uid: jscott252 mail: jscott252@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -3954,7 +3956,7 @@ givenName: Karoline cn: Karoline White uid: kwhite253 mail: kwhite253@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: faculty @@ -3969,7 +3971,7 @@ givenName: William cn: William Brown uid: wbrown254 mail: wbrown254@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: faculty @@ -3984,7 +3986,7 @@ givenName: Mark cn: Mark Peterson uid: mpeterson255 mail: mpeterson255@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -4000,7 +4002,7 @@ givenName: Kiersten cn: Kiersten Thompson uid: kthompson256 mail: kthompson256@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -4016,7 +4018,7 @@ givenName: Jo cn: Jo Scott uid: jscott257 mail: jscott257@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -4032,7 +4034,7 @@ givenName: Mary cn: Mary Langenberg uid: mlangenberg258 mail: mlangenberg258@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -4048,7 +4050,7 @@ givenName: Karoline cn: Karoline Henderson uid: khenderson259 mail: khenderson259@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member @@ -4063,7 +4065,7 @@ givenName: Heather cn: Heather Butler uid: hbutler mail: hbutler@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -4079,7 +4081,7 @@ givenName: Marie cn: Marie Butler uid: mbutler261 mail: mbutler261@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty @@ -4094,7 +4096,7 @@ givenName: Jennifer cn: Jennifer Morrison uid: jmorrison262 mail: jmorrison262@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member @@ -4109,7 +4111,7 @@ givenName: Robert cn: Robert Davis uid: rdavis mail: rdavis@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -4125,7 +4127,7 @@ givenName: Kim cn: Kim Butler uid: kbutler264 mail: kbutler264@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: student @@ -4140,7 +4142,7 @@ givenName: James cn: James White uid: jwhite265 mail: jwhite265@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -4156,7 +4158,7 @@ givenName: James cn: James Williams uid: jwilliams mail: jwilliams@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -4172,7 +4174,7 @@ givenName: Lisa cn: Lisa Langenberg uid: llangenberg mail: llangenberg@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty @@ -4187,7 +4189,7 @@ givenName: John cn: John Henderson uid: jhenderson mail: jhenderson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -4203,7 +4205,7 @@ givenName: Jennifer cn: Jennifer Langenberg uid: jlangenberg269 mail: jlangenberg269@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member @@ -4218,7 +4220,7 @@ givenName: Michael cn: Michael Doe uid: mdoe270 mail: mdoe270@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -4234,7 +4236,7 @@ givenName: Mark cn: Mark Brown uid: mbrown271 mail: mbrown271@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: staff @@ -4249,7 +4251,7 @@ givenName: John cn: John Vales uid: jvales272 mail: jvales272@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -4265,7 +4267,7 @@ givenName: Thomas cn: Thomas Davis uid: tdavis mail: tdavis@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -4281,7 +4283,7 @@ givenName: Eric cn: Eric Johnson uid: ejohnson mail: ejohnson@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -4296,7 +4298,7 @@ givenName: John cn: John Peterson uid: jpeterson275 mail: jpeterson275@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -4312,7 +4314,7 @@ givenName: Greg cn: Greg Smith uid: gsmith mail: gsmith@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -4328,7 +4330,7 @@ givenName: Kim cn: Kim Lopez uid: klopez278 mail: klopez278@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: staff @@ -4344,7 +4346,7 @@ givenName: Sarah cn: Sarah Clark uid: sclark279 mail: sclark279@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: community eduPersonAffiliation: alum @@ -4360,7 +4362,7 @@ givenName: Ann cn: Ann Brown uid: abrown mail: abrown@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -4375,7 +4377,7 @@ givenName: Jim cn: Jim White uid: jwhite281 mail: jwhite281@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student @@ -4390,7 +4392,7 @@ givenName: Heather cn: Heather Grady uid: hgrady mail: hgrady@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -4406,7 +4408,7 @@ givenName: Kim cn: Kim White uid: kwhite283 mail: kwhite283@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -4422,7 +4424,7 @@ givenName: Betty cn: Betty Smith uid: bsmith mail: bsmith@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -4438,7 +4440,7 @@ givenName: Eric cn: Eric Lopez uid: elopez mail: elopez@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -4454,7 +4456,7 @@ givenName: Paul cn: Paul Clark uid: pclark mail: pclark@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -4469,7 +4471,7 @@ givenName: Greg cn: Greg Lee uid: glee287 mail: glee287@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student @@ -4484,7 +4486,7 @@ givenName: Jennifer cn: Jennifer White uid: jwhite288 mail: jwhite288@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: faculty @@ -4500,7 +4502,7 @@ givenName: Robert cn: Robert Davis uid: rdavis289 mail: rdavis289@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -4516,7 +4518,7 @@ givenName: James cn: James Gasper uid: jgasper290 mail: jgasper290@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum @@ -4531,7 +4533,7 @@ givenName: Nancy cn: Nancy White uid: nwhite mail: nwhite@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -4547,7 +4549,7 @@ givenName: Kiersten cn: Kiersten Peterson uid: kpeterson292 mail: kpeterson292@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member @@ -4562,7 +4564,7 @@ givenName: Kiersten cn: Kiersten Lewis uid: klewis293 mail: klewis293@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -4578,7 +4580,7 @@ givenName: John cn: John Vales uid: jvales294 mail: jvales294@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -4594,7 +4596,7 @@ givenName: Robert cn: Robert Doe uid: rdoe mail: rdoe@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community eduPersonAffiliation: alum @@ -4610,7 +4612,7 @@ givenName: Blake cn: Blake Brown uid: bbrown mail: bbrown@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -4625,7 +4627,7 @@ givenName: Mark cn: Mark Langenberg uid: mlangenberg297 mail: mlangenberg297@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: community @@ -4641,7 +4643,7 @@ givenName: Bill cn: Bill Roberts uid: broberts298 mail: broberts298@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -4657,7 +4659,7 @@ givenName: Lori cn: Lori Doe uid: ldoe299 mail: ldoe299@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -4673,7 +4675,7 @@ givenName: Greg cn: Greg Gasper uid: ggasper300 mail: ggasper300@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student @@ -4688,7 +4690,7 @@ givenName: Lori cn: Lori Roberts uid: lroberts mail: lroberts@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: staff @@ -4703,7 +4705,7 @@ givenName: Kiersten cn: Kiersten White uid: kwhite302 mail: kwhite302@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member @@ -4718,7 +4720,7 @@ givenName: David cn: David Williams uid: dwilliams303 mail: dwilliams303@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -4734,7 +4736,7 @@ givenName: Bill cn: Bill Peterson uid: bpeterson304 mail: bpeterson304@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member @@ -4749,7 +4751,7 @@ givenName: Sarah cn: Sarah Walters uid: swalters mail: swalters@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff @@ -4764,7 +4766,7 @@ givenName: Eric cn: Eric Davis uid: edavis mail: edavis@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty @@ -4779,7 +4781,7 @@ givenName: Blake cn: Blake Thompson uid: bthompson mail: bthompson@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -4795,7 +4797,7 @@ givenName: Sarah cn: Sarah Langenberg uid: slangenberg mail: slangenberg@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -4811,7 +4813,7 @@ givenName: Donna cn: Donna Williams uid: dwilliams309 mail: dwilliams309@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: community @@ -4827,7 +4829,7 @@ givenName: Colin cn: Colin Peterson uid: cpeterson mail: cpeterson@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -4843,7 +4845,7 @@ givenName: Mary cn: Mary Lee uid: mlee311 mail: mlee311@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -4858,7 +4860,7 @@ givenName: Eric cn: Eric Lopez uid: elopez312 mail: elopez312@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -4874,7 +4876,7 @@ givenName: Paul cn: Paul Martinez uid: pmartinez313 mail: pmartinez313@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -4890,7 +4892,7 @@ givenName: Lisa cn: Lisa Williams uid: lwilliams314 mail: lwilliams314@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member eduPersonAffiliation: staff @@ -4906,7 +4908,7 @@ givenName: Kiersten cn: Kiersten Peterson uid: kpeterson315 mail: kpeterson315@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -4922,7 +4924,7 @@ givenName: Kiersten cn: Kiersten Vales uid: kvales316 mail: kvales316@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -4937,7 +4939,7 @@ givenName: Heather cn: Heather Butler uid: hbutler317 mail: hbutler317@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -4953,7 +4955,7 @@ givenName: John cn: John Walters uid: jwalters318 mail: jwalters318@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community eduPersonAffiliation: staff @@ -4969,7 +4971,7 @@ givenName: Kiersten cn: Kiersten Thompson uid: kthompson319 mail: kthompson319@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -4984,7 +4986,7 @@ givenName: Mary cn: Mary Scott uid: mscott320 mail: mscott320@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community @@ -4999,7 +5001,7 @@ givenName: Robert cn: Robert Butler uid: rbutler mail: rbutler@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community eduPersonAffiliation: staff @@ -5015,7 +5017,7 @@ givenName: Mark cn: Mark Clark uid: mclark322 mail: mclark322@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -5031,7 +5033,7 @@ givenName: Heather cn: Heather Henderson uid: hhenderson mail: hhenderson@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: member @@ -5047,7 +5049,7 @@ givenName: Heather cn: Heather Doe uid: hdoe324 mail: hdoe324@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff @@ -5062,7 +5064,7 @@ givenName: Mark cn: Mark Doe uid: mdoe325 mail: mdoe325@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff @@ -5077,7 +5079,7 @@ givenName: Kiersten cn: Kiersten Lopez uid: klopez326 mail: klopez326@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum @@ -5092,7 +5094,7 @@ givenName: David cn: David Lewis uid: dlewis327 mail: dlewis327@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member eduPersonAffiliation: faculty @@ -5108,7 +5110,7 @@ givenName: William cn: William Lee uid: wlee328 mail: wlee328@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: community @@ -5123,7 +5125,7 @@ givenName: Mary cn: Mary Thompson uid: mthompson329 mail: mthompson329@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: alum @@ -5138,7 +5140,7 @@ givenName: Greg cn: Greg Brown uid: gbrown mail: gbrown@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum @@ -5153,7 +5155,7 @@ givenName: Robert cn: Robert Martinez uid: rmartinez331 mail: rmartinez331@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member @@ -5168,7 +5170,7 @@ givenName: Karl cn: Karl Lee uid: klee mail: klee@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community @@ -5183,7 +5185,7 @@ givenName: Marie cn: Marie Johnson uid: mjohnson mail: mjohnson@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: faculty @@ -5198,7 +5200,7 @@ givenName: Lisa cn: Lisa Williams uid: lwilliams334 mail: lwilliams334@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff @@ -5213,7 +5215,7 @@ givenName: Thomas cn: Thomas Brown uid: tbrown mail: tbrown@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -5229,7 +5231,7 @@ givenName: James cn: James Walters uid: jwalters336 mail: jwalters336@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum @@ -5244,7 +5246,7 @@ givenName: Lisa cn: Lisa Butler uid: lbutler mail: lbutler@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: student @@ -5259,7 +5261,7 @@ givenName: Kiersten cn: Kiersten Brown uid: kbrown mail: kbrown@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -5275,7 +5277,7 @@ givenName: Paul cn: Paul Johnson uid: pjohnson mail: pjohnson@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum @@ -5290,7 +5292,7 @@ givenName: John cn: John Price uid: jprice340 mail: jprice340@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -5306,7 +5308,7 @@ givenName: Jim cn: Jim Price uid: jprice341 mail: jprice341@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -5322,7 +5324,7 @@ givenName: Lisa cn: Lisa Henderson uid: lhenderson342 mail: lhenderson342@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -5338,7 +5340,7 @@ givenName: Kim cn: Kim White uid: kwhite343 mail: kwhite343@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -5353,7 +5355,7 @@ givenName: Karl cn: Karl Lopez uid: klopez344 mail: klopez344@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty @@ -5368,7 +5370,7 @@ givenName: Bill cn: Bill Gonazles uid: bgonazles345 mail: bgonazles345@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -5384,7 +5386,7 @@ givenName: Ann cn: Ann Peterson uid: apeterson mail: apeterson@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member @@ -5399,7 +5401,7 @@ givenName: David cn: David Butler uid: dbutler347 mail: dbutler347@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty @@ -5414,7 +5416,7 @@ givenName: Sarah cn: Sarah Peterson uid: speterson mail: speterson@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -5430,7 +5432,7 @@ givenName: James cn: James Peterson uid: jpeterson349 mail: jpeterson349@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: student @@ -5445,7 +5447,7 @@ givenName: Greg cn: Greg Johnson uid: gjohnson350 mail: gjohnson350@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum @@ -5460,7 +5462,7 @@ givenName: Lisa cn: Lisa Thompson uid: lthompson mail: lthompson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff @@ -5475,7 +5477,7 @@ givenName: Nancy cn: Nancy Clark uid: nclark mail: nclark@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -5490,7 +5492,7 @@ givenName: Sarah cn: Sarah Williams uid: swilliams mail: swilliams@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -5506,7 +5508,7 @@ givenName: Jennifer cn: Jennifer Price uid: jprice354 mail: jprice354@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty @@ -5521,7 +5523,7 @@ givenName: Lori cn: Lori Clark uid: lclark mail: lclark@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty @@ -5536,7 +5538,7 @@ givenName: Greg cn: Greg Henderson uid: ghenderson mail: ghenderson@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: student @@ -5551,7 +5553,7 @@ givenName: Eric cn: Eric Gonazles uid: egonazles357 mail: egonazles357@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student @@ -5566,7 +5568,7 @@ givenName: Donna cn: Donna Langenberg uid: dlangenberg358 mail: dlangenberg358@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: staff @@ -5582,7 +5584,7 @@ givenName: Colin cn: Colin Brown uid: cbrown mail: cbrown@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student @@ -5597,7 +5599,7 @@ givenName: Thomas cn: Thomas Walters uid: twalters mail: twalters@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum @@ -5612,7 +5614,7 @@ givenName: Sarah cn: Sarah White uid: swhite mail: swhite@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -5627,7 +5629,7 @@ givenName: Robert cn: Robert Walters uid: rwalters mail: rwalters@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -5642,7 +5644,7 @@ givenName: Erik cn: Erik Roberts uid: eroberts mail: eroberts@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty @@ -5657,7 +5659,7 @@ givenName: Blake cn: Blake Vales uid: bvales mail: bvales@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member @@ -5672,7 +5674,7 @@ givenName: Betty cn: Betty Doe uid: bdoe365 mail: bdoe365@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -5688,7 +5690,7 @@ givenName: Nancy cn: Nancy Lee uid: nlee366 mail: nlee366@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -5703,7 +5705,7 @@ givenName: Thomas cn: Thomas Morrison uid: tmorrison367 mail: tmorrison367@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student @@ -5718,7 +5720,7 @@ givenName: Kiersten cn: Kiersten Butler uid: kbutler368 mail: kbutler368@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -5734,7 +5736,7 @@ givenName: Bill cn: Bill Davis uid: bdavis369 mail: bdavis369@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty @@ -5749,7 +5751,7 @@ givenName: Kiersten cn: Kiersten Davis uid: kdavis370 mail: kdavis370@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -5765,7 +5767,7 @@ givenName: Lori cn: Lori Lewis uid: llewis mail: llewis@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -5780,7 +5782,7 @@ givenName: Donna cn: Donna Johnson uid: djohnson mail: djohnson@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -5796,7 +5798,7 @@ givenName: James cn: James Langenberg uid: jlangenberg373 mail: jlangenberg373@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -5812,7 +5814,7 @@ givenName: Karoline cn: Karoline Langenberg uid: klangenberg mail: klangenberg@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff @@ -5827,7 +5829,7 @@ givenName: John cn: John Thompson uid: jthompson375 mail: jthompson375@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community eduPersonAffiliation: alum @@ -5843,7 +5845,7 @@ givenName: Jennifer cn: Jennifer Gonazles uid: jgonazles mail: jgonazles@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -5859,7 +5861,7 @@ givenName: Mark cn: Mark Scott uid: mscott377 mail: mscott377@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -5875,7 +5877,7 @@ givenName: Jennifer cn: Jennifer Smith uid: jsmith378 mail: jsmith378@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community @@ -5890,7 +5892,7 @@ givenName: Marie cn: Marie Roberts uid: mroberts379 mail: mroberts379@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -5906,7 +5908,7 @@ givenName: Kiersten cn: Kiersten Price uid: kprice mail: kprice@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -5922,7 +5924,7 @@ givenName: Thomas cn: Thomas Clark uid: tclark mail: tclark@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -5938,7 +5940,7 @@ givenName: Erik cn: Erik Gasper uid: egasper mail: egasper@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -5954,7 +5956,7 @@ givenName: James cn: James Johnson uid: jjohnson383 mail: jjohnson383@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty @@ -5969,7 +5971,7 @@ givenName: Colin cn: Colin Davis uid: cdavis mail: cdavis@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -5985,7 +5987,7 @@ givenName: Eric cn: Eric Scott uid: escott mail: escott@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -6001,7 +6003,7 @@ givenName: Karoline cn: Karoline Martinez uid: kmartinez386 mail: kmartinez386@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -6016,7 +6018,7 @@ givenName: Lori cn: Lori Grady uid: lgrady mail: lgrady@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student @@ -6031,7 +6033,7 @@ givenName: Jo cn: Jo Martinez uid: jmartinez388 mail: jmartinez388@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty @@ -6046,7 +6048,7 @@ givenName: Ann cn: Ann Langenberg uid: alangenberg mail: alangenberg@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff @@ -6061,7 +6063,7 @@ givenName: Betty cn: Betty Lewis uid: blewis390 mail: blewis390@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member @@ -6076,7 +6078,7 @@ givenName: Paul cn: Paul Johnson uid: pjohnson391 mail: pjohnson391@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member @@ -6091,7 +6093,7 @@ givenName: Lori cn: Lori Lee uid: llee392 mail: llee392@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: community eduPersonAffiliation: staff @@ -6107,7 +6109,7 @@ givenName: Sarah cn: Sarah Lewis uid: slewis mail: slewis@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -6123,7 +6125,7 @@ givenName: Nancy cn: Nancy Walters uid: nwalters mail: nwalters@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member @@ -6138,7 +6140,7 @@ givenName: Heather cn: Heather Scott uid: hscott395 mail: hscott395@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: community @@ -6154,7 +6156,7 @@ givenName: Erik cn: Erik Davis uid: edavis396 mail: edavis396@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -6170,7 +6172,7 @@ givenName: Donna cn: Donna Langenberg uid: dlangenberg397 mail: dlangenberg397@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -6186,7 +6188,7 @@ givenName: Paul cn: Paul Langenberg uid: plangenberg398 mail: plangenberg398@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -6202,7 +6204,7 @@ givenName: Michael cn: Michael Scott uid: mscott399 mail: mscott399@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: member @@ -6218,7 +6220,7 @@ givenName: Jo cn: Jo Gasper uid: jgasper400 mail: jgasper400@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: community eduPersonAffiliation: staff @@ -6234,7 +6236,7 @@ givenName: Karoline cn: Karoline Martinez uid: kmartinez401 mail: kmartinez401@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -6250,7 +6252,7 @@ givenName: Colin cn: Colin Walters uid: cwalters mail: cwalters@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -6266,7 +6268,7 @@ givenName: Colin cn: Colin Gasper uid: cgasper mail: cgasper@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -6282,7 +6284,7 @@ givenName: James cn: James Williams uid: jwilliams404 mail: jwilliams404@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -6298,7 +6300,7 @@ givenName: Robert cn: Robert Walters uid: rwalters405 mail: rwalters405@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -6314,7 +6316,7 @@ givenName: Karl cn: Karl Vales uid: kvales406 mail: kvales406@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member @@ -6329,7 +6331,7 @@ givenName: Bill cn: Bill Scott uid: bscott mail: bscott@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community eduPersonAffiliation: alum @@ -6345,7 +6347,7 @@ givenName: Heather cn: Heather Morrison uid: hmorrison408 mail: hmorrison408@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student @@ -6360,7 +6362,7 @@ givenName: Eric cn: Eric Anderson uid: eanderson mail: eanderson@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -6376,7 +6378,7 @@ givenName: Mark cn: Mark Langenberg uid: mlangenberg410 mail: mlangenberg410@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member @@ -6391,7 +6393,7 @@ givenName: Mark cn: Mark Smith uid: msmith411 mail: msmith411@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -6407,7 +6409,7 @@ givenName: William cn: William Peterson uid: wpeterson mail: wpeterson@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -6423,7 +6425,7 @@ givenName: Marie cn: Marie Gasper uid: mgasper413 mail: mgasper413@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty @@ -6438,7 +6440,7 @@ givenName: Blake cn: Blake Vales uid: bvales414 mail: bvales414@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -6454,7 +6456,7 @@ givenName: Blake cn: Blake Grady uid: bgrady415 mail: bgrady415@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -6470,7 +6472,7 @@ givenName: Paul cn: Paul Lee uid: plee mail: plee@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community @@ -6485,7 +6487,7 @@ givenName: Kim cn: Kim Williams uid: kwilliams mail: kwilliams@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -6500,7 +6502,7 @@ givenName: William cn: William Williams uid: wwilliams418 mail: wwilliams418@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community @@ -6515,7 +6517,7 @@ givenName: Jennifer cn: Jennifer Butler uid: jbutler419 mail: jbutler419@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff @@ -6530,7 +6532,7 @@ givenName: Heather cn: Heather Vales uid: hvales420 mail: hvales420@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -6546,7 +6548,7 @@ givenName: Karl cn: Karl Roberts uid: kroberts421 mail: kroberts421@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student @@ -6561,7 +6563,7 @@ givenName: Betty cn: Betty Doe uid: bdoe422 mail: bdoe422@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -6577,7 +6579,7 @@ givenName: David cn: David Clark uid: dclark mail: dclark@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: member @@ -6592,7 +6594,7 @@ givenName: Michael cn: Michael Henderson uid: mhenderson mail: mhenderson@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -6608,7 +6610,7 @@ givenName: David cn: David Henderson uid: dhenderson425 mail: dhenderson425@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -6624,7 +6626,7 @@ givenName: David cn: David Gonazles uid: dgonazles mail: dgonazles@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -6640,7 +6642,7 @@ givenName: David cn: David Grady uid: dgrady427 mail: dgrady427@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community @@ -6655,7 +6657,7 @@ givenName: Jennifer cn: Jennifer Johnson uid: jjohnson428 mail: jjohnson428@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -6671,7 +6673,7 @@ givenName: Jennifer cn: Jennifer Lewis uid: jlewis429 mail: jlewis429@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: community @@ -6687,7 +6689,7 @@ givenName: Kim cn: Kim Langenberg uid: klangenberg430 mail: klangenberg430@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -6702,7 +6704,7 @@ givenName: David cn: David Doe uid: ddoe431 mail: ddoe431@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: member @@ -6717,7 +6719,7 @@ givenName: Eric cn: Eric Scott uid: escott432 mail: escott432@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -6733,7 +6735,7 @@ givenName: Lisa cn: Lisa Walters uid: lwalters mail: lwalters@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member @@ -6748,7 +6750,7 @@ givenName: Greg cn: Greg Smith uid: gsmith434 mail: gsmith434@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -6764,7 +6766,7 @@ givenName: Karl cn: Karl Walters uid: kwalters mail: kwalters@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -6780,7 +6782,7 @@ givenName: Thomas cn: Thomas Morrison uid: tmorrison436 mail: tmorrison436@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -6796,7 +6798,7 @@ givenName: Bill cn: Bill Butler uid: bbutler437 mail: bbutler437@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -6812,7 +6814,7 @@ givenName: Mark cn: Mark Gonazles uid: mgonazles438 mail: mgonazles438@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -6828,7 +6830,7 @@ givenName: Robert cn: Robert Walters uid: rwalters439 mail: rwalters439@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum @@ -6843,7 +6845,7 @@ givenName: Karl cn: Karl Clark uid: kclark440 mail: kclark440@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: staff @@ -6858,7 +6860,7 @@ givenName: Nancy cn: Nancy Vales uid: nvales mail: nvales@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -6874,7 +6876,7 @@ givenName: James cn: James Walters uid: jwalters442 mail: jwalters442@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community @@ -6889,7 +6891,7 @@ givenName: Bill cn: Bill Williams uid: bwilliams mail: bwilliams@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: student @@ -6904,7 +6906,7 @@ givenName: Jim cn: Jim Grady uid: jgrady444 mail: jgrady444@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -6920,7 +6922,7 @@ givenName: Erik cn: Erik Scott uid: escott445 mail: escott445@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -6936,7 +6938,7 @@ givenName: Bill cn: Bill Clark uid: bclark446 mail: bclark446@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -6952,7 +6954,7 @@ givenName: Kiersten cn: Kiersten Lopez uid: klopez447 mail: klopez447@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty @@ -6967,7 +6969,7 @@ givenName: Sarah cn: Sarah Lee uid: slee mail: slee@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -6983,7 +6985,7 @@ givenName: Donna cn: Donna Williams uid: dwilliams449 mail: dwilliams449@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -6999,7 +7001,7 @@ givenName: Kim cn: Kim Lewis uid: klewis450 mail: klewis450@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -7015,7 +7017,7 @@ givenName: Eric cn: Eric Langenberg uid: elangenberg mail: elangenberg@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff @@ -7030,7 +7032,7 @@ givenName: Robert cn: Robert Vales uid: rvales mail: rvales@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -7046,7 +7048,7 @@ givenName: Jo cn: Jo Gasper uid: jgasper453 mail: jgasper453@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -7062,7 +7064,7 @@ givenName: Mark cn: Mark Gasper uid: mgasper454 mail: mgasper454@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -7078,7 +7080,7 @@ givenName: James cn: James Clark uid: jclark455 mail: jclark455@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -7093,7 +7095,7 @@ givenName: Betty cn: Betty Gasper uid: bgasper456 mail: bgasper456@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -7109,7 +7111,7 @@ givenName: Blake cn: Blake Williams uid: bwilliams457 mail: bwilliams457@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -7125,7 +7127,7 @@ givenName: Karl cn: Karl Price uid: kprice458 mail: kprice458@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -7141,7 +7143,7 @@ givenName: Kiersten cn: Kiersten Smith uid: ksmith mail: ksmith@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -7156,7 +7158,7 @@ givenName: Lori cn: Lori Butler uid: lbutler460 mail: lbutler460@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student @@ -7171,7 +7173,7 @@ givenName: Mark cn: Mark Lewis uid: mlewis461 mail: mlewis461@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: member @@ -7186,7 +7188,7 @@ givenName: Jo cn: Jo Morrison uid: jmorrison462 mail: jmorrison462@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: staff @@ -7202,7 +7204,7 @@ givenName: Mary cn: Mary Smith uid: msmith463 mail: msmith463@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -7218,7 +7220,7 @@ givenName: Blake cn: Blake Lopez uid: blopez mail: blopez@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community @@ -7233,7 +7235,7 @@ givenName: Heather cn: Heather Davis uid: hdavis mail: hdavis@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -7249,7 +7251,7 @@ givenName: Betty cn: Betty Williams uid: bwilliams466 mail: bwilliams466@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum @@ -7264,7 +7266,7 @@ givenName: Greg cn: Greg Davis uid: gdavis mail: gdavis@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty @@ -7279,7 +7281,7 @@ givenName: Michael cn: Michael Gonazles uid: mgonazles468 mail: mgonazles468@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student @@ -7294,7 +7296,7 @@ givenName: Mary cn: Mary Lopez uid: mlopez469 mail: mlopez469@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member @@ -7309,7 +7311,7 @@ givenName: Eric cn: Eric Roberts uid: eroberts470 mail: eroberts470@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -7325,7 +7327,7 @@ givenName: Blake cn: Blake Smith uid: bsmith471 mail: bsmith471@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -7341,7 +7343,7 @@ givenName: Robert cn: Robert Williams uid: rwilliams472 mail: rwilliams472@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -7357,7 +7359,7 @@ givenName: Jennifer cn: Jennifer Davis uid: jdavis mail: jdavis@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff @@ -7372,7 +7374,7 @@ givenName: Erik cn: Erik Grady uid: egrady mail: egrady@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -7387,7 +7389,7 @@ givenName: Donna cn: Donna Peterson uid: dpeterson475 mail: dpeterson475@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff @@ -7402,7 +7404,7 @@ givenName: Lisa cn: Lisa Williams uid: lwilliams476 mail: lwilliams476@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: student @@ -7417,7 +7419,7 @@ givenName: Erik cn: Erik Roberts uid: eroberts477 mail: eroberts477@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -7433,7 +7435,7 @@ givenName: Paul cn: Paul Vales uid: pvales mail: pvales@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -7449,7 +7451,7 @@ givenName: Jim cn: Jim Scott uid: jscott479 mail: jscott479@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -7465,7 +7467,7 @@ givenName: Betty cn: Betty Davis uid: bdavis480 mail: bdavis480@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -7480,7 +7482,7 @@ givenName: Jim cn: Jim Grady uid: jgrady481 mail: jgrady481@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -7496,7 +7498,7 @@ givenName: Nancy cn: Nancy Brown uid: nbrown482 mail: nbrown482@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -7512,7 +7514,7 @@ givenName: Betty cn: Betty Lee uid: blee483 mail: blee483@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community @@ -7527,7 +7529,7 @@ givenName: Jim cn: Jim Clark uid: jclark484 mail: jclark484@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community @@ -7542,7 +7544,7 @@ givenName: David cn: David Brown uid: dbrown mail: dbrown@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community @@ -7557,7 +7559,7 @@ givenName: Paul cn: Paul Gonazles uid: pgonazles mail: pgonazles@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -7572,7 +7574,7 @@ givenName: Mark cn: Mark White uid: mwhite487 mail: mwhite487@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum @@ -7587,7 +7589,7 @@ givenName: Sarah cn: Sarah Vales uid: svales488 mail: svales488@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community @@ -7602,7 +7604,7 @@ givenName: Eric cn: Eric Gasper uid: egasper489 mail: egasper489@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community eduPersonAffiliation: staff @@ -7618,7 +7620,7 @@ givenName: Kim cn: Kim Doe uid: kdoe490 mail: kdoe490@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community @@ -7633,7 +7635,7 @@ givenName: Bill cn: Bill Morrison uid: bmorrison491 mail: bmorrison491@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member @@ -7648,7 +7650,7 @@ givenName: Lori cn: Lori Vales uid: lvales mail: lvales@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -7664,7 +7666,7 @@ givenName: Heather cn: Heather Davis uid: hdavis493 mail: hdavis493@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -7679,7 +7681,7 @@ givenName: James cn: James Thompson uid: jthompson494 mail: jthompson494@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum @@ -7694,7 +7696,7 @@ givenName: Karl cn: Karl Doe uid: kdoe495 mail: kdoe495@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty @@ -7709,7 +7711,7 @@ givenName: Kim cn: Kim Williams uid: kwilliams496 mail: kwilliams496@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum @@ -7724,7 +7726,7 @@ givenName: Erik cn: Erik Gasper uid: egasper497 mail: egasper497@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -7740,7 +7742,7 @@ givenName: Paul cn: Paul Vales uid: pvales498 mail: pvales498@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -7756,7 +7758,7 @@ givenName: Sarah cn: Sarah Scott uid: sscott mail: sscott@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member @@ -7771,7 +7773,7 @@ givenName: Thomas cn: Thomas Martinez uid: tmartinez mail: tmartinez@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -7786,7 +7788,7 @@ givenName: Marie cn: Marie Vales uid: mvales501 mail: mvales501@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -7802,7 +7804,7 @@ givenName: Mark cn: Mark Henderson uid: mhenderson502 mail: mhenderson502@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -7818,7 +7820,7 @@ givenName: Mark cn: Mark Davis uid: mdavis503 mail: mdavis503@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -7834,7 +7836,7 @@ givenName: Mary cn: Mary Doe uid: mdoe504 mail: mdoe504@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community eduPersonAffiliation: staff @@ -7850,7 +7852,7 @@ givenName: Betty cn: Betty Grady uid: bgrady505 mail: bgrady505@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum @@ -7865,7 +7867,7 @@ givenName: Michael cn: Michael Martinez uid: mmartinez506 mail: mmartinez506@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -7881,7 +7883,7 @@ givenName: Betty cn: Betty Walters uid: bwalters mail: bwalters@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -7897,7 +7899,7 @@ givenName: Ann cn: Ann Vales uid: avales508 mail: avales508@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum @@ -7912,7 +7914,7 @@ givenName: David cn: David Langenberg uid: dlangenberg509 mail: dlangenberg509@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -7927,7 +7929,7 @@ givenName: Thomas cn: Thomas Lopez uid: tlopez mail: tlopez@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -7943,7 +7945,7 @@ givenName: Lisa cn: Lisa Clark uid: lclark511 mail: lclark511@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member @@ -7958,7 +7960,7 @@ givenName: Paul cn: Paul Anderson uid: panderson mail: panderson@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum @@ -7973,7 +7975,7 @@ givenName: Bill cn: Bill Johnson uid: bjohnson513 mail: bjohnson513@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -7989,7 +7991,7 @@ givenName: William cn: William Lopez uid: wlopez mail: wlopez@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty @@ -8004,7 +8006,7 @@ givenName: Thomas cn: Thomas Martinez uid: tmartinez515 mail: tmartinez515@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -8020,7 +8022,7 @@ givenName: William cn: William Clark uid: wclark mail: wclark@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community @@ -8035,7 +8037,7 @@ givenName: Jim cn: Jim Williams uid: jwilliams517 mail: jwilliams517@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member eduPersonAffiliation: staff @@ -8051,7 +8053,7 @@ givenName: Heather cn: Heather Williams uid: hwilliams mail: hwilliams@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -8067,7 +8069,7 @@ givenName: Lori cn: Lori Lopez uid: llopez519 mail: llopez519@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -8083,7 +8085,7 @@ givenName: Karoline cn: Karoline Lopez uid: klopez520 mail: klopez520@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -8098,7 +8100,7 @@ givenName: Thomas cn: Thomas Lee uid: tlee mail: tlee@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: student @@ -8113,7 +8115,7 @@ givenName: Mary cn: Mary Scott uid: mscott522 mail: mscott522@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member @@ -8128,7 +8130,7 @@ givenName: David cn: David Anderson uid: danderson523 mail: danderson523@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty @@ -8143,7 +8145,7 @@ givenName: Jim cn: Jim Gonazles uid: jgonazles524 mail: jgonazles524@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community @@ -8158,7 +8160,7 @@ givenName: Heather cn: Heather Gasper uid: hgasper mail: hgasper@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -8174,7 +8176,7 @@ givenName: Eric cn: Eric Henderson uid: ehenderson mail: ehenderson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -8190,7 +8192,7 @@ givenName: Bill cn: Bill Scott uid: bscott527 mail: bscott527@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -8206,7 +8208,7 @@ givenName: Eric cn: Eric White uid: ewhite mail: ewhite@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff @@ -8221,7 +8223,7 @@ givenName: Sarah cn: Sarah Roberts uid: sroberts mail: sroberts@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -8236,7 +8238,7 @@ givenName: Paul cn: Paul Butler uid: pbutler mail: pbutler@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: alum @@ -8251,7 +8253,7 @@ givenName: Greg cn: Greg Davis uid: gdavis531 mail: gdavis531@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -8267,7 +8269,7 @@ givenName: William cn: William Johnson uid: wjohnson532 mail: wjohnson532@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -8283,7 +8285,7 @@ givenName: Eric cn: Eric Scott uid: escott533 mail: escott533@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -8299,7 +8301,7 @@ givenName: Karl cn: Karl Martinez uid: kmartinez534 mail: kmartinez534@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: staff @@ -8314,7 +8316,7 @@ givenName: Kiersten cn: Kiersten Brown uid: kbrown535 mail: kbrown535@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -8330,7 +8332,7 @@ givenName: John cn: John Langenberg uid: jlangenberg536 mail: jlangenberg536@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: alum @@ -8345,7 +8347,7 @@ givenName: Greg cn: Greg Davis uid: gdavis537 mail: gdavis537@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member @@ -8360,7 +8362,7 @@ givenName: William cn: William Doe uid: wdoe mail: wdoe@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -8376,7 +8378,7 @@ givenName: Kiersten cn: Kiersten Thompson uid: kthompson539 mail: kthompson539@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -8392,7 +8394,7 @@ givenName: Lisa cn: Lisa Davis uid: ldavis540 mail: ldavis540@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -8408,7 +8410,7 @@ givenName: Blake cn: Blake Martinez uid: bmartinez mail: bmartinez@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -8424,7 +8426,7 @@ givenName: Lisa cn: Lisa Roberts uid: lroberts542 mail: lroberts542@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -8440,7 +8442,7 @@ givenName: Karl cn: Karl Smith uid: ksmith543 mail: ksmith543@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member eduPersonAffiliation: staff @@ -8456,7 +8458,7 @@ givenName: John cn: John Clark uid: jclark544 mail: jclark544@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member @@ -8471,7 +8473,7 @@ givenName: Jennifer cn: Jennifer Butler uid: jbutler545 mail: jbutler545@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -8487,7 +8489,7 @@ givenName: John cn: John Grady uid: jgrady546 mail: jgrady546@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -8503,7 +8505,7 @@ givenName: Jennifer cn: Jennifer Lee uid: jlee547 mail: jlee547@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum @@ -8518,7 +8520,7 @@ givenName: Colin cn: Colin Smith uid: csmith mail: csmith@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff @@ -8533,7 +8535,7 @@ givenName: Thomas cn: Thomas Peterson uid: tpeterson mail: tpeterson@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community @@ -8548,7 +8550,7 @@ givenName: Marie cn: Marie Gonazles uid: mgonazles550 mail: mgonazles550@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community @@ -8563,7 +8565,7 @@ givenName: Bill cn: Bill White uid: bwhite551 mail: bwhite551@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member @@ -8578,7 +8580,7 @@ givenName: Nancy cn: Nancy Henderson uid: nhenderson552 mail: nhenderson552@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -8594,7 +8596,7 @@ givenName: Bill cn: Bill Lewis uid: blewis553 mail: blewis553@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: student @@ -8609,7 +8611,7 @@ givenName: Michael cn: Michael Johnson uid: mjohnson554 mail: mjohnson554@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member @@ -8624,7 +8626,7 @@ givenName: Greg cn: Greg Anderson uid: ganderson555 mail: ganderson555@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community eduPersonAffiliation: alum @@ -8640,7 +8642,7 @@ givenName: Sarah cn: Sarah Lewis uid: slewis556 mail: slewis556@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -8656,7 +8658,7 @@ givenName: Donna cn: Donna Vales uid: dvales557 mail: dvales557@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum @@ -8671,7 +8673,7 @@ givenName: John cn: John Lopez uid: jlopez558 mail: jlopez558@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: student @@ -8686,7 +8688,7 @@ givenName: Karl cn: Karl Martinez uid: kmartinez559 mail: kmartinez559@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -8701,7 +8703,7 @@ givenName: Karl cn: Karl Thompson uid: kthompson560 mail: kthompson560@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty @@ -8716,7 +8718,7 @@ givenName: Karoline cn: Karoline Roberts uid: kroberts561 mail: kroberts561@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: member @@ -8732,7 +8734,7 @@ givenName: Mary cn: Mary Brown uid: mbrown562 mail: mbrown562@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum @@ -8747,7 +8749,7 @@ givenName: Betty cn: Betty Lopez uid: blopez563 mail: blopez563@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -8763,7 +8765,7 @@ givenName: Jo cn: Jo Roberts uid: jroberts564 mail: jroberts564@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -8779,7 +8781,7 @@ givenName: Jennifer cn: Jennifer Lopez uid: jlopez565 mail: jlopez565@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -8795,7 +8797,7 @@ givenName: Blake cn: Blake Walters uid: bwalters566 mail: bwalters566@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -8810,7 +8812,7 @@ givenName: Karoline cn: Karoline Vales uid: kvales567 mail: kvales567@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -8826,7 +8828,7 @@ givenName: Michael cn: Michael Lopez uid: mlopez568 mail: mlopez568@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -8842,7 +8844,7 @@ givenName: Thomas cn: Thomas Morrison uid: tmorrison569 mail: tmorrison569@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -8858,7 +8860,7 @@ givenName: Blake cn: Blake Davis uid: bdavis570 mail: bdavis570@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -8873,7 +8875,7 @@ givenName: Sarah cn: Sarah Davis uid: sdavis mail: sdavis@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -8889,7 +8891,7 @@ givenName: Blake cn: Blake Anderson uid: banderson572 mail: banderson572@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community eduPersonAffiliation: alum @@ -8905,7 +8907,7 @@ givenName: William cn: William Anderson uid: wanderson mail: wanderson@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -8921,7 +8923,7 @@ givenName: Bill cn: Bill Price uid: bprice574 mail: bprice574@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff @@ -8936,7 +8938,7 @@ givenName: Jennifer cn: Jennifer Butler uid: jbutler575 mail: jbutler575@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -8952,7 +8954,7 @@ givenName: Jennifer cn: Jennifer Scott uid: jscott576 mail: jscott576@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff @@ -8967,7 +8969,7 @@ givenName: David cn: David Doe uid: ddoe577 mail: ddoe577@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -8983,7 +8985,7 @@ givenName: Thomas cn: Thomas Davis uid: tdavis578 mail: tdavis578@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -8999,7 +9001,7 @@ givenName: Sarah cn: Sarah Langenberg uid: slangenberg579 mail: slangenberg579@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -9015,7 +9017,7 @@ givenName: Betty cn: Betty Vales uid: bvales580 mail: bvales580@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: staff @@ -9030,7 +9032,7 @@ givenName: Lori cn: Lori Peterson uid: lpeterson581 mail: lpeterson581@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum @@ -9045,7 +9047,7 @@ givenName: Blake cn: Blake Martinez uid: bmartinez582 mail: bmartinez582@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -9061,7 +9063,7 @@ givenName: Ann cn: Ann Smith uid: asmith583 mail: asmith583@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty @@ -9076,7 +9078,7 @@ givenName: Ann cn: Ann Price uid: aprice mail: aprice@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -9092,7 +9094,7 @@ givenName: Eric cn: Eric Henderson uid: ehenderson585 mail: ehenderson585@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -9108,7 +9110,7 @@ givenName: Lisa cn: Lisa Morrison uid: lmorrison586 mail: lmorrison586@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum @@ -9123,7 +9125,7 @@ givenName: Colin cn: Colin Henderson uid: chenderson mail: chenderson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -9139,7 +9141,7 @@ givenName: Lori cn: Lori Brown uid: lbrown mail: lbrown@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -9154,7 +9156,7 @@ givenName: Paul cn: Paul Smith uid: psmith mail: psmith@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -9170,7 +9172,7 @@ givenName: Karl cn: Karl Lee uid: klee590 mail: klee590@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: member eduPersonAffiliation: faculty @@ -9186,7 +9188,7 @@ givenName: Karl cn: Karl Doe uid: kdoe591 mail: kdoe591@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -9202,7 +9204,7 @@ givenName: Lisa cn: Lisa Doe uid: ldoe592 mail: ldoe592@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -9218,7 +9220,7 @@ givenName: Marie cn: Marie Vales uid: mvales593 mail: mvales593@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: student @@ -9233,7 +9235,7 @@ givenName: Ann cn: Ann Henderson uid: ahenderson594 mail: ahenderson594@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -9249,7 +9251,7 @@ givenName: Ann cn: Ann Roberts uid: aroberts mail: aroberts@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community @@ -9264,7 +9266,7 @@ givenName: David cn: David Thompson uid: dthompson mail: dthompson@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -9279,7 +9281,7 @@ givenName: Donna cn: Donna Brown uid: dbrown597 mail: dbrown597@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty @@ -9294,7 +9296,7 @@ givenName: Thomas cn: Thomas Martinez uid: tmartinez598 mail: tmartinez598@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student @@ -9309,7 +9311,7 @@ givenName: Karl cn: Karl Brown uid: kbrown599 mail: kbrown599@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -9324,7 +9326,7 @@ givenName: Paul cn: Paul Clark uid: pclark600 mail: pclark600@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -9340,7 +9342,7 @@ givenName: Michael cn: Michael Price uid: mprice601 mail: mprice601@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community eduPersonAffiliation: staff @@ -9356,7 +9358,7 @@ givenName: Lisa cn: Lisa Butler uid: lbutler602 mail: lbutler602@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff @@ -9371,7 +9373,7 @@ givenName: Jennifer cn: Jennifer Henderson uid: jhenderson603 mail: jhenderson603@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: faculty @@ -9386,7 +9388,7 @@ givenName: Karoline cn: Karoline Scott uid: kscott604 mail: kscott604@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -9401,7 +9403,7 @@ givenName: David cn: David Doe uid: ddoe605 mail: ddoe605@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -9417,7 +9419,7 @@ givenName: David cn: David Johnson uid: djohnson606 mail: djohnson606@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -9433,7 +9435,7 @@ givenName: Paul cn: Paul Butler uid: pbutler607 mail: pbutler607@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -9448,7 +9450,7 @@ givenName: Jennifer cn: Jennifer Butler uid: jbutler608 mail: jbutler608@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -9464,7 +9466,7 @@ givenName: Kim cn: Kim Smith uid: ksmith609 mail: ksmith609@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member @@ -9479,7 +9481,7 @@ givenName: James cn: James Peterson uid: jpeterson610 mail: jpeterson610@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -9495,7 +9497,7 @@ givenName: Karl cn: Karl Butler uid: kbutler611 mail: kbutler611@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -9511,7 +9513,7 @@ givenName: William cn: William White uid: wwhite mail: wwhite@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff @@ -9526,7 +9528,7 @@ givenName: David cn: David Peterson uid: dpeterson613 mail: dpeterson613@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -9542,7 +9544,7 @@ givenName: Karl cn: Karl Lopez uid: klopez614 mail: klopez614@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member @@ -9557,7 +9559,7 @@ givenName: Thomas cn: Thomas Johnson uid: tjohnson mail: tjohnson@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty @@ -9572,7 +9574,7 @@ givenName: Mark cn: Mark Lee uid: mlee616 mail: mlee616@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -9587,7 +9589,7 @@ givenName: Jennifer cn: Jennifer Price uid: jprice617 mail: jprice617@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -9603,7 +9605,7 @@ givenName: Greg cn: Greg Henderson uid: ghenderson618 mail: ghenderson618@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum @@ -9618,7 +9620,7 @@ givenName: Robert cn: Robert Walters uid: rwalters619 mail: rwalters619@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -9633,7 +9635,7 @@ givenName: Betty cn: Betty Morrison uid: bmorrison620 mail: bmorrison620@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: member @@ -9648,7 +9650,7 @@ givenName: Lisa cn: Lisa Anderson uid: landerson mail: landerson@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -9664,7 +9666,7 @@ givenName: Lori cn: Lori Anderson uid: landerson622 mail: landerson622@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community @@ -9679,7 +9681,7 @@ givenName: Paul cn: Paul Price uid: pprice mail: pprice@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student @@ -9694,7 +9696,7 @@ givenName: Nancy cn: Nancy Smith uid: nsmith mail: nsmith@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -9710,7 +9712,7 @@ givenName: James cn: James Peterson uid: jpeterson625 mail: jpeterson625@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -9726,7 +9728,7 @@ givenName: Mary cn: Mary Lopez uid: mlopez626 mail: mlopez626@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community eduPersonAffiliation: alum @@ -9742,7 +9744,7 @@ givenName: Donna cn: Donna Vales uid: dvales627 mail: dvales627@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community @@ -9757,7 +9759,7 @@ givenName: Erik cn: Erik Thompson uid: ethompson628 mail: ethompson628@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -9773,7 +9775,7 @@ givenName: Robert cn: Robert Doe uid: rdoe629 mail: rdoe629@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -9789,7 +9791,7 @@ givenName: Colin cn: Colin Johnson uid: cjohnson mail: cjohnson@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community @@ -9804,7 +9806,7 @@ givenName: Michael cn: Michael Williams uid: mwilliams631 mail: mwilliams631@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -9819,7 +9821,7 @@ givenName: John cn: John Peterson uid: jpeterson632 mail: jpeterson632@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member @@ -9834,7 +9836,7 @@ givenName: Bill cn: Bill Gonazles uid: bgonazles633 mail: bgonazles633@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty @@ -9849,7 +9851,7 @@ givenName: David cn: David Anderson uid: danderson634 mail: danderson634@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -9865,7 +9867,7 @@ givenName: Kim cn: Kim Walters uid: kwalters635 mail: kwalters635@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty @@ -9880,7 +9882,7 @@ givenName: Ann cn: Ann Doe uid: adoe mail: adoe@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member @@ -9895,7 +9897,7 @@ givenName: Colin cn: Colin Doe uid: cdoe mail: cdoe@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -9911,7 +9913,7 @@ givenName: David cn: David Doe uid: ddoe638 mail: ddoe638@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: faculty @@ -9926,7 +9928,7 @@ givenName: Erik cn: Erik Davis uid: edavis639 mail: edavis639@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -9942,7 +9944,7 @@ givenName: Heather cn: Heather White uid: hwhite640 mail: hwhite640@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty @@ -9957,7 +9959,7 @@ givenName: David cn: David Price uid: dprice641 mail: dprice641@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: student @@ -9972,7 +9974,7 @@ givenName: Kim cn: Kim Lopez uid: klopez642 mail: klopez642@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum @@ -9987,7 +9989,7 @@ givenName: Ann cn: Ann Brown uid: abrown643 mail: abrown643@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member @@ -10002,7 +10004,7 @@ givenName: Mary cn: Mary White uid: mwhite644 mail: mwhite644@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -10018,7 +10020,7 @@ givenName: Kiersten cn: Kiersten White uid: kwhite645 mail: kwhite645@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -10034,7 +10036,7 @@ givenName: Erik cn: Erik Doe uid: edoe mail: edoe@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff @@ -10049,7 +10051,7 @@ givenName: Mark cn: Mark Gonazles uid: mgonazles647 mail: mgonazles647@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: member @@ -10065,7 +10067,7 @@ givenName: James cn: James Henderson uid: jhenderson648 mail: jhenderson648@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -10081,7 +10083,7 @@ givenName: Bill cn: Bill Smith uid: bsmith649 mail: bsmith649@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: member @@ -10096,7 +10098,7 @@ givenName: Lisa cn: Lisa Morrison uid: lmorrison650 mail: lmorrison650@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -10112,7 +10114,7 @@ givenName: Lori cn: Lori Langenberg uid: llangenberg651 mail: llangenberg651@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -10128,7 +10130,7 @@ givenName: Jim cn: Jim Walters uid: jwalters652 mail: jwalters652@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member @@ -10143,7 +10145,7 @@ givenName: Thomas cn: Thomas Johnson uid: tjohnson653 mail: tjohnson653@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: community eduPersonAffiliation: alum @@ -10159,7 +10161,7 @@ givenName: Jo cn: Jo Walters uid: jwalters654 mail: jwalters654@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -10175,7 +10177,7 @@ givenName: Betty cn: Betty Morrison uid: bmorrison655 mail: bmorrison655@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -10191,7 +10193,7 @@ givenName: Michael cn: Michael Clark uid: mclark656 mail: mclark656@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -10207,7 +10209,7 @@ givenName: Erik cn: Erik Williams uid: ewilliams657 mail: ewilliams657@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: member @@ -10222,7 +10224,7 @@ givenName: John cn: John Lewis uid: jlewis658 mail: jlewis658@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -10238,7 +10240,7 @@ givenName: Kiersten cn: Kiersten Grady uid: kgrady659 mail: kgrady659@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student @@ -10253,7 +10255,7 @@ givenName: William cn: William Martinez uid: wmartinez mail: wmartinez@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -10268,7 +10270,7 @@ givenName: Paul cn: Paul Williams uid: pwilliams mail: pwilliams@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -10284,7 +10286,7 @@ givenName: Kim cn: Kim Johnson uid: kjohnson662 mail: kjohnson662@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -10300,7 +10302,7 @@ givenName: Sarah cn: Sarah Martinez uid: smartinez663 mail: smartinez663@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -10316,7 +10318,7 @@ givenName: Marie cn: Marie Vales uid: mvales664 mail: mvales664@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff @@ -10331,7 +10333,7 @@ givenName: Karl cn: Karl Langenberg uid: klangenberg665 mail: klangenberg665@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -10347,7 +10349,7 @@ givenName: Marie cn: Marie Smith uid: msmith666 mail: msmith666@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -10363,7 +10365,7 @@ givenName: Mark cn: Mark Vales uid: mvales667 mail: mvales667@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -10379,7 +10381,7 @@ givenName: James cn: James Walters uid: jwalters668 mail: jwalters668@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member @@ -10394,7 +10396,7 @@ givenName: Paul cn: Paul Gonazles uid: pgonazles669 mail: pgonazles669@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -10410,7 +10412,7 @@ givenName: Donna cn: Donna Vales uid: dvales670 mail: dvales670@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student @@ -10425,7 +10427,7 @@ givenName: David cn: David Clark uid: dclark671 mail: dclark671@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -10441,7 +10443,7 @@ givenName: Betty cn: Betty Doe uid: bdoe672 mail: bdoe672@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -10457,7 +10459,7 @@ givenName: Mark cn: Mark Brown uid: mbrown673 mail: mbrown673@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff @@ -10472,7 +10474,7 @@ givenName: Karoline cn: Karoline Doe uid: kdoe674 mail: kdoe674@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -10487,7 +10489,7 @@ givenName: William cn: William Thompson uid: wthompson675 mail: wthompson675@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -10503,7 +10505,7 @@ givenName: David cn: David Morrison uid: dmorrison676 mail: dmorrison676@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -10519,7 +10521,7 @@ givenName: Erik cn: Erik Doe uid: edoe677 mail: edoe677@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community @@ -10534,7 +10536,7 @@ givenName: Nancy cn: Nancy Langenberg uid: nlangenberg mail: nlangenberg@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -10550,7 +10552,7 @@ givenName: Karl cn: Karl Peterson uid: kpeterson679 mail: kpeterson679@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -10566,7 +10568,7 @@ givenName: Heather cn: Heather Gonazles uid: hgonazles mail: hgonazles@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -10582,7 +10584,7 @@ givenName: Donna cn: Donna Roberts uid: droberts mail: droberts@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff @@ -10597,7 +10599,7 @@ givenName: David cn: David Gonazles uid: dgonazles682 mail: dgonazles682@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -10613,7 +10615,7 @@ givenName: Mark cn: Mark Morrison uid: mmorrison mail: mmorrison@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: staff @@ -10628,7 +10630,7 @@ givenName: Colin cn: Colin Morrison uid: cmorrison684 mail: cmorrison684@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty @@ -10643,7 +10645,7 @@ givenName: Jim cn: Jim Lewis uid: jlewis685 mail: jlewis685@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -10659,7 +10661,7 @@ givenName: Jennifer cn: Jennifer Johnson uid: jjohnson686 mail: jjohnson686@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -10674,7 +10676,7 @@ givenName: Erik cn: Erik Lee uid: elee mail: elee@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -10690,7 +10692,7 @@ givenName: Donna cn: Donna Doe uid: ddoe688 mail: ddoe688@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: student @@ -10705,7 +10707,7 @@ givenName: Donna cn: Donna Roberts uid: droberts689 mail: droberts689@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community @@ -10720,7 +10722,7 @@ givenName: Mary cn: Mary Gonazles uid: mgonazles690 mail: mgonazles690@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -10736,7 +10738,7 @@ givenName: Ann cn: Ann Williams uid: awilliams mail: awilliams@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff @@ -10751,7 +10753,7 @@ givenName: Greg cn: Greg Walters uid: gwalters mail: gwalters@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -10767,7 +10769,7 @@ givenName: William cn: William Gonazles uid: wgonazles mail: wgonazles@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -10783,7 +10785,7 @@ givenName: Michael cn: Michael Lewis uid: mlewis694 mail: mlewis694@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -10798,7 +10800,7 @@ givenName: Ann cn: Ann Vales uid: avales695 mail: avales695@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty @@ -10813,7 +10815,7 @@ givenName: Michael cn: Michael Johnson uid: mjohnson696 mail: mjohnson696@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff @@ -10828,7 +10830,7 @@ givenName: Kim cn: Kim Anderson uid: kanderson mail: kanderson@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community eduPersonAffiliation: staff @@ -10844,7 +10846,7 @@ givenName: Thomas cn: Thomas Roberts uid: troberts mail: troberts@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: student @@ -10859,7 +10861,7 @@ givenName: David cn: David Lewis uid: dlewis699 mail: dlewis699@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -10875,7 +10877,7 @@ givenName: Donna cn: Donna Walters uid: dwalters700 mail: dwalters700@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -10891,7 +10893,7 @@ givenName: Kim cn: Kim Brown uid: kbrown701 mail: kbrown701@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -10906,7 +10908,7 @@ givenName: Erik cn: Erik White uid: ewhite702 mail: ewhite702@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -10921,7 +10923,7 @@ givenName: Lori cn: Lori Walters uid: lwalters703 mail: lwalters703@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community @@ -10936,7 +10938,7 @@ givenName: Ann cn: Ann Langenberg uid: alangenberg704 mail: alangenberg704@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: staff @@ -10952,7 +10954,7 @@ givenName: Bill cn: Bill Brown uid: bbrown705 mail: bbrown705@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -10967,7 +10969,7 @@ givenName: Blake cn: Blake Langenberg uid: blangenberg mail: blangenberg@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff @@ -10982,7 +10984,7 @@ givenName: Michael cn: Michael Lewis uid: mlewis707 mail: mlewis707@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student @@ -10997,7 +10999,7 @@ givenName: Karl cn: Karl Smith uid: ksmith708 mail: ksmith708@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -11013,7 +11015,7 @@ givenName: Colin cn: Colin Lopez uid: clopez mail: clopez@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -11029,7 +11031,7 @@ givenName: Mark cn: Mark Clark uid: mclark710 mail: mclark710@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -11045,7 +11047,7 @@ givenName: Thomas cn: Thomas Price uid: tprice mail: tprice@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff @@ -11060,7 +11062,7 @@ givenName: Karl cn: Karl Lewis uid: klewis712 mail: klewis712@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum @@ -11075,7 +11077,7 @@ givenName: Marie cn: Marie Butler uid: mbutler713 mail: mbutler713@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member @@ -11090,7 +11092,7 @@ givenName: Mark cn: Mark Morrison uid: mmorrison714 mail: mmorrison714@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community @@ -11105,7 +11107,7 @@ givenName: Greg cn: Greg Smith uid: gsmith715 mail: gsmith715@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -11120,7 +11122,7 @@ givenName: Robert cn: Robert Anderson uid: randerson mail: randerson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member @@ -11135,7 +11137,7 @@ givenName: Kiersten cn: Kiersten Langenberg uid: klangenberg717 mail: klangenberg717@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -11150,7 +11152,7 @@ givenName: Mary cn: Mary Langenberg uid: mlangenberg718 mail: mlangenberg718@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum @@ -11165,7 +11167,7 @@ givenName: Paul cn: Paul Lee uid: plee719 mail: plee719@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -11180,7 +11182,7 @@ givenName: Donna cn: Donna Clark uid: dclark720 mail: dclark720@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student @@ -11195,7 +11197,7 @@ givenName: Blake cn: Blake Brown uid: bbrown721 mail: bbrown721@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -11211,7 +11213,7 @@ givenName: Blake cn: Blake Vales uid: bvales722 mail: bvales722@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -11227,7 +11229,7 @@ givenName: Erik cn: Erik Martinez uid: emartinez mail: emartinez@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty @@ -11242,7 +11244,7 @@ givenName: Karl cn: Karl Gonazles uid: kgonazles mail: kgonazles@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community @@ -11257,7 +11259,7 @@ givenName: Lisa cn: Lisa Vales uid: lvales725 mail: lvales725@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -11272,7 +11274,7 @@ givenName: Karl cn: Karl Grady uid: kgrady726 mail: kgrady726@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -11287,7 +11289,7 @@ givenName: Ann cn: Ann Anderson uid: aanderson727 mail: aanderson727@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -11302,7 +11304,7 @@ givenName: Ann cn: Ann White uid: awhite728 mail: awhite728@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -11318,7 +11320,7 @@ givenName: Lori cn: Lori Williams uid: lwilliams729 mail: lwilliams729@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -11334,7 +11336,7 @@ givenName: Bill cn: Bill Clark uid: bclark730 mail: bclark730@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum @@ -11349,7 +11351,7 @@ givenName: David cn: David Williams uid: dwilliams731 mail: dwilliams731@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -11364,7 +11366,7 @@ givenName: David cn: David Williams uid: dwilliams732 mail: dwilliams732@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty @@ -11379,7 +11381,7 @@ givenName: David cn: David Lewis uid: dlewis733 mail: dlewis733@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student @@ -11394,7 +11396,7 @@ givenName: Nancy cn: Nancy Doe uid: ndoe mail: ndoe@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -11410,7 +11412,7 @@ givenName: Jennifer cn: Jennifer Johnson uid: jjohnson735 mail: jjohnson735@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: member @@ -11425,7 +11427,7 @@ givenName: Jennifer cn: Jennifer Gonazles uid: jgonazles736 mail: jgonazles736@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community eduPersonAffiliation: alum @@ -11441,7 +11443,7 @@ givenName: Lisa cn: Lisa Price uid: lprice mail: lprice@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community @@ -11456,7 +11458,7 @@ givenName: Robert cn: Robert Doe uid: rdoe738 mail: rdoe738@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty @@ -11471,7 +11473,7 @@ givenName: David cn: David Brown uid: dbrown739 mail: dbrown739@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -11487,7 +11489,7 @@ givenName: Heather cn: Heather Anderson uid: handerson740 mail: handerson740@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -11503,7 +11505,7 @@ givenName: Jo cn: Jo Martinez uid: jmartinez741 mail: jmartinez741@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -11518,7 +11520,7 @@ givenName: Ann cn: Ann Gonazles uid: agonazles mail: agonazles@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -11534,7 +11536,7 @@ givenName: Erik cn: Erik Davis uid: edavis743 mail: edavis743@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student @@ -11549,7 +11551,7 @@ givenName: James cn: James Peterson uid: jpeterson744 mail: jpeterson744@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community @@ -11564,7 +11566,7 @@ givenName: Betty cn: Betty Price uid: bprice745 mail: bprice745@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -11579,7 +11581,7 @@ givenName: Jim cn: Jim Williams uid: jwilliams746 mail: jwilliams746@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -11595,7 +11597,7 @@ givenName: Robert cn: Robert Roberts uid: rroberts mail: rroberts@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member @@ -11610,7 +11612,7 @@ givenName: Karl cn: Karl Roberts uid: kroberts748 mail: kroberts748@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -11626,7 +11628,7 @@ givenName: Jim cn: Jim Anderson uid: janderson749 mail: janderson749@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -11641,7 +11643,7 @@ givenName: Bill cn: Bill Roberts uid: broberts750 mail: broberts750@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member @@ -11656,7 +11658,7 @@ givenName: Erik cn: Erik Lopez uid: elopez751 mail: elopez751@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: community @@ -11671,7 +11673,7 @@ givenName: Michael cn: Michael Anderson uid: manderson752 mail: manderson752@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -11686,7 +11688,7 @@ givenName: Karoline cn: Karoline Butler uid: kbutler753 mail: kbutler753@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum @@ -11701,7 +11703,7 @@ givenName: Greg cn: Greg Clark uid: gclark mail: gclark@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student @@ -11716,7 +11718,7 @@ givenName: Jo cn: Jo Williams uid: jwilliams755 mail: jwilliams755@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -11732,7 +11734,7 @@ givenName: Lori cn: Lori Lopez uid: llopez756 mail: llopez756@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff @@ -11747,7 +11749,7 @@ givenName: Kim cn: Kim Henderson uid: khenderson757 mail: khenderson757@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff @@ -11762,7 +11764,7 @@ givenName: Colin cn: Colin Johnson uid: cjohnson758 mail: cjohnson758@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -11778,7 +11780,7 @@ givenName: Kim cn: Kim Gasper uid: kgasper759 mail: kgasper759@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -11793,7 +11795,7 @@ givenName: James cn: James Lewis uid: jlewis760 mail: jlewis760@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: staff @@ -11808,7 +11810,7 @@ givenName: Lori cn: Lori Lee uid: llee761 mail: llee761@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -11824,7 +11826,7 @@ givenName: Robert cn: Robert Vales uid: rvales762 mail: rvales762@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -11840,7 +11842,7 @@ givenName: John cn: John Gasper uid: jgasper763 mail: jgasper763@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -11856,7 +11858,7 @@ givenName: Marie cn: Marie Price uid: mprice764 mail: mprice764@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member @@ -11871,7 +11873,7 @@ givenName: Ann cn: Ann Smith uid: asmith765 mail: asmith765@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -11886,7 +11888,7 @@ givenName: Kiersten cn: Kiersten Anderson uid: kanderson766 mail: kanderson766@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -11901,7 +11903,7 @@ givenName: Thomas cn: Thomas Brown uid: tbrown767 mail: tbrown767@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -11917,7 +11919,7 @@ givenName: Karoline cn: Karoline Vales uid: kvales768 mail: kvales768@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff @@ -11932,7 +11934,7 @@ givenName: Jo cn: Jo Henderson uid: jhenderson769 mail: jhenderson769@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff @@ -11947,7 +11949,7 @@ givenName: James cn: James Johnson uid: jjohnson770 mail: jjohnson770@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -11962,7 +11964,7 @@ givenName: William cn: William Roberts uid: wroberts mail: wroberts@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -11977,7 +11979,7 @@ givenName: Colin cn: Colin Peterson uid: cpeterson772 mail: cpeterson772@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -11993,7 +11995,7 @@ givenName: Thomas cn: Thomas Doe uid: tdoe mail: tdoe@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -12009,7 +12011,7 @@ givenName: Heather cn: Heather Roberts uid: hroberts mail: hroberts@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community eduPersonAffiliation: staff @@ -12025,7 +12027,7 @@ givenName: Michael cn: Michael Price uid: mprice775 mail: mprice775@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -12041,7 +12043,7 @@ givenName: Lori cn: Lori Roberts uid: lroberts776 mail: lroberts776@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty @@ -12056,7 +12058,7 @@ givenName: Marie cn: Marie Davis uid: mdavis777 mail: mdavis777@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -12072,7 +12074,7 @@ givenName: Karoline cn: Karoline Gonazles uid: kgonazles778 mail: kgonazles778@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -12088,7 +12090,7 @@ givenName: Mary cn: Mary Vales uid: mvales779 mail: mvales779@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -12104,7 +12106,7 @@ givenName: Jo cn: Jo Doe uid: jdoe780 mail: jdoe780@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -12120,7 +12122,7 @@ givenName: David cn: David Martinez uid: dmartinez mail: dmartinez@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member @@ -12135,7 +12137,7 @@ givenName: David cn: David Vales uid: dvales782 mail: dvales782@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff @@ -12150,7 +12152,7 @@ givenName: Thomas cn: Thomas Price uid: tprice783 mail: tprice783@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty @@ -12165,7 +12167,7 @@ givenName: Donna cn: Donna Morrison uid: dmorrison784 mail: dmorrison784@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -12181,7 +12183,7 @@ givenName: David cn: David Gonazles uid: dgonazles785 mail: dgonazles785@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty @@ -12196,7 +12198,7 @@ givenName: Sarah cn: Sarah Walters uid: swalters786 mail: swalters786@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: alum @@ -12211,7 +12213,7 @@ givenName: Heather cn: Heather Peterson uid: hpeterson mail: hpeterson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -12227,7 +12229,7 @@ givenName: Jennifer cn: Jennifer Lee uid: jlee788 mail: jlee788@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -12243,7 +12245,7 @@ givenName: Nancy cn: Nancy Lopez uid: nlopez mail: nlopez@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -12259,7 +12261,7 @@ givenName: Kim cn: Kim White uid: kwhite790 mail: kwhite790@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student @@ -12274,7 +12276,7 @@ givenName: Nancy cn: Nancy Butler uid: nbutler mail: nbutler@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -12290,7 +12292,7 @@ givenName: Jo cn: Jo Roberts uid: jroberts792 mail: jroberts792@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -12306,7 +12308,7 @@ givenName: Heather cn: Heather Clark uid: hclark mail: hclark@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -12321,7 +12323,7 @@ givenName: Nancy cn: Nancy Clark uid: nclark794 mail: nclark794@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum @@ -12336,7 +12338,7 @@ givenName: David cn: David Peterson uid: dpeterson795 mail: dpeterson795@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -12352,7 +12354,7 @@ givenName: Heather cn: Heather Brown uid: hbrown796 mail: hbrown796@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -12368,7 +12370,7 @@ givenName: Heather cn: Heather Lewis uid: hlewis797 mail: hlewis797@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -12384,7 +12386,7 @@ givenName: Betty cn: Betty Lewis uid: blewis798 mail: blewis798@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -12400,7 +12402,7 @@ givenName: Sarah cn: Sarah Roberts uid: sroberts799 mail: sroberts799@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -12416,7 +12418,7 @@ givenName: Colin cn: Colin Lewis uid: clewis800 mail: clewis800@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum @@ -12431,7 +12433,7 @@ givenName: Jim cn: Jim Clark uid: jclark801 mail: jclark801@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -12447,7 +12449,7 @@ givenName: Jim cn: Jim Vales uid: jvales802 mail: jvales802@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student @@ -12462,7 +12464,7 @@ givenName: John cn: John Lewis uid: jlewis803 mail: jlewis803@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -12478,7 +12480,7 @@ givenName: John cn: John Gasper uid: jgasper804 mail: jgasper804@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -12494,7 +12496,7 @@ givenName: Robert cn: Robert Davis uid: rdavis805 mail: rdavis805@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -12510,7 +12512,7 @@ givenName: David cn: David Williams uid: dwilliams806 mail: dwilliams806@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: member @@ -12525,7 +12527,7 @@ givenName: Jennifer cn: Jennifer Scott uid: jscott807 mail: jscott807@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community @@ -12540,7 +12542,7 @@ givenName: William cn: William Williams uid: wwilliams808 mail: wwilliams808@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member eduPersonAffiliation: faculty @@ -12556,7 +12558,7 @@ givenName: Eric cn: Eric Davis uid: edavis809 mail: edavis809@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum @@ -12571,7 +12573,7 @@ givenName: Marie cn: Marie Price uid: mprice810 mail: mprice810@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -12586,7 +12588,7 @@ givenName: Betty cn: Betty Henderson uid: bhenderson mail: bhenderson@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -12602,7 +12604,7 @@ givenName: Heather cn: Heather Henderson uid: hhenderson812 mail: hhenderson812@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -12618,7 +12620,7 @@ givenName: Karl cn: Karl Scott uid: kscott813 mail: kscott813@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -12634,7 +12636,7 @@ givenName: David cn: David Doe uid: ddoe814 mail: ddoe814@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -12649,7 +12651,7 @@ givenName: Erik cn: Erik Williams uid: ewilliams815 mail: ewilliams815@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student @@ -12664,7 +12666,7 @@ givenName: Jo cn: Jo Smith uid: jsmith816 mail: jsmith816@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -12680,7 +12682,7 @@ givenName: Lisa cn: Lisa Vales uid: lvales817 mail: lvales817@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: student @@ -12695,7 +12697,7 @@ givenName: Lori cn: Lori Peterson uid: lpeterson818 mail: lpeterson818@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member @@ -12710,7 +12712,7 @@ givenName: David cn: David Gasper uid: dgasper mail: dgasper@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member @@ -12725,7 +12727,7 @@ givenName: Nancy cn: Nancy Langenberg uid: nlangenberg820 mail: nlangenberg820@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -12741,7 +12743,7 @@ givenName: Jo cn: Jo Henderson uid: jhenderson821 mail: jhenderson821@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -12757,7 +12759,7 @@ givenName: David cn: David Davis uid: ddavis822 mail: ddavis822@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student @@ -12772,7 +12774,7 @@ givenName: Karl cn: Karl Gasper uid: kgasper823 mail: kgasper823@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: member @@ -12788,7 +12790,7 @@ givenName: John cn: John Price uid: jprice824 mail: jprice824@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: alum @@ -12803,7 +12805,7 @@ givenName: Ann cn: Ann Clark uid: aclark mail: aclark@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -12819,7 +12821,7 @@ givenName: Jennifer cn: Jennifer Clark uid: jclark826 mail: jclark826@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -12835,7 +12837,7 @@ givenName: Lori cn: Lori Martinez uid: lmartinez mail: lmartinez@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: alum @@ -12850,7 +12852,7 @@ givenName: Jim cn: Jim Peterson uid: jpeterson828 mail: jpeterson828@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: alum @@ -12865,7 +12867,7 @@ givenName: Jennifer cn: Jennifer Doe uid: jdoe829 mail: jdoe829@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -12881,7 +12883,7 @@ givenName: Nancy cn: Nancy Morrison uid: nmorrison mail: nmorrison@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -12897,7 +12899,7 @@ givenName: Eric cn: Eric Henderson uid: ehenderson831 mail: ehenderson831@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -12913,7 +12915,7 @@ givenName: Kiersten cn: Kiersten White uid: kwhite832 mail: kwhite832@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -12929,7 +12931,7 @@ givenName: Donna cn: Donna Henderson uid: dhenderson833 mail: dhenderson833@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: community @@ -12944,7 +12946,7 @@ givenName: Donna cn: Donna Brown uid: dbrown834 mail: dbrown834@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community eduPersonAffiliation: staff @@ -12960,7 +12962,7 @@ givenName: Marie cn: Marie Anderson uid: manderson835 mail: manderson835@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -12976,7 +12978,7 @@ givenName: Greg cn: Greg Gasper uid: ggasper836 mail: ggasper836@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -12992,7 +12994,7 @@ givenName: Marie cn: Marie Lewis uid: mlewis837 mail: mlewis837@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community eduPersonAffiliation: alum @@ -13008,7 +13010,7 @@ givenName: Karl cn: Karl Clark uid: kclark838 mail: kclark838@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty @@ -13023,7 +13025,7 @@ givenName: David cn: David Clark uid: dclark839 mail: dclark839@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff @@ -13038,7 +13040,7 @@ givenName: Blake cn: Blake Lewis uid: blewis840 mail: blewis840@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -13054,7 +13056,7 @@ givenName: William cn: William Lewis uid: wlewis mail: wlewis@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -13070,7 +13072,7 @@ givenName: John cn: John Butler uid: jbutler842 mail: jbutler842@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -13085,7 +13087,7 @@ givenName: Betty cn: Betty Butler uid: bbutler843 mail: bbutler843@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -13100,7 +13102,7 @@ givenName: Greg cn: Greg Thompson uid: gthompson mail: gthompson@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -13116,7 +13118,7 @@ givenName: Greg cn: Greg Langenberg uid: glangenberg mail: glangenberg@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: community @@ -13131,7 +13133,7 @@ givenName: Ann cn: Ann Johnson uid: ajohnson mail: ajohnson@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -13146,7 +13148,7 @@ givenName: Ann cn: Ann White uid: awhite847 mail: awhite847@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty @@ -13161,7 +13163,7 @@ givenName: David cn: David Henderson uid: dhenderson848 mail: dhenderson848@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty @@ -13176,7 +13178,7 @@ givenName: Mark cn: Mark Williams uid: mwilliams849 mail: mwilliams849@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff @@ -13191,7 +13193,7 @@ givenName: Nancy cn: Nancy Price uid: nprice mail: nprice@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -13207,7 +13209,7 @@ givenName: Donna cn: Donna Thompson uid: dthompson851 mail: dthompson851@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member @@ -13222,7 +13224,7 @@ givenName: Erik cn: Erik Butler uid: ebutler852 mail: ebutler852@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -13238,7 +13240,7 @@ givenName: Kim cn: Kim Davis uid: kdavis853 mail: kdavis853@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -13254,7 +13256,7 @@ givenName: Thomas cn: Thomas Gasper uid: tgasper854 mail: tgasper854@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -13270,7 +13272,7 @@ givenName: Ann cn: Ann Langenberg uid: alangenberg855 mail: alangenberg855@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community @@ -13285,7 +13287,7 @@ givenName: Kim cn: Kim Clark uid: kclark856 mail: kclark856@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: community @@ -13301,7 +13303,7 @@ givenName: William cn: William Davis uid: wdavis mail: wdavis@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -13317,7 +13319,7 @@ givenName: Karoline cn: Karoline Walters uid: kwalters858 mail: kwalters858@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -13333,7 +13335,7 @@ givenName: Erik cn: Erik Price uid: eprice859 mail: eprice859@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student @@ -13348,7 +13350,7 @@ givenName: Sarah cn: Sarah Lee uid: slee860 mail: slee860@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty @@ -13363,7 +13365,7 @@ givenName: James cn: James Walters uid: jwalters861 mail: jwalters861@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: community @@ -13379,7 +13381,7 @@ givenName: Robert cn: Robert Price uid: rprice862 mail: rprice862@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff @@ -13394,7 +13396,7 @@ givenName: Thomas cn: Thomas Martinez uid: tmartinez863 mail: tmartinez863@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -13410,7 +13412,7 @@ givenName: Mary cn: Mary Clark uid: mclark864 mail: mclark864@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -13425,7 +13427,7 @@ givenName: Lisa cn: Lisa Walters uid: lwalters865 mail: lwalters865@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -13440,7 +13442,7 @@ givenName: Heather cn: Heather Anderson uid: handerson866 mail: handerson866@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -13455,7 +13457,7 @@ givenName: David cn: David Henderson uid: dhenderson867 mail: dhenderson867@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -13471,7 +13473,7 @@ givenName: Lisa cn: Lisa Doe uid: ldoe868 mail: ldoe868@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -13487,7 +13489,7 @@ givenName: Greg cn: Greg Gonazles uid: ggonazles869 mail: ggonazles869@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -13503,7 +13505,7 @@ givenName: Karoline cn: Karoline Anderson uid: kanderson870 mail: kanderson870@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -13519,7 +13521,7 @@ givenName: Ann cn: Ann Johnson uid: ajohnson871 mail: ajohnson871@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -13535,7 +13537,7 @@ givenName: Betty cn: Betty Gasper uid: bgasper872 mail: bgasper872@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -13551,7 +13553,7 @@ givenName: John cn: John Lee uid: jlee873 mail: jlee873@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -13567,7 +13569,7 @@ givenName: Karoline cn: Karoline Henderson uid: khenderson874 mail: khenderson874@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: staff @@ -13582,7 +13584,7 @@ givenName: John cn: John Williams uid: jwilliams875 mail: jwilliams875@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -13598,7 +13600,7 @@ givenName: Nancy cn: Nancy Williams uid: nwilliams mail: nwilliams@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: faculty @@ -13613,7 +13615,7 @@ givenName: Karoline cn: Karoline Brown uid: kbrown877 mail: kbrown877@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -13629,7 +13631,7 @@ givenName: Blake cn: Blake Thompson uid: bthompson878 mail: bthompson878@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -13645,7 +13647,7 @@ givenName: Robert cn: Robert Davis uid: rdavis879 mail: rdavis879@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: staff @@ -13661,7 +13663,7 @@ givenName: Greg cn: Greg Thompson uid: gthompson880 mail: gthompson880@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community @@ -13676,7 +13678,7 @@ givenName: Blake cn: Blake Peterson uid: bpeterson881 mail: bpeterson881@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -13692,7 +13694,7 @@ givenName: Marie cn: Marie Brown uid: mbrown882 mail: mbrown882@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -13708,7 +13710,7 @@ givenName: James cn: James Martinez uid: jmartinez883 mail: jmartinez883@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum @@ -13723,7 +13725,7 @@ givenName: Heather cn: Heather White uid: hwhite884 mail: hwhite884@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member @@ -13738,7 +13740,7 @@ givenName: Lisa cn: Lisa Henderson uid: lhenderson885 mail: lhenderson885@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum @@ -13753,7 +13755,7 @@ givenName: Thomas cn: Thomas Henderson uid: thenderson mail: thenderson@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -13769,7 +13771,7 @@ givenName: Sarah cn: Sarah Davis uid: sdavis887 mail: sdavis887@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: community @@ -13785,7 +13787,7 @@ givenName: David cn: David Clark uid: dclark888 mail: dclark888@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -13801,7 +13803,7 @@ givenName: David cn: David Peterson uid: dpeterson889 mail: dpeterson889@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: community @@ -13817,7 +13819,7 @@ givenName: James cn: James Butler uid: jbutler890 mail: jbutler890@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -13833,7 +13835,7 @@ givenName: Kiersten cn: Kiersten Smith uid: ksmith891 mail: ksmith891@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -13849,7 +13851,7 @@ givenName: Robert cn: Robert Lopez uid: rlopez892 mail: rlopez892@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community @@ -13864,7 +13866,7 @@ givenName: Kiersten cn: Kiersten Smith uid: ksmith893 mail: ksmith893@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -13880,7 +13882,7 @@ givenName: John cn: John Davis uid: jdavis894 mail: jdavis894@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum @@ -13895,7 +13897,7 @@ givenName: Donna cn: Donna Doe uid: ddoe895 mail: ddoe895@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -13911,7 +13913,7 @@ givenName: Michael cn: Michael Smith uid: msmith896 mail: msmith896@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff @@ -13926,7 +13928,7 @@ givenName: Michael cn: Michael Davis uid: mdavis897 mail: mdavis897@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community @@ -13941,7 +13943,7 @@ givenName: Marie cn: Marie Martinez uid: mmartinez898 mail: mmartinez898@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -13957,7 +13959,7 @@ givenName: Jennifer cn: Jennifer Langenberg uid: jlangenberg899 mail: jlangenberg899@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -13973,7 +13975,7 @@ givenName: Colin cn: Colin Davis uid: cdavis900 mail: cdavis900@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -13989,7 +13991,7 @@ givenName: John cn: John Martinez uid: jmartinez901 mail: jmartinez901@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty @@ -14004,7 +14006,7 @@ givenName: Thomas cn: Thomas Martinez uid: tmartinez902 mail: tmartinez902@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: community eduPersonAffiliation: staff @@ -14020,7 +14022,7 @@ givenName: Bill cn: Bill Price uid: bprice903 mail: bprice903@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -14036,7 +14038,7 @@ givenName: Jo cn: Jo Davis uid: jdavis904 mail: jdavis904@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -14051,7 +14053,7 @@ givenName: Jo cn: Jo Martinez uid: jmartinez905 mail: jmartinez905@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member @@ -14066,7 +14068,7 @@ givenName: Lori cn: Lori Anderson uid: landerson906 mail: landerson906@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -14082,7 +14084,7 @@ givenName: Robert cn: Robert Lee uid: rlee mail: rlee@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -14098,7 +14100,7 @@ givenName: David cn: David Lewis uid: dlewis908 mail: dlewis908@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -14114,7 +14116,7 @@ givenName: Jo cn: Jo Lopez uid: jlopez909 mail: jlopez909@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty @@ -14129,7 +14131,7 @@ givenName: Karoline cn: Karoline Gasper uid: kgasper910 mail: kgasper910@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -14145,7 +14147,7 @@ givenName: Michael cn: Michael Scott uid: mscott911 mail: mscott911@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -14161,7 +14163,7 @@ givenName: Sarah cn: Sarah Morrison uid: smorrison mail: smorrison@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community @@ -14176,7 +14178,7 @@ givenName: Karl cn: Karl Johnson uid: kjohnson913 mail: kjohnson913@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community @@ -14191,7 +14193,7 @@ givenName: Bill cn: Bill White uid: bwhite914 mail: bwhite914@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -14207,7 +14209,7 @@ givenName: Kim cn: Kim Gonazles uid: kgonazles915 mail: kgonazles915@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -14223,7 +14225,7 @@ givenName: Jennifer cn: Jennifer Gasper uid: jgasper916 mail: jgasper916@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -14239,7 +14241,7 @@ givenName: James cn: James Lewis uid: jlewis917 mail: jlewis917@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -14255,7 +14257,7 @@ givenName: Mark cn: Mark Johnson uid: mjohnson918 mail: mjohnson918@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -14270,7 +14272,7 @@ givenName: David cn: David Davis uid: ddavis919 mail: ddavis919@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student @@ -14285,7 +14287,7 @@ givenName: Donna cn: Donna Vales uid: dvales920 mail: dvales920@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -14301,7 +14303,7 @@ givenName: Mary cn: Mary Langenberg uid: mlangenberg921 mail: mlangenberg921@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -14317,7 +14319,7 @@ givenName: Jim cn: Jim Vales uid: jvales922 mail: jvales922@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: community @@ -14333,7 +14335,7 @@ givenName: Mary cn: Mary Grady uid: mgrady923 mail: mgrady923@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -14349,7 +14351,7 @@ givenName: Heather cn: Heather Smith uid: hsmith924 mail: hsmith924@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum @@ -14364,7 +14366,7 @@ givenName: Lori cn: Lori Grady uid: lgrady925 mail: lgrady925@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -14380,7 +14382,7 @@ givenName: Greg cn: Greg Butler uid: gbutler926 mail: gbutler926@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member @@ -14395,7 +14397,7 @@ givenName: Jennifer cn: Jennifer White uid: jwhite927 mail: jwhite927@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community @@ -14410,7 +14412,7 @@ givenName: Betty cn: Betty Peterson uid: bpeterson928 mail: bpeterson928@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -14426,7 +14428,7 @@ givenName: Nancy cn: Nancy Lewis uid: nlewis mail: nlewis@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff @@ -14441,7 +14443,7 @@ givenName: Jennifer cn: Jennifer Roberts uid: jroberts930 mail: jroberts930@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member @@ -14456,7 +14458,7 @@ givenName: Kiersten cn: Kiersten Peterson uid: kpeterson931 mail: kpeterson931@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -14472,7 +14474,7 @@ givenName: Lori cn: Lori Henderson uid: lhenderson932 mail: lhenderson932@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum @@ -14487,7 +14489,7 @@ givenName: James cn: James Lewis uid: jlewis933 mail: jlewis933@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -14503,7 +14505,7 @@ givenName: David cn: David Langenberg uid: dlangenberg934 mail: dlangenberg934@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community @@ -14518,7 +14520,7 @@ givenName: Kim cn: Kim Butler uid: kbutler935 mail: kbutler935@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -14534,7 +14536,7 @@ givenName: Robert cn: Robert Johnson uid: rjohnson mail: rjohnson@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty @@ -14549,7 +14551,7 @@ givenName: Jennifer cn: Jennifer Walters uid: jwalters937 mail: jwalters937@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -14565,7 +14567,7 @@ givenName: Kiersten cn: Kiersten Gonazles uid: kgonazles938 mail: kgonazles938@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community @@ -14580,7 +14582,7 @@ givenName: Marie cn: Marie Gasper uid: mgasper939 mail: mgasper939@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -14596,7 +14598,7 @@ givenName: Kim cn: Kim Lopez uid: klopez940 mail: klopez940@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -14612,7 +14614,7 @@ givenName: Jennifer cn: Jennifer White uid: jwhite941 mail: jwhite941@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -14628,7 +14630,7 @@ givenName: James cn: James Gonazles uid: jgonazles942 mail: jgonazles942@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -14644,7 +14646,7 @@ givenName: Kim cn: Kim Henderson uid: khenderson943 mail: khenderson943@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -14660,7 +14662,7 @@ givenName: Mark cn: Mark Henderson uid: mhenderson944 mail: mhenderson944@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty @@ -14675,7 +14677,7 @@ givenName: Colin cn: Colin Price uid: cprice mail: cprice@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -14691,7 +14693,7 @@ givenName: Jim cn: Jim Anderson uid: janderson946 mail: janderson946@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty @@ -14706,7 +14708,7 @@ givenName: Erik cn: Erik Johnson uid: ejohnson947 mail: ejohnson947@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student @@ -14721,7 +14723,7 @@ givenName: John cn: John Anderson uid: janderson948 mail: janderson948@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty @@ -14736,7 +14738,7 @@ givenName: Lisa cn: Lisa Henderson uid: lhenderson949 mail: lhenderson949@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff @@ -14751,7 +14753,7 @@ givenName: Mary cn: Mary Lee uid: mlee950 mail: mlee950@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: community @@ -14767,7 +14769,7 @@ givenName: Eric cn: Eric Williams uid: ewilliams951 mail: ewilliams951@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member eduPersonAffiliation: staff @@ -14783,7 +14785,7 @@ givenName: Paul cn: Paul Lewis uid: plewis mail: plewis@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -14799,7 +14801,7 @@ givenName: Marie cn: Marie Clark uid: mclark953 mail: mclark953@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -14815,7 +14817,7 @@ givenName: David cn: David Williams uid: dwilliams954 mail: dwilliams954@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -14831,7 +14833,7 @@ givenName: Robert cn: Robert Roberts uid: rroberts955 mail: rroberts955@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -14847,7 +14849,7 @@ givenName: Jo cn: Jo Smith uid: jsmith956 mail: jsmith956@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -14863,7 +14865,7 @@ givenName: Jennifer cn: Jennifer White uid: jwhite957 mail: jwhite957@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: faculty @@ -14878,7 +14880,7 @@ givenName: Bill cn: Bill Walters uid: bwalters958 mail: bwalters958@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community @@ -14893,7 +14895,7 @@ givenName: Mark cn: Mark Henderson uid: mhenderson959 mail: mhenderson959@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -14909,7 +14911,7 @@ givenName: Mark cn: Mark Gasper uid: mgasper960 mail: mgasper960@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum @@ -14924,7 +14926,7 @@ givenName: Paul cn: Paul Peterson uid: ppeterson mail: ppeterson@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -14940,7 +14942,7 @@ givenName: John cn: John Scott uid: jscott962 mail: jscott962@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -14955,7 +14957,7 @@ givenName: Heather cn: Heather Davis uid: hdavis963 mail: hdavis963@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: staff @@ -14970,7 +14972,7 @@ givenName: Paul cn: Paul White uid: pwhite mail: pwhite@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty @@ -14985,7 +14987,7 @@ givenName: David cn: David Walters uid: dwalters965 mail: dwalters965@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student @@ -15000,7 +15002,7 @@ givenName: Blake cn: Blake Lopez uid: blopez966 mail: blopez966@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -15015,7 +15017,7 @@ givenName: Blake cn: Blake Grady uid: bgrady967 mail: bgrady967@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -15031,7 +15033,7 @@ givenName: Bill cn: Bill Clark uid: bclark968 mail: bclark968@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -15047,7 +15049,7 @@ givenName: Lisa cn: Lisa Price uid: lprice969 mail: lprice969@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -15063,7 +15065,7 @@ givenName: William cn: William Peterson uid: wpeterson970 mail: wpeterson970@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -15078,7 +15080,7 @@ givenName: Betty cn: Betty Anderson uid: banderson971 mail: banderson971@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -15094,7 +15096,7 @@ givenName: Heather cn: Heather Price uid: hprice972 mail: hprice972@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -15110,7 +15112,7 @@ givenName: Marie cn: Marie Peterson uid: mpeterson973 mail: mpeterson973@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: alum @@ -15125,7 +15127,7 @@ givenName: Nancy cn: Nancy Gonazles uid: ngonazles mail: ngonazles@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -15141,7 +15143,7 @@ givenName: James cn: James Vales uid: jvales975 mail: jvales975@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: community @@ -15157,7 +15159,7 @@ givenName: Jennifer cn: Jennifer Peterson uid: jpeterson976 mail: jpeterson976@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff @@ -15172,7 +15174,7 @@ givenName: Kim cn: Kim Martinez uid: kmartinez977 mail: kmartinez977@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff @@ -15187,7 +15189,7 @@ givenName: Paul cn: Paul Brown uid: pbrown978 mail: pbrown978@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -15203,7 +15205,7 @@ givenName: Donna cn: Donna Butler uid: dbutler979 mail: dbutler979@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member @@ -15218,7 +15220,7 @@ givenName: Heather cn: Heather Morrison uid: hmorrison980 mail: hmorrison980@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member @@ -15233,7 +15235,7 @@ givenName: Colin cn: Colin Doe uid: cdoe981 mail: cdoe981@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff @@ -15248,7 +15250,7 @@ givenName: Ann cn: Ann Lee uid: alee mail: alee@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -15263,7 +15265,7 @@ givenName: Jo cn: Jo Lee uid: jlee983 mail: jlee983@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -15279,7 +15281,7 @@ givenName: Marie cn: Marie Price uid: mprice984 mail: mprice984@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -15295,7 +15297,7 @@ givenName: Jo cn: Jo Butler uid: jbutler985 mail: jbutler985@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -15311,7 +15313,7 @@ givenName: Mary cn: Mary Martinez uid: mmartinez986 mail: mmartinez986@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty @@ -15326,7 +15328,7 @@ givenName: Heather cn: Heather Martinez uid: hmartinez mail: hmartinez@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum @@ -15341,7 +15343,7 @@ givenName: Thomas cn: Thomas Walters uid: twalters988 mail: twalters988@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -15357,7 +15359,7 @@ givenName: Karl cn: Karl Williams uid: kwilliams989 mail: kwilliams989@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community @@ -15372,7 +15374,7 @@ givenName: Eric cn: Eric Martinez uid: emartinez990 mail: emartinez990@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -15388,7 +15390,7 @@ givenName: Karoline cn: Karoline Lee uid: klee991 mail: klee991@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty @@ -15403,7 +15405,7 @@ givenName: Bill cn: Bill Johnson uid: bjohnson992 mail: bjohnson992@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -15419,7 +15421,7 @@ givenName: William cn: William Davis uid: wdavis993 mail: wdavis993@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -15435,7 +15437,7 @@ givenName: Blake cn: Blake Gonazles uid: bgonazles994 mail: bgonazles994@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -15451,7 +15453,7 @@ givenName: Jennifer cn: Jennifer Vales uid: jvales995 mail: jvales995@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -15467,7 +15469,7 @@ givenName: Kiersten cn: Kiersten Johnson uid: kjohnson996 mail: kjohnson996@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty @@ -15482,7 +15484,7 @@ givenName: Greg cn: Greg Grady uid: ggrady mail: ggrady@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -15498,7 +15500,7 @@ givenName: Lori cn: Lori Butler uid: lbutler998 mail: lbutler998@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member @@ -15513,6 +15515,6 @@ givenName: Thomas cn: Thomas Gasper uid: tgasper999 mail: tgasper999@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password -eduPersonAffiliation: member +eduPersonAffiliation: member \ No newline at end of file diff --git a/testbed/authentication/directory/Dockerfile b/testbed/directory/Dockerfile similarity index 100% rename from testbed/authentication/directory/Dockerfile rename to testbed/directory/Dockerfile diff --git a/testbed/directory/certs/ca.crt b/testbed/directory/certs/ca.crt new file mode 100644 index 000000000..e05f05fe2 --- /dev/null +++ b/testbed/directory/certs/ca.crt @@ -0,0 +1,29 @@ +-----BEGIN CERTIFICATE----- +MIIFCzCCAvOgAwIBAgIULEwEJFwT49CiSPKOA5EHGVKGl0gwDQYJKoZIhvcNAQEL +BQAwFDESMBAGA1UEAwwJZGlyZWN0b3J5MCAXDTIxMDkxNDIxNDMwOFoYDzIwNTEw +OTE1MjE0MzA4WjAUMRIwEAYDVQQDDAlkaXJlY3RvcnkwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQC+/SikxGUFYUiKjghLFPRMaYLZUHyOMWOyCIQSkZrt +Si6llB7JhN+tCaFgibPSNrKzOpF7IRJBlaEMAKN47Fncy7uGPg/3KEtuCLRUxbYv +1LgjZl2J0w/SROYIX0bsMEuThojaIxuv4D1fdaF3S7/sKnXywIncZtAqMhISiC9q +Kq9xT4twiST7SDPY/u3pdVdAjBg4R5XlF69XWtKaeCoEup9lgvyLT5dQBxdA3q3N +Af8UnpgZjHPxa6na7BjXwOyy7uzlUmTd/M0UMHuAreCBXMJrfrVBTnFYKyPtDYAP +mFacA+lsX0a5QjOMIP0JW5dYAKw8SFU9rzGcqdB/a2mZwxvmrY5CFVI8SZho1JK8 +y4O3HQbzrqQ3b+t5UyZt1VnCDalAZyAP+Fp0TPhlIjQpm0hc7UVyhVuDAJJeV6Sk +TyAf8othu6wREsaOkfSNwrSGVX7CMxjXxEAIQfqaLfB7xAMc7mwUn/Lac6I6L2+w +a3Ds9xwpSoxHEAYVAJmpAtT8FFh5i0Fk6wqhUIO8IP5az7ATn1Q8MnYS/Mvne5JN +/6L2CABqz0ZDzqHosTQLZ1qEBO+mhXyWsE7Pc4Ky+pmTh8xsP356nLkchvBTUlYp +BzsBG+bDCNy8mQ0z+0oEngdZgTKYK+CqejDe0iOPw/ICkh3eImyQEa3m8qep+X78 +kwIDAQABo1MwUTAdBgNVHQ4EFgQUvNYYG2Stq3PcKD3IT3GlG64ma6gwHwYDVR0j +BBgwFoAUvNYYG2Stq3PcKD3IT3GlG64ma6gwDwYDVR0TAQH/BAUwAwEB/zANBgkq +hkiG9w0BAQsFAAOCAgEAaai3vJuEsDOIX74/byY50cMmqRo+lBZuPBZANJjaKSn3 +LORSW4PqwYfyzUkdw68dj2FPNmmg9p0xmSS1eMala2PW7UGwImjcmhV+YfdP15VE +t5FcaLvi32SfSyu9PWpRRyP2ahSzaM75HWMMKfbdzgGDGOkU6UIwKyWsO5UApjQ8 +b+w5IMAK9YvmuQGaaXePDM8sFM3+NQBvsdqnsCefxx0j8FmjF3PjpTmdcm4Rlk8E +yVigb/txwmKdJutcEeFWOnQVNxWugLmYW8P/s5W5IgpIm/8wdEz1bXXV0qGD/LgL +Rhr68OtmFoVp+C6Yf0fDS1yCtmkYlO+RyYtAMOv0G29Xe+MzLQW42fAHXvBGYh/0 +F258TLHjZDOs9nHIc4lQfT7k/MusY4g9RfYSXx8Ts7kXyfyGfj6D5E/kutfXQlH3 +DYjQ/B69dhU7bkEX8nc1xwzHU18pa+APbXqjaU3JewdxY6n+PIGN4ZLZrJ3zgNRj +tGykxlnPg8oAX3HX+ssh1OpU5VMPR+4hOdJkajk6U5Oyv77h4gsbUGCIGXC+0reA +k/jHoSCloifgQ4F3WdDGjPlWO6Hgvy2/KM+JqBX/9nF/Dc0bGfa3mmYXK56xQCPb +pNd6h2elVtlmt6iZgs4WA1uCwira5p0VCCutHgeGyWK4cAE60MFdRnzRZ2r1GuU= +-----END CERTIFICATE----- diff --git a/testbed/directory/certs/dhparam.pem b/testbed/directory/certs/dhparam.pem new file mode 100644 index 000000000..0ad3539ed --- /dev/null +++ b/testbed/directory/certs/dhparam.pem @@ -0,0 +1,13 @@ +-----BEGIN DH PARAMETERS----- +MIICCAKCAgEAivlNnloXfNvrvjLMALDtw4/H330xGfEZkO88vBG30xfDB8930JF/ +dpOQNB2lXhtyoCA5FYLI0Ml8VRzASR0nmVsjg1jqycRSZtPEUCyU5KLenWJerThQ +PCPPHgM9JNfSb9GVEnyBubgTJrRjRr0Fq6/T+sHI1DVFgrIcr1iIpwjzv6AtJ4GX +7ff3QxRI5wJ9EgSqGmyAZBBP91hvg702sENAru3TxL92uBY7yx1isr4Uo4v/CE/6 +DY9q5hEyVWZzb49msZ7WXiMvVwgH2P68O90x/Dzom27mQuutW0a5sHWLFvR6RzHl +f2LDO1uFl4RifVFUe2PNXbeb9KGTFx+4HFWPojYR2L1UlE+f1fdwh8PAPB0xBTgn +jMYra0dIJcCc9Mg/PbwJ9LMkIW7APuEvx90PlCmPs2ZI67EPAKlnDDtFsI6H0Sv8 +mAZt4oMBHFZoK2+4dcjLtDaqz8Stx9ICTFqk1YETcRlK9TQDRO0ngtkQJoKJtM7F +sSP/4LcX67Nd3aE9bSY977JQec6KTGXJCa2/dIIruni3p6oFmHzSlXH+TxbtaLku +VtYDqzRYR9vG5fsanOJlacoDpBtDEMlRVg+d5v811Z4cEH1RbEy/diGGEM/8DAxq +F5S9tqzQa7tk/1IuQX9SQcBWDmXEL76L8cxijmEeK1bRH9XwNLMjyEsCAQI= +-----END DH PARAMETERS----- diff --git a/testbed/directory/certs/ldap.crt b/testbed/directory/certs/ldap.crt new file mode 100644 index 000000000..e05f05fe2 --- /dev/null +++ b/testbed/directory/certs/ldap.crt @@ -0,0 +1,29 @@ +-----BEGIN CERTIFICATE----- +MIIFCzCCAvOgAwIBAgIULEwEJFwT49CiSPKOA5EHGVKGl0gwDQYJKoZIhvcNAQEL +BQAwFDESMBAGA1UEAwwJZGlyZWN0b3J5MCAXDTIxMDkxNDIxNDMwOFoYDzIwNTEw +OTE1MjE0MzA4WjAUMRIwEAYDVQQDDAlkaXJlY3RvcnkwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQC+/SikxGUFYUiKjghLFPRMaYLZUHyOMWOyCIQSkZrt +Si6llB7JhN+tCaFgibPSNrKzOpF7IRJBlaEMAKN47Fncy7uGPg/3KEtuCLRUxbYv +1LgjZl2J0w/SROYIX0bsMEuThojaIxuv4D1fdaF3S7/sKnXywIncZtAqMhISiC9q +Kq9xT4twiST7SDPY/u3pdVdAjBg4R5XlF69XWtKaeCoEup9lgvyLT5dQBxdA3q3N +Af8UnpgZjHPxa6na7BjXwOyy7uzlUmTd/M0UMHuAreCBXMJrfrVBTnFYKyPtDYAP +mFacA+lsX0a5QjOMIP0JW5dYAKw8SFU9rzGcqdB/a2mZwxvmrY5CFVI8SZho1JK8 +y4O3HQbzrqQ3b+t5UyZt1VnCDalAZyAP+Fp0TPhlIjQpm0hc7UVyhVuDAJJeV6Sk +TyAf8othu6wREsaOkfSNwrSGVX7CMxjXxEAIQfqaLfB7xAMc7mwUn/Lac6I6L2+w +a3Ds9xwpSoxHEAYVAJmpAtT8FFh5i0Fk6wqhUIO8IP5az7ATn1Q8MnYS/Mvne5JN +/6L2CABqz0ZDzqHosTQLZ1qEBO+mhXyWsE7Pc4Ky+pmTh8xsP356nLkchvBTUlYp +BzsBG+bDCNy8mQ0z+0oEngdZgTKYK+CqejDe0iOPw/ICkh3eImyQEa3m8qep+X78 +kwIDAQABo1MwUTAdBgNVHQ4EFgQUvNYYG2Stq3PcKD3IT3GlG64ma6gwHwYDVR0j +BBgwFoAUvNYYG2Stq3PcKD3IT3GlG64ma6gwDwYDVR0TAQH/BAUwAwEB/zANBgkq +hkiG9w0BAQsFAAOCAgEAaai3vJuEsDOIX74/byY50cMmqRo+lBZuPBZANJjaKSn3 +LORSW4PqwYfyzUkdw68dj2FPNmmg9p0xmSS1eMala2PW7UGwImjcmhV+YfdP15VE +t5FcaLvi32SfSyu9PWpRRyP2ahSzaM75HWMMKfbdzgGDGOkU6UIwKyWsO5UApjQ8 +b+w5IMAK9YvmuQGaaXePDM8sFM3+NQBvsdqnsCefxx0j8FmjF3PjpTmdcm4Rlk8E +yVigb/txwmKdJutcEeFWOnQVNxWugLmYW8P/s5W5IgpIm/8wdEz1bXXV0qGD/LgL +Rhr68OtmFoVp+C6Yf0fDS1yCtmkYlO+RyYtAMOv0G29Xe+MzLQW42fAHXvBGYh/0 +F258TLHjZDOs9nHIc4lQfT7k/MusY4g9RfYSXx8Ts7kXyfyGfj6D5E/kutfXQlH3 +DYjQ/B69dhU7bkEX8nc1xwzHU18pa+APbXqjaU3JewdxY6n+PIGN4ZLZrJ3zgNRj +tGykxlnPg8oAX3HX+ssh1OpU5VMPR+4hOdJkajk6U5Oyv77h4gsbUGCIGXC+0reA +k/jHoSCloifgQ4F3WdDGjPlWO6Hgvy2/KM+JqBX/9nF/Dc0bGfa3mmYXK56xQCPb +pNd6h2elVtlmt6iZgs4WA1uCwira5p0VCCutHgeGyWK4cAE60MFdRnzRZ2r1GuU= +-----END CERTIFICATE----- diff --git a/testbed/directory/certs/ldap.key b/testbed/directory/certs/ldap.key new file mode 100644 index 000000000..3756f05ce --- /dev/null +++ b/testbed/directory/certs/ldap.key @@ -0,0 +1,52 @@ +-----BEGIN PRIVATE KEY----- +MIIJRAIBADANBgkqhkiG9w0BAQEFAASCCS4wggkqAgEAAoICAQC+/SikxGUFYUiK +jghLFPRMaYLZUHyOMWOyCIQSkZrtSi6llB7JhN+tCaFgibPSNrKzOpF7IRJBlaEM +AKN47Fncy7uGPg/3KEtuCLRUxbYv1LgjZl2J0w/SROYIX0bsMEuThojaIxuv4D1f +daF3S7/sKnXywIncZtAqMhISiC9qKq9xT4twiST7SDPY/u3pdVdAjBg4R5XlF69X +WtKaeCoEup9lgvyLT5dQBxdA3q3NAf8UnpgZjHPxa6na7BjXwOyy7uzlUmTd/M0U +MHuAreCBXMJrfrVBTnFYKyPtDYAPmFacA+lsX0a5QjOMIP0JW5dYAKw8SFU9rzGc +qdB/a2mZwxvmrY5CFVI8SZho1JK8y4O3HQbzrqQ3b+t5UyZt1VnCDalAZyAP+Fp0 +TPhlIjQpm0hc7UVyhVuDAJJeV6SkTyAf8othu6wREsaOkfSNwrSGVX7CMxjXxEAI +QfqaLfB7xAMc7mwUn/Lac6I6L2+wa3Ds9xwpSoxHEAYVAJmpAtT8FFh5i0Fk6wqh +UIO8IP5az7ATn1Q8MnYS/Mvne5JN/6L2CABqz0ZDzqHosTQLZ1qEBO+mhXyWsE7P +c4Ky+pmTh8xsP356nLkchvBTUlYpBzsBG+bDCNy8mQ0z+0oEngdZgTKYK+CqejDe +0iOPw/ICkh3eImyQEa3m8qep+X78kwIDAQABAoICADYKjCWTLMKI9G3AIricBURZ +1pyHGbdiYkNOBZD7gksCYpCXiN6cqm3b+73FOQySTZ5JREEC6peELz2mMJtWxVak +jzs89GeLD0zjSaNzDkoadsANhwoonqFwvWZBD2Blif0EZFTU+lCZssQAFOAcnwHE +QfueX2Pt85j88gAsaL4xtdLqHxqIs94mYAVWnRsiCL5K5c+G8fMQ8JxXJqBuv/T2 +mYOvvKXur3IFj57bY3JOzk6XUZJpG6WEQVug0qa6AD/hO0boOYJWtfCwh0Gx8YSp +KpogEEmaWJgKHPBGkaXYBSnAMZxomSpygQN1kiPDtt8/0Xx9OyFpITCjHEvxqL9L +7ce0hebPoG7Ry+QD7YmeERzpdTSEulYywdeoRJMHQtH7AknH1xf77xYC7qGbCeRg +y9TMTQIt8f5gVcFBQlfEoNf+k5Z1LFHG0TpAGrOhy9KFurd+t3PLQAolsjtCA0NS +C366eztBCvQzdOyA70tQoEmbZer5s1AedqsfcSL1aaYm5DmpbfG33y3TLgV7Rl4r +O0jrtXneLSox6ew99hjYuqg1HOTQC5DMPT9KmfqZJQUBNxlpgqIyFOzZp0ooDKWY +6zEdgZLVd3vzX6Q5U7xpMR4/5rypPDtV9KnJxvfptmCK8cygmgFnmoLvuqvnb0k4 +Id/dY0nmBVZQvpdyRwsBAoIBAQDt5AwWhAnwSQRW7NSBltqx5pbDe27/Pl3HgrbC +3WU2sTyCyP6aeCj2wOWWsxQ4AKqGrWuUXUIQHsLJOo1+SlomMUWw+4Gw0ciYNDu3 +b+ZhUQAaM1QqnwVGOJwuEnM/AgG+V7aeuh8S044SW+G5YiHn8rSzsYk8OynEiOoV +E/qT66Jaljgl7+KNiQL1stdEHwnK3PwJOyFciZI4DVGumywwZHJT5230AO+MqcHN +5E7s4JQhTOcy7iwPCGLAe63FMWo7Lai2ApHVdXMSjmgVYKHxZo6NlsvpXNipQmCe +rdW7VCpTChpt/CGQ8I0JNwd0QmjKxEOfkp7xFi+7iEfH6BAJAoIBAQDNhxmCT2tQ +AfNxv9Hzw18tyV8nmMyOD45gu6rKNTgqnZIpoT12gCV5OB9cTvje/5j/LU8b6012 +gUZCG+90XF+1vFFRhr/k0q1gr+gmbrwxBghO/bflz+5JL4w/P9QLcgwr5ewVBkGV +3yu2MAmGrU4EjDb/ZFpDWgjzCw+q2yD6xoM+XU49O+4TDq6q1PidGGTgP7UyuWMD +U/rtjOmgULckA4bMi3zJ0OnoGR/uq1RmmjYLAZQ+Ea22YZuLp1OhUsS41yusIAS7 +otd3+jikqa/FBZnbxb3qXZdC19xwepYG8qf7w+LfJ28Lw9GIdcJfp9xh0BsS0lTW +KqbJRwdmZpa7AoIBAQDD+va2aeriKNVJY2yiogvjOcuEmiDUaKXLonU8TjZ++z6V +pE6UJV/iAQJjx35lsK7Lqv0Qyk+NhjoEm5dLrqdcBYWbi2fJqtouAgIcWjSagaeq +7hRt1Hn84tBP6GVHSDj1fb92PnExClZl64onNqAmPT3/N8iOdVMwlXb7DG2IBTzI +ki8JmfmzjmeA0OglN8jSdoGwfSU73h42zUo4pZ+e8nF5jBR6S3cOFCAUpf0bitye +HoPt4mcrr0Xju0BqTw5sWG5AHBfWmh7F78nxqp1fiZTxMoUk6JeZwZRlxWJqJKmF +pbImX+urQ3F9YPdkIP3B5jSrtpf4l8WVIm24VAc5AoIBAQDLJcBXBz0hBeylAF77 +vJ71WNePAf8eY83tW1HDMLtlk/4G2/MukBd6K7kDuqNPeAC4KQbKp9gXTEwvyAD1 +WODZd1xBYxmFiaAJs5WZd1bYdgf8W9hLdS0odbEAS4zCC2ZwdYDWfyqQgthn6i9g +SSiWYilyYrS9Yd76rHI+BP4iIdlT6VIOQJBfkeGfxYY/cP80kIP/sTJm9blO2DuM +VHvRQxMYVr9vk+m/miXv+LUh/UdxtYvblgnH/c6LSUbmbDM6KKRoK/XBqYGke1VF +nNu5uIGNs3S2lO+QCGFBZEmqcGsN9V7oB8hBLrqLUSpg9kBlBhfckL1+OwZEaMqt +srVFAoIBAQDG6mVeZ6IFBXVk0exij4DIeLHBeEQxnDKK9B7JgsmeaNKU1CFxJbUT +zOM0IsSpxExI2NdkShjHOTlCz43D+EBjpTc7+hLQeUBl8FTamegeU3ACiAuahQoS +PcNNmFGy1e2eNtP839X+39k5fciSvgY3FF58czNeYv2XQemS07IIll+9nV/j+Bsg +Fd2M/Oj2DIcXSE+9OnyIyC0smhXwR8dPhJOPH9C/ww4oQOgVYthBAehSBtiUle7v +qeG1QtF+ODvw94nUxtuesuZ/juHSxqtKXRm+Nho7Do4U9wXhAg5w4rzKZU3yMW/k +Fq6aGlx2+ZhVYPYkzyQGiiPhkx0V1T2d +-----END PRIVATE KEY----- diff --git a/testbed/reverse-proxy/certs/star.unicon.local.crt b/testbed/reverse-proxy/certs/star.unicon.local.crt new file mode 100644 index 000000000..efd24fe9f --- /dev/null +++ b/testbed/reverse-proxy/certs/star.unicon.local.crt @@ -0,0 +1,30 @@ +-----BEGIN CERTIFICATE----- +MIIFFTCCAv2gAwIBAgIUFsOsEwK1AdLuTYYEGCNzC9hIElcwDQYJKoZIhvcNAQEL +BQAwGTEXMBUGA1UEAwwOKi51bmljb24ubG9jYWwwIBcNMjEwOTE0MjE1NDU3WhgP +MjA1MTA5MTUyMTU0NTdaMBkxFzAVBgNVBAMMDioudW5pY29uLmxvY2FsMIICIjAN +BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAnzMWyelX4++Z8iS8KuIJtroJvPsl +ZbVnh/T5TH2g1t7xkyYBaj2xOq5yUuUqJxw0sRpo3m3R5oUUeacTmEFr0N5tVSZe +vDohH1tjJGgz4YBDMxiN//jVCWs10K0HFdQW/t5xRY8Ahjl1R/1D+NX/jKgUKTQn +1EhH1ik8D2MiTvsFDjqI1mHjfsXjF0SZKp39bLNHSuR+STyRph8F/o5CEr6phYc2 +i9DBKYvHwyWUxHzC/STuWwHPtBq/8jmpQSoEmtjOCt3Dv4czEPa0S2nHnvQyt3Fm +Tb0l7xjdGJrCkt2h1ImP5xvdCDIBIfQnDmPA4wb1LFutRNYjQsY2zujAm7rMxJxB +Bp4EJHz94uKSk8FwhR7jO1BmLuKixKKetvgahOlp2VY0YD+NmZ7sKeKxqGvbiDyf +elQu4EEUSWDg0EPLFpM4WSrTKeMVxXkkT8BeLrg+VvUiB77aKkshcV67Tah2lPAg +dm78wvYT37buqJoJps8mfztiy8t0D412gtDDfTeV3wjX1w3enKARKG53yKtaQRcD +Uax3l/wajrAJX4anzUuJ5T5Jyg/4GSI0OQBfov56pNhaKxuvzBZnwS4qys6eLWei +qsRzqaoszX/sXkgY2BQDQ6b/gXPvY7W30kRByHd23+baSs/80ANU2tBxNs2ynAMd +etqA1Xu1e4ODt/cCAwEAAaNTMFEwHQYDVR0OBBYEFFrAjKwSavl2E88gmTdft4bB +3DtxMB8GA1UdIwQYMBaAFFrAjKwSavl2E88gmTdft4bB3DtxMA8GA1UdEwEB/wQF +MAMBAf8wDQYJKoZIhvcNAQELBQADggIBAAd98df4O+gSk7JCT5E1QDcOTQ0w25wp +gWE8+a4fElc7vyz5P4EEs5tpDTLfAanSLrASxnFSmRqPCrW9HV/mFAPdK9MLRgG5 +XLcjATbHgcXD071MsPJ2hO6sCPS+7LSE72873Dp89RBDNCb0pQb/4iMN0Y5BKznR +oklrWMAIr+0Ei0iBuPHyHgIMCco9a+5kwMxzhhSVYRY03pHjavo3kRXY86UMeDVx +1v122/Y5GS6ohegnkRI2QKwn/3KgOTa4f33oFk69yOSDLu7c1pzJoLgYMzKg7mTO +iPW2rhZDY+JXXYnHZmFPLgA5FqBxAnrE7wnIM8DFEMrmETNf7PRwfzFjjuYuGdSV +YZisBMjVkLJzX06tVK7OAmVkwzFWp+4P7XgD6NqvH84I+2A1on3kK7gOgqI/oMhE +VxpanKSuzjlEVtlxjSAyv7Y5nrwwEsuh7Nas+RboxTJRSzws7mi8F62QxYVz6S8D +K3cHfYcJXKRRpmpMGnau+Jb1Rf9eftm6kRO1qdjg6FV0iIidB2bO8dkt/me2kpD7 +hWASggtuW7CLHj+kztPOitAoImCQtk1QM17bMFxXyqlP3twOpnYXFdSTTM5qvAqy +rzrMHDtSL9gON7Iy5La9Q2imw6+jjxM6Stei1XWmI2BhIJe175NeVWxak6j2ZOvh +tEQh89PhqUVL +-----END CERTIFICATE----- diff --git a/testbed/reverse-proxy/certs/star.unicon.local.key b/testbed/reverse-proxy/certs/star.unicon.local.key new file mode 100644 index 000000000..8aec397bd --- /dev/null +++ b/testbed/reverse-proxy/certs/star.unicon.local.key @@ -0,0 +1,52 @@ +-----BEGIN PRIVATE KEY----- +MIIJQQIBADANBgkqhkiG9w0BAQEFAASCCSswggknAgEAAoICAQCfMxbJ6Vfj75ny +JLwq4gm2ugm8+yVltWeH9PlMfaDW3vGTJgFqPbE6rnJS5SonHDSxGmjebdHmhRR5 +pxOYQWvQ3m1VJl68OiEfW2MkaDPhgEMzGI3/+NUJazXQrQcV1Bb+3nFFjwCGOXVH +/UP41f+MqBQpNCfUSEfWKTwPYyJO+wUOOojWYeN+xeMXRJkqnf1ss0dK5H5JPJGm +HwX+jkISvqmFhzaL0MEpi8fDJZTEfML9JO5bAc+0Gr/yOalBKgSa2M4K3cO/hzMQ +9rRLacee9DK3cWZNvSXvGN0YmsKS3aHUiY/nG90IMgEh9CcOY8DjBvUsW61E1iNC +xjbO6MCbuszEnEEGngQkfP3i4pKTwXCFHuM7UGYu4qLEop62+BqE6WnZVjRgP42Z +nuwp4rGoa9uIPJ96VC7gQRRJYODQQ8sWkzhZKtMp4xXFeSRPwF4uuD5W9SIHvtoq +SyFxXrtNqHaU8CB2bvzC9hPftu6omgmmzyZ/O2LLy3QPjXaC0MN9N5XfCNfXDd6c +oBEobnfIq1pBFwNRrHeX/BqOsAlfhqfNS4nlPknKD/gZIjQ5AF+i/nqk2ForG6/M +FmfBLirKzp4tZ6KqxHOpqizNf+xeSBjYFANDpv+Bc+9jtbfSREHId3bf5tpKz/zQ +A1Ta0HE2zbKcAx162oDVe7V7g4O39wIDAQABAoICAAJ67Eb3AKyHZhGUqu3MGbSk +D1THYNzFx7ghg+TCLEhMrtzJAcqi7WjpoNRTx6VWVifQLoQQl+2MczY1+SMtGb3m +STPDZkRub2eqp8/AY9aGhgV8w3GScdc0uWDn4S1g4X7U/lTEFpEAwif99RoiU1ng +oHfH3Tr8aUoX2FyxAa7TUE/Zb5pPahjmglQxeGVmkrUn0duD1cfUTryUzSYbF0Jt +f/yZj6r79JZuHA2ZP0kUXIFPGvuF+rNmm0jtxwpB2lKDQCqBK/SG6a/A+CwYmMiM +K2IaPSrG4Jlp/L/OYWuiUkwaXIiQMZBYHxZlVFpwCWhACn/Hadqhr2jx55avn5iH +NPHGJiUuSkF4p183tUyYY2aDptu5cGQk4WpfiQjzt/FIkQDx8KF3eE4ZVMYT4mV2 +wPJE+Yg4dO+704uceoM/J5BwWQEUuUtNIlWIRogOYkjQzuMi9zyGu9uIFi5+JNb9 +LpNORfTWNOTYasEi9/v8+RxwSZ6FR2/MZaroU8kXljTgqhomP35gERlwB/yAjQxG +C9tO4lJwGfzyVMTU6x2R7mcRaiUSNIZ1AMN86JX+Z+RG+rGGNAEreu/osklscPxE +dhtPbi0FJzJl+bfW+9JWX7VkwNfA1Np/zqSydEI3dTwwe9ibAQ9QiAgkMbfeqIBX +G3hZLoqowGvtLeypbaxBAoIBAQDNYaIMjDFknqIAwVYkJXVyRA1qDsITBQJ5111+ +eHfRaEvnq+ksTRP1K6VAKM1RgGTRlTlMC+qthp1MWJrWT55d35+XS3JMUcrAB85k +P8hIJSe/zaiiI+KhRxF2ABSxdty/QPyfcvPXelGPlf7mbumGlTzPoiFwvzhTVqi3 +nSWWVVX8X5+PP0v1jGEHbTmdGOg9g22fiitEW4iovSUM/wRtT+bpEQlTKC7fwiaP +DN6XCTG3GRQZrPuiTGXrvyMYmAbHfImqYuEiwm0hXiqdxfB1WfmVZ0qMmrpzL9mc +HqEZraIxemSDNCxtDj/V4n9F0Pvs4ow5yEnFyxl8+FjtKpHhAoIBAQDGb6ctMByT +DM87lhgh1pn/8VGU5K1RaMzPtMXuY84htTsixFQ4jW7d3y3hLVHfDVJbvSaXXVp/ +gNk0mbkQ7gkcoJja99Ohe5kzMWcB0iRzX5ceoFWZ22uUU5g4Pg0cwscogPGdVjoW +sxKLczVhpN2tIVFTf6aHtBroU7wWHTVEorDquy8W5VzRvuzVNjpnrGXL1PtmA7m7 +f1a0eHN+cknJXarBcngJ0nVyGT2gbJSVfuPlmhrs7gg87zYeEqXs2gwgnM67HxRE +nYp4Or/K6qx1NcaPGTadYC5kANrP5L7nBJEoI9MvFBx7qvJop799fqHHCN05sH+8 +7rtXyXX+UbTXAoIBAB64iu/LjJvbaqooQUVY4Q99hHAn0vnbVvp4r4B6bpnBOxFl +UpSQ1vpmU+qb79JQHUSISLDKW4knSKIh4s9Jy4uJJqsP2wH1fhlpUYMHU2MPQ7nZ +/m56ZazwH3mCG5ZMDEsDYoZLQJQrtMWAj0dSsdWyvwzj2JKv17IHlWcZt4ScMSd1 ++j0IH8mT/POKcALCtgJ1hVFG7p/j/TYYTNF71+KuAAE+ziFFMnW/6dqd9zGqa2hS +9QG+MUmemeRAi/Ri0SjHxSPadIipgn9qQX+mGwjCs6WYdLtBbcBLGQbUQg7APTGf +eCd0B20so3nPzm/YCcbuQEFoZziR37ckwtB+/KECggEAOEs0gf1EHfNkVuMdtXvL +9G/hVPwKry2r7MC75gUqVSW0wQgxXFnDOe42dcsFjuGYm63tZMN3CPTkqadyePsO +WrC0rGnh/82wiHVbY4jaDmDv3iBeKGe2/T050brIvYAEP9lUse3kTMxAVo84dZrv +yE3LZISyGY1elMoscZmXowEEb5LqqPQogNhJF7Nqnj6qIkkpiKdF6YsWbdw954FE +rXuFFZwDscWiy9udQAWNoVt+C4TMXqqoa6DxGVbw+2BgUGArxanrdgu7XKBOCKLK +ifXXfoEInVzLzFLxwEiEX8VL6LdBEfoCmpLEciwkhtWFz5EUMWmA03hmbWEZuCw1 +wQKCAQAxLN0Q5TbiXic6sfesSrwLNrK1l6eSj6+fetYWZNrKLPXRWzuplOCWziOx +7qw0QQ0UM99WEhfsFX9fdfKwdd2w0QBvYjNxvmLmnQlA2KKKW3C26rKAYg+uO/B3 +ZY6H/regllbArysm/fBL+Zv9u1qL9t7dZNMAkBZApTfCkym9NPc5APQV4KMVRcMu +bMF+N0AabPLbBQtKl9wwoxa1eMxvS9uYIySK/3RZMu+JuuAm+QweJhBixdJ1ao10 +MLd83NCb5wn2nMSECBvizO1I9nxwoBw5RaGFyr6eEA6Vg7ciGdJxznUTdcCZ6dkI +ev8pvFafpDvSERVPbzkDg0bjNho3 +-----END PRIVATE KEY----- diff --git a/testbed/reverse-proxy/configuration/certificates.yml b/testbed/reverse-proxy/configuration/certificates.yml new file mode 100644 index 000000000..88abe448d --- /dev/null +++ b/testbed/reverse-proxy/configuration/certificates.yml @@ -0,0 +1,9 @@ +tls: + certificates: + - certFile: /certs/star.unicon.local.crt + keyFile: /certs/star.unicon.local.key + stores: + default: + defaultCertificate: + certFile: /certs/star.unicon.local.crt + keyFile: /certs/star.unicon.local.key \ No newline at end of file