From 30e7b0a5db66f2585def7391e687883a7ae377e3 Mon Sep 17 00:00:00 2001 From: chasegawa Date: Mon, 13 Sep 2021 14:15:39 -0700 Subject: [PATCH 01/18] SHIBUI-2063 intermediate commit --- .../admin/ui/security/model/User.java | 11 ++++-- .../ui/security/service/IRolesService.java | 13 +++++-- .../ui/security/service/RolesServiceImpl.java | 38 ++++++++++++++++++- backend/src/main/resources/application.yml | 2 + .../unicon/shibui/pac4j/AddNewUserFilter.java | 28 +++++++------- .../shibui/pac4j/BetterSAML2Profile.java | 7 +++- .../shibui/pac4j/Pac4jConfiguration.java | 2 - .../pac4j/Pac4jConfigurationProperties.java | 2 + .../net/unicon/shibui/pac4j/WebSecurity.java | 15 ++++---- .../src/main/resources/application.yml | 27 ++++++++++++- 10 files changed, 110 insertions(+), 35 deletions(-) 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 cb769c662..76eb44899 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 @@ -113,12 +113,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(); } @@ -145,4 +148,4 @@ public void setGroups(Set groups) { public void registerLoader(ILazyLoaderHelper lazyLoaderHelper) { this.lazyLoaderHelper = lazyLoaderHelper; } -} +} \ No newline at end of file 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..373843781 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; @@ -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.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/resources/application.yml b/backend/src/main/resources/application.yml index 74ae43689..4035d8549 100644 --- a/backend/src/main/resources/application.yml +++ b/backend/src/main/resources/application.yml @@ -14,11 +14,13 @@ # 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 custom: attributes: 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 548380712..eb6f9c7ba 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 @@ -4,8 +4,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; @@ -17,6 +17,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; @@ -27,7 +28,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; @@ -43,13 +43,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; @@ -59,16 +59,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()); @@ -90,11 +84,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..bbe33694c 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,10 @@ public List getGroups() { return (List) getAttribute(profileMapping.getGroups()); } + public Set getRoles() { + return (Set) getAttribute(profileMapping.getRoles()); + } + @Override public String getUsername() { Object username = getAttribute(profileMapping.getUsername()); @@ -49,4 +54,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..37a33b5ae 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 @@ -107,8 +107,6 @@ 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); 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/resources/application.yml b/pac4j-module/src/main/resources/application.yml index 4dd28dc1f..ef2d684d0 100644 --- a/pac4j-module/src/main/resources/application.yml +++ b/pac4j-module/src/main/resources/application.yml @@ -6,4 +6,29 @@ 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 +# 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 \ No newline at end of file From c30e1afc6f0b18a0100fa7ee4d4cf50ad0a856a3 Mon Sep 17 00:00:00 2001 From: chasegawa Date: Tue, 14 Sep 2021 08:28:48 -0700 Subject: [PATCH 02/18] SHIBUI-2063 wrapping up test adjustments --- .../ui/security/service/RolesServiceImpl.java | 4 +- backend/src/main/resources/application.yml | 1 + .../src/main/resources/application.yml | 3 +- .../pac4j/AddNewUserFilterMockTests.groovy | 55 +++++++------------ .../shibui/pac4j/AddNewUserFilterTests.groovy | 7 ++- .../shibui/pac4j/Pac4JTestingConfig.groovy | 9 +++ 6 files changed, 40 insertions(+), 39 deletions(-) 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 373843781..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 @@ -17,7 +17,7 @@ @Service public class RolesServiceImpl implements IRolesService { @Autowired - private RoleRepository roleRepository; + RoleRepository roleRepository; @Override public Role createRole(Role role) throws RoleExistsConflictException { @@ -61,7 +61,7 @@ public Role findByResourceId(String resourceId) throws EntityNotFoundException { @Override public Set getAndCreateAllRoles(Set roleNames) { HashSet result = new HashSet<>(); - if (roleNames.isEmpty()) { + if (roleNames == null || roleNames.isEmpty()) { Role r = getRoleNone(); result.add(r); return result; diff --git a/backend/src/main/resources/application.yml b/backend/src/main/resources/application.yml index 4035d8549..671000aa6 100644 --- a/backend/src/main/resources/application.yml +++ b/backend/src/main/resources/application.yml @@ -21,6 +21,7 @@ # 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/pac4j-module/src/main/resources/application.yml b/pac4j-module/src/main/resources/application.yml index ef2d684d0..78a3c1644 100644 --- a/pac4j-module/src/main/resources/application.yml +++ b/pac4j-module/src/main/resources/application.yml @@ -31,4 +31,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: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: --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 From 9e11bdb27bc836372f9770689b77c57df3129ac0 Mon Sep 17 00:00:00 2001 From: chasegawa Date: Tue, 14 Sep 2021 08:58:58 -0700 Subject: [PATCH 03/18] SHIBUI-2063 note in yaml --- pac4j-module/src/main/resources/application.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pac4j-module/src/main/resources/application.yml b/pac4j-module/src/main/resources/application.yml index 78a3c1644..ef1c5ee68 100644 --- a/pac4j-module/src/main/resources/application.yml +++ b/pac4j-module/src/main/resources/application.yml @@ -25,7 +25,7 @@ shibui: # forceServiceProviderMetadataGeneration: false # callbackUrl: "https://localhost:8443/callback" # maximumAuthenticationLifetime: 3600000 -# requireAssertedRoleForNewUsers: false +# requireAssertedRoleForNewUsers: false #default # saml2ProfileMapping: # username: urn:oid:0.9.2342.19200300.100.1.1 # firstname: urn:oid:2.5.4.42 From 4d271733fd8911d3d3736d511b69a20833c6e57d Mon Sep 17 00:00:00 2001 From: Jj! Date: Tue, 14 Sep 2021 15:03:37 -0500 Subject: [PATCH 04/18] update to set eduPersonEntitlements --- testbed/authentication/.env | 1 + testbed/authentication/directory/999_users.ldif | 2 ++ .../shibboleth-idp/config/shib-idp/conf/attribute-filter.xml | 3 +++ 3 files changed, 6 insertions(+) create mode 100644 testbed/authentication/.env 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/directory/999_users.ldif b/testbed/authentication/directory/999_users.ldif index 2beedb37f..c4f611bf6 100644 --- a/testbed/authentication/directory/999_users.ldif +++ b/testbed/authentication/directory/999_users.ldif @@ -50,6 +50,7 @@ businessCategory:Law userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student +eduPersonEntitlement: ROLE_ADMIN dn: uid=whenderson,ou=People,dc=unicon,dc=local objectClass: organizationalPerson @@ -65,6 +66,7 @@ mail: whenderson@unicon.local businessCategory:Advising userPassword: password eduPersonAffiliation: community +eduPersonEntitlement: ROLE_USER dn: uid=ddavis,ou=People,dc=unicon,dc=local objectClass: organizationalPerson 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..57dc7eeeb 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,9 @@ + + + From 1e9fa1f96181380506d20b10af27947922fdfb27 Mon Sep 17 00:00:00 2001 From: Jj! Date: Tue, 14 Sep 2021 15:10:05 -0500 Subject: [PATCH 05/18] add readme for authentication environment --- testbed/authentication/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 testbed/authentication/README.md 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 From 01b1412abda101292ea009dc312f73aeb415e4a4 Mon Sep 17 00:00:00 2001 From: Jj! Date: Tue, 14 Sep 2021 16:57:52 -0500 Subject: [PATCH 06/18] move things about a bit for reuse --- testbed/authentication/directory/certs/ca.crt | 18 ------- .../directory/certs/dhparam.pem | 8 --- .../authentication/directory/certs/ldap.crt | 18 ------- .../authentication/directory/certs/ldap.key | 6 --- testbed/authentication/docker-compose.yml | 10 ++-- .../directory/001_eduperson.ldif | 0 .../directory/999_users.ldif | 0 .../{authentication => }/directory/Dockerfile | 0 testbed/directory/certs/ca.crt | 29 +++++++++++ testbed/directory/certs/dhparam.pem | 13 +++++ testbed/directory/certs/ldap.crt | 29 +++++++++++ testbed/directory/certs/ldap.key | 52 +++++++++++++++++++ .../reverse-proxy/certs/star.unicon.local.crt | 30 +++++++++++ .../reverse-proxy/certs/star.unicon.local.key | 52 +++++++++++++++++++ .../configuration/certificates.yml | 9 ++++ 15 files changed, 219 insertions(+), 55 deletions(-) delete mode 100644 testbed/authentication/directory/certs/ca.crt delete mode 100644 testbed/authentication/directory/certs/dhparam.pem delete mode 100644 testbed/authentication/directory/certs/ldap.crt delete mode 100644 testbed/authentication/directory/certs/ldap.key rename testbed/{authentication => }/directory/001_eduperson.ldif (100%) rename testbed/{authentication => }/directory/999_users.ldif (100%) rename testbed/{authentication => }/directory/Dockerfile (100%) create mode 100644 testbed/directory/certs/ca.crt create mode 100644 testbed/directory/certs/dhparam.pem create mode 100644 testbed/directory/certs/ldap.crt create mode 100644 testbed/directory/certs/ldap.key create mode 100644 testbed/reverse-proxy/certs/star.unicon.local.crt create mode 100644 testbed/reverse-proxy/certs/star.unicon.local.key create mode 100644 testbed/reverse-proxy/configuration/certificates.yml 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..1ed95975b 100644 --- a/testbed/authentication/docker-compose.yml +++ b/testbed/authentication/docker-compose.yml @@ -22,16 +22,16 @@ services: - "8443:8443" 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 +52,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 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 100% rename from testbed/authentication/directory/999_users.ldif rename to testbed/directory/999_users.ldif 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 From f27a026b7cb43443fca49720c9f6b3149fad81db Mon Sep 17 00:00:00 2001 From: chasegawa Date: Wed, 15 Sep 2021 16:25:54 -0700 Subject: [PATCH 07/18] SHIBUI-2063 NPE exception on login fix --- .../main/java/net/unicon/shibui/pac4j/BetterSAML2Profile.java | 4 +++- testbed/authentication/reverse-proxy/.gitkeep | 0 testbed/authentication/reverse-proxy/certs/.gitkeep | 0 3 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 testbed/authentication/reverse-proxy/.gitkeep create mode 100644 testbed/authentication/reverse-proxy/certs/.gitkeep 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 bbe33694c..ea4d4f8f4 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 @@ -4,6 +4,7 @@ import org.pac4j.saml.profile.SAML2Profile; import java.util.Collection; +import java.util.HashSet; import java.util.List; import java.util.Set; @@ -41,7 +42,8 @@ public List getGroups() { } public Set getRoles() { - return (Set) getAttribute(profileMapping.getRoles()); + Set result = (Set) getAttribute(profileMapping.getRoles()); + return result == null ? new HashSet<>() : result; } @Override 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 From 2b84ea7c520ac9d18312bd2db01ea310af00292b Mon Sep 17 00:00:00 2001 From: chasegawa Date: Fri, 17 Sep 2021 13:00:54 -0700 Subject: [PATCH 08/18] SHIBUI-1747 fixed NPE with roles --- .../java/net/unicon/shibui/pac4j/BetterSAML2Profile.java | 8 ++++++-- testbed/authentication/shibui/application.yml | 2 ++ 2 files changed, 8 insertions(+), 2 deletions(-) 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 ea4d4f8f4..1411c2997 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 @@ -42,8 +42,12 @@ public List getGroups() { } public Set getRoles() { - Set result = (Set) getAttribute(profileMapping.getRoles()); - return result == null ? new HashSet<>() : result; + Set result = new HashSet<>(); + List assertedRoles = (List) getAttribute(profileMapping.getRoles()); + if (assertedRoles != null) { + result.addAll(assertedRoles); + } + return result; } @Override diff --git a/testbed/authentication/shibui/application.yml b/testbed/authentication/shibui/application.yml index c8e9ef8cc..c586e2e32 100644 --- a/testbed/authentication/shibui/application.yml +++ b/testbed/authentication/shibui/application.yml @@ -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: businessCategory + roles: urn:oid:1.3.6.1.4.1.5923.1.1.1.7 \ No newline at end of file From 700fa37ace16e49b90349e770d0e38c19f5fce76 Mon Sep 17 00:00:00 2001 From: Jj! Date: Fri, 17 Sep 2021 15:57:48 -0500 Subject: [PATCH 09/18] add businessCategory for release --- .../shibboleth-idp/config/shib-idp/conf/attribute-filter.xml | 3 +++ .../config/shib-idp/conf/attribute-resolver.xml | 4 ++++ 2 files changed, 7 insertions(+) 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 57dc7eeeb..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 @@ -132,6 +132,9 @@ + + + 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 @@ + + + + From d6397f9536962cdabf119447ec616f93a217351c Mon Sep 17 00:00:00 2001 From: Jj! Date: Fri, 17 Sep 2021 17:24:14 -0500 Subject: [PATCH 10/18] add business category --- .../conf/attributes/inetOrgPerson.xml | 522 ++++++++++++++++++ 1 file changed, 522 insertions(+) create mode 100644 testbed/authentication/shibboleth-idp/config/shib-idp/conf/attributes/inetOrgPerson.xml 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..524bffb1c --- /dev/null +++ b/testbed/authentication/shibboleth-idp/config/shib-idp/conf/attributes/inetOrgPerson.xml @@ -0,0 +1,522 @@ + + + + + + + + + + + + + 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. + 所属機関内で一意の利用者識別子 + + + + + + + + businessCategofy + SAML2StringTranscoder SAML1StringTranscoder + urn:oid:2.5.4.15 + urn:mace:dir:attribute-def:businessCategory + Business Category + + + + + + + + + From 45de7805032a5aa684972deb327aa8a7a3eed3f3 Mon Sep 17 00:00:00 2001 From: chasegawa Date: Fri, 17 Sep 2021 17:38:32 -0700 Subject: [PATCH 11/18] SHIBUI-1747 minor fixes/updates --- .../unicon/shibui/pac4j/AddNewUserFilter.java | 1 + .../conf/attributes/inetOrgPerson.xml | 4 +- testbed/authentication/shibui/application.yml | 6 +- testbed/directory/999_users.ldif | 1998 ++++++++--------- 4 files changed, 1005 insertions(+), 1004 deletions(-) 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 eb6f9c7ba..2b697127c 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 @@ -71,6 +71,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) { 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 index 524bffb1c..b7853a06d 100644 --- a/testbed/authentication/shibboleth-idp/config/shib-idp/conf/attributes/inetOrgPerson.xml +++ b/testbed/authentication/shibboleth-idp/config/shib-idp/conf/attributes/inetOrgPerson.xml @@ -506,7 +506,7 @@ - businessCategofy + businessCategory SAML2StringTranscoder SAML1StringTranscoder urn:oid:2.5.4.15 urn:mace:dir:attribute-def:businessCategory @@ -519,4 +519,4 @@ - + \ No newline at end of file diff --git a/testbed/authentication/shibui/application.yml b/testbed/authentication/shibui/application.yml index c586e2e32..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,5 +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: businessCategory - roles: urn:oid:1.3.6.1.4.1.5923.1.1.1.7 \ No newline at end of file + 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/directory/999_users.ldif b/testbed/directory/999_users.ldif index c4f611bf6..a3086787d 100644 --- a/testbed/directory/999_users.ldif +++ b/testbed/directory/999_users.ldif @@ -46,7 +46,7 @@ givenName: Karl cn: Karl White uid: kwhite mail: kwhite@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -63,7 +63,7 @@ givenName: William cn: William Henderson uid: whenderson mail: whenderson@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community eduPersonEntitlement: ROLE_USER @@ -79,7 +79,7 @@ givenName: David cn: David Davis uid: ddavis mail: ddavis@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff @@ -94,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 @@ -110,7 +110,7 @@ givenName: Donna cn: Donna Anderson uid: danderson mail: danderson@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -125,7 +125,7 @@ givenName: Ann cn: Ann Morrison uid: amorrison mail: amorrison@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -141,7 +141,7 @@ givenName: William cn: William Price uid: wprice mail: wprice@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -156,7 +156,7 @@ givenName: Marie cn: Marie Roberts uid: mroberts mail: mroberts@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -172,7 +172,7 @@ givenName: Kiersten cn: Kiersten Johnson uid: kjohnson mail: kjohnson@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty @@ -187,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 @@ -203,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 @@ -219,7 +219,7 @@ givenName: Jennifer cn: Jennifer Scott uid: jscott mail: jscott@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -235,7 +235,7 @@ givenName: Betty cn: Betty Butler uid: bbutler mail: bbutler@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -251,7 +251,7 @@ givenName: Thomas cn: Thomas Morrison uid: tmorrison mail: tmorrison@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -267,7 +267,7 @@ givenName: Jennifer cn: Jennifer Brown uid: jbrown14 mail: jbrown14@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member eduPersonAffiliation: staff @@ -283,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 @@ -299,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 @@ -315,7 +315,7 @@ givenName: Jo cn: Jo Lewis uid: jlewis mail: jlewis@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -331,7 +331,7 @@ givenName: Mary cn: Mary Gasper uid: mgasper mail: mgasper@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty @@ -346,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 @@ -362,7 +362,7 @@ givenName: Thomas cn: Thomas Grady uid: tgrady mail: tgrady@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: alum @@ -377,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 @@ -393,7 +393,7 @@ givenName: David cn: David Grady uid: dgrady mail: dgrady@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community @@ -408,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 @@ -424,7 +424,7 @@ givenName: Bill cn: Bill Gasper uid: bgasper mail: bgasper@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum @@ -439,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 @@ -455,7 +455,7 @@ givenName: Heather cn: Heather White uid: hwhite mail: hwhite@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: staff @@ -470,7 +470,7 @@ givenName: Donna cn: Donna Davis uid: ddavis27 mail: ddavis27@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: community @@ -486,7 +486,7 @@ givenName: Bill cn: Bill Gasper uid: bgasper28 mail: bgasper28@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty @@ -501,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 @@ -517,7 +517,7 @@ givenName: Ann cn: Ann Morrison uid: amorrison30 mail: amorrison30@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum @@ -532,7 +532,7 @@ givenName: Karl cn: Karl Martinez uid: kmartinez mail: kmartinez@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student @@ -547,7 +547,7 @@ givenName: Ann cn: Ann Henderson uid: ahenderson mail: ahenderson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -563,7 +563,7 @@ givenName: Ann cn: Ann Vales uid: avales mail: avales@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -579,7 +579,7 @@ givenName: Greg cn: Greg Gonazles uid: ggonazles mail: ggonazles@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -594,7 +594,7 @@ givenName: Blake cn: Blake Doe uid: bdoe mail: bdoe@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -609,7 +609,7 @@ givenName: Paul cn: Paul Langenberg uid: plangenberg mail: plangenberg@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff @@ -624,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 @@ -640,7 +640,7 @@ givenName: Nancy cn: Nancy Henderson uid: nhenderson mail: nhenderson@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member @@ -655,7 +655,7 @@ givenName: William cn: William Thompson uid: wthompson mail: wthompson@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff @@ -670,7 +670,7 @@ givenName: Karl cn: Karl Vales uid: kvales40 mail: kvales40@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community @@ -685,7 +685,7 @@ givenName: Bill cn: Bill Lee uid: blee mail: blee@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -701,7 +701,7 @@ givenName: Marie cn: Marie Lee uid: mlee mail: mlee@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff @@ -716,7 +716,7 @@ givenName: Kiersten cn: Kiersten Clark uid: kclark mail: kclark@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff @@ -731,7 +731,7 @@ givenName: William cn: William Scott uid: wscott mail: wscott@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -746,7 +746,7 @@ givenName: Donna cn: Donna Butler uid: dbutler mail: dbutler@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community @@ -761,7 +761,7 @@ givenName: Ann cn: Ann White uid: awhite mail: awhite@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -777,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 @@ -793,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 @@ -809,7 +809,7 @@ givenName: Eric cn: Eric Thompson uid: ethompson mail: ethompson@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member @@ -824,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 @@ -840,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 @@ -856,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 @@ -872,7 +872,7 @@ givenName: Mark cn: Mark Vales uid: mvales mail: mvales@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student @@ -887,7 +887,7 @@ givenName: Michael cn: Michael Lewis uid: mlewis mail: mlewis@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: student @@ -902,7 +902,7 @@ givenName: Heather cn: Heather Vales uid: hvales mail: hvales@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -917,7 +917,7 @@ givenName: Jo cn: Jo Scott uid: jscott56 mail: jscott56@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -933,7 +933,7 @@ givenName: Sarah cn: Sarah Doe uid: sdoe mail: sdoe@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -949,7 +949,7 @@ givenName: Sarah cn: Sarah Vales uid: svales mail: svales@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student @@ -964,7 +964,7 @@ givenName: Heather cn: Heather Morrison uid: hmorrison mail: hmorrison@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -980,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 @@ -996,7 +996,7 @@ givenName: Donna cn: Donna Langenberg uid: dlangenberg61 mail: dlangenberg61@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -1012,7 +1012,7 @@ givenName: Betty cn: Betty Grady uid: bgrady mail: bgrady@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum @@ -1027,7 +1027,7 @@ givenName: Jennifer cn: Jennifer Morrison uid: jmorrison mail: jmorrison@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff @@ -1042,7 +1042,7 @@ givenName: William cn: William Vales uid: wvales mail: wvales@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member @@ -1057,7 +1057,7 @@ givenName: Mark cn: Mark Martinez uid: mmartinez mail: mmartinez@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum @@ -1072,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 @@ -1088,7 +1088,7 @@ givenName: Mary cn: Mary Gasper uid: mgasper67 mail: mgasper67@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff @@ -1103,7 +1103,7 @@ givenName: David cn: David Peterson uid: dpeterson mail: dpeterson@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -1119,7 +1119,7 @@ givenName: Erik cn: Erik Price uid: eprice mail: eprice@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum @@ -1134,7 +1134,7 @@ givenName: James cn: James Gasper uid: jgasper mail: jgasper@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -1150,7 +1150,7 @@ givenName: Jennifer cn: Jennifer Clark uid: jclark mail: jclark@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: member @@ -1166,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 @@ -1182,7 +1182,7 @@ givenName: William cn: William Smith uid: wsmith mail: wsmith@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty @@ -1197,7 +1197,7 @@ givenName: Lisa cn: Lisa Williams uid: lwilliams mail: lwilliams@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty @@ -1212,7 +1212,7 @@ givenName: David cn: David Grady uid: dgrady76 mail: dgrady76@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member @@ -1227,7 +1227,7 @@ givenName: Jo cn: Jo Martinez uid: jmartinez77 mail: jmartinez77@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -1243,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 @@ -1259,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 @@ -1275,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 @@ -1291,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 @@ -1307,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 @@ -1323,7 +1323,7 @@ givenName: Karoline cn: Karoline Peterson uid: kpeterson mail: kpeterson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community @@ -1338,7 +1338,7 @@ givenName: Erik cn: Erik Price uid: eprice84 mail: eprice84@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty @@ -1353,7 +1353,7 @@ givenName: Heather cn: Heather Smith uid: hsmith mail: hsmith@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -1369,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 @@ -1385,7 +1385,7 @@ givenName: Karl cn: Karl Lopez uid: klopez mail: klopez@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: community @@ -1401,7 +1401,7 @@ givenName: William cn: William Johnson uid: wjohnson mail: wjohnson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff @@ -1416,7 +1416,7 @@ givenName: William cn: William Brown uid: wbrown mail: wbrown@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member @@ -1431,7 +1431,7 @@ givenName: Heather cn: Heather Brown uid: hbrown mail: hbrown@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: faculty @@ -1446,7 +1446,7 @@ givenName: Kim cn: Kim Roberts uid: kroberts mail: kroberts@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -1461,7 +1461,7 @@ givenName: Donna cn: Donna Walters uid: dwalters mail: dwalters@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community @@ -1476,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 @@ -1492,7 +1492,7 @@ givenName: Sarah cn: Sarah Gonazles uid: sgonazles mail: sgonazles@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty @@ -1507,7 +1507,7 @@ givenName: Heather cn: Heather Anderson uid: handerson mail: handerson@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member @@ -1522,7 +1522,7 @@ givenName: David cn: David Anderson uid: danderson96 mail: danderson96@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum @@ -1537,7 +1537,7 @@ givenName: David cn: David Grady uid: dgrady97 mail: dgrady97@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community @@ -1552,7 +1552,7 @@ givenName: James cn: James Grady uid: jgrady mail: jgrady@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student @@ -1567,7 +1567,7 @@ givenName: John cn: John Thompson uid: jthompson mail: jthompson@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -1583,7 +1583,7 @@ givenName: Kiersten cn: Kiersten Thompson uid: kthompson mail: kthompson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -1599,7 +1599,7 @@ givenName: John cn: John Peterson uid: jpeterson mail: jpeterson@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -1615,7 +1615,7 @@ givenName: Lisa cn: Lisa Morrison uid: lmorrison mail: lmorrison@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: staff @@ -1631,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 @@ -1647,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 @@ -1663,7 +1663,7 @@ givenName: Marie cn: Marie Scott uid: mscott mail: mscott@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty @@ -1678,7 +1678,7 @@ givenName: Lori cn: Lori Davis uid: ldavis mail: ldavis@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -1693,7 +1693,7 @@ givenName: James cn: James Roberts uid: jroberts mail: jroberts@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -1709,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 @@ -1725,7 +1725,7 @@ givenName: Mark cn: Mark Brown uid: mbrown mail: mbrown@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community @@ -1740,7 +1740,7 @@ givenName: Kim cn: Kim White uid: kwhite110 mail: kwhite110@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -1756,7 +1756,7 @@ givenName: Mark cn: Mark Roberts uid: mroberts111 mail: mroberts111@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: faculty @@ -1771,7 +1771,7 @@ givenName: Mark cn: Mark White uid: mwhite mail: mwhite@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff @@ -1786,7 +1786,7 @@ givenName: Jim cn: Jim Price uid: jprice mail: jprice@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -1802,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 @@ -1818,7 +1818,7 @@ givenName: Sarah cn: Sarah Clark uid: sclark mail: sclark@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -1834,7 +1834,7 @@ givenName: Donna cn: Donna Vales uid: dvales mail: dvales@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community @@ -1849,7 +1849,7 @@ givenName: Kim cn: Kim Johnson uid: kjohnson117 mail: kjohnson117@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -1865,7 +1865,7 @@ givenName: David cn: David Smith uid: dsmith mail: dsmith@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff @@ -1880,7 +1880,7 @@ givenName: Blake cn: Blake White uid: bwhite mail: bwhite@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: member @@ -1895,7 +1895,7 @@ givenName: Lori cn: Lori Doe uid: ldoe mail: ldoe@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty @@ -1910,7 +1910,7 @@ givenName: David cn: David Langenberg uid: dlangenberg121 mail: dlangenberg121@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community @@ -1925,7 +1925,7 @@ givenName: Greg cn: Greg Williams uid: gwilliams mail: gwilliams@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: faculty @@ -1940,7 +1940,7 @@ givenName: Karoline cn: Karoline Clark uid: kclark123 mail: kclark123@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff @@ -1955,7 +1955,7 @@ givenName: Eric cn: Eric Williams uid: ewilliams mail: ewilliams@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty @@ -1970,7 +1970,7 @@ givenName: Eric cn: Eric Gonazles uid: egonazles mail: egonazles@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum @@ -1985,7 +1985,7 @@ givenName: Robert cn: Robert Price uid: rprice mail: rprice@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student @@ -2000,7 +2000,7 @@ givenName: Erik cn: Erik Walters uid: ewalters mail: ewalters@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -2016,7 +2016,7 @@ givenName: Colin cn: Colin Langenberg uid: clangenberg mail: clangenberg@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum @@ -2031,7 +2031,7 @@ givenName: Colin cn: Colin Morrison uid: cmorrison129 mail: cmorrison129@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: community @@ -2046,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 @@ -2062,7 +2062,7 @@ givenName: Sarah cn: Sarah Martinez uid: smartinez mail: smartinez@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -2077,7 +2077,7 @@ givenName: Karl cn: Karl Lewis uid: klewis mail: klewis@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -2093,7 +2093,7 @@ givenName: Marie cn: Marie Williams uid: mwilliams mail: mwilliams@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty @@ -2108,7 +2108,7 @@ givenName: David cn: David Smith uid: dsmith134 mail: dsmith134@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -2123,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 @@ -2139,7 +2139,7 @@ givenName: Betty cn: Betty Grady uid: bgrady136 mail: bgrady136@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -2155,7 +2155,7 @@ givenName: Mark cn: Mark Thompson uid: mthompson137 mail: mthompson137@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty @@ -2170,7 +2170,7 @@ givenName: Mary cn: Mary Roberts uid: mroberts138 mail: mroberts138@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: member @@ -2186,7 +2186,7 @@ givenName: James cn: James Anderson uid: janderson mail: janderson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -2202,7 +2202,7 @@ givenName: Jo cn: Jo Scott uid: jscott140 mail: jscott140@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -2218,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 @@ -2234,7 +2234,7 @@ givenName: Jennifer cn: Jennifer Butler uid: jbutler mail: jbutler@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -2250,7 +2250,7 @@ givenName: Jo cn: Jo Lewis uid: jlewis143 mail: jlewis143@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member @@ -2265,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 @@ -2281,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 @@ -2297,7 +2297,7 @@ givenName: Jennifer cn: Jennifer Thompson uid: jthompson146 mail: jthompson146@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -2313,7 +2313,7 @@ givenName: Heather cn: Heather Vales uid: hvales147 mail: hvales147@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: staff @@ -2328,7 +2328,7 @@ givenName: John cn: John White uid: jwhite mail: jwhite@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff @@ -2343,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 @@ -2359,7 +2359,7 @@ givenName: Bill cn: Bill Johnson uid: bjohnson mail: bjohnson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum @@ -2374,7 +2374,7 @@ givenName: Mark cn: Mark Roberts uid: mroberts151 mail: mroberts151@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -2390,7 +2390,7 @@ givenName: William cn: William Thompson uid: wthompson152 mail: wthompson152@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community eduPersonAffiliation: staff @@ -2406,7 +2406,7 @@ givenName: Michael cn: Michael Doe uid: mdoe mail: mdoe@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff @@ -2421,7 +2421,7 @@ givenName: Bill cn: Bill Gonazles uid: bgonazles mail: bgonazles@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -2436,7 +2436,7 @@ givenName: Mark cn: Mark Thompson uid: mthompson155 mail: mthompson155@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community @@ -2451,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 @@ -2467,7 +2467,7 @@ givenName: Bill cn: Bill Roberts uid: broberts mail: broberts@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: community @@ -2482,7 +2482,7 @@ givenName: John cn: John Vales uid: jvales mail: jvales@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -2497,7 +2497,7 @@ givenName: William cn: William Williams uid: wwilliams mail: wwilliams@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -2513,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 @@ -2529,7 +2529,7 @@ givenName: Greg cn: Greg Gasper uid: ggasper mail: ggasper@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff @@ -2544,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 @@ -2560,7 +2560,7 @@ givenName: Michael cn: Michael Grady uid: mgrady mail: mgrady@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: alum @@ -2575,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 @@ -2591,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 @@ -2607,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 @@ -2623,7 +2623,7 @@ givenName: Marie cn: Marie Price uid: mprice mail: mprice@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -2638,7 +2638,7 @@ givenName: Bill cn: Bill Price uid: bprice mail: bprice@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -2653,7 +2653,7 @@ givenName: Ann cn: Ann Anderson uid: aanderson mail: aanderson@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -2668,7 +2668,7 @@ givenName: Blake cn: Blake Price uid: bprice170 mail: bprice170@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum @@ -2683,7 +2683,7 @@ givenName: Heather cn: Heather Scott uid: hscott mail: hscott@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -2699,7 +2699,7 @@ givenName: Heather cn: Heather Thompson uid: hthompson mail: hthompson@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -2715,7 +2715,7 @@ givenName: Jo cn: Jo Morrison uid: jmorrison173 mail: jmorrison173@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum @@ -2730,7 +2730,7 @@ givenName: Mary cn: Mary Price uid: mprice174 mail: mprice174@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community @@ -2745,7 +2745,7 @@ givenName: Heather cn: Heather Price uid: hprice mail: hprice@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member @@ -2760,7 +2760,7 @@ givenName: Karoline cn: Karoline Butler uid: kbutler mail: kbutler@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -2775,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 @@ -2791,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 @@ -2807,7 +2807,7 @@ givenName: Robert cn: Robert Williams uid: rwilliams mail: rwilliams@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -2823,7 +2823,7 @@ givenName: Jo cn: Jo Price uid: jprice180 mail: jprice180@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -2838,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 @@ -2854,7 +2854,7 @@ givenName: Colin cn: Colin Thompson uid: cthompson mail: cthompson@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -2870,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 @@ -2886,7 +2886,7 @@ givenName: Betty cn: Betty Clark uid: bclark mail: bclark@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -2902,7 +2902,7 @@ givenName: Lori cn: Lori Lee uid: llee mail: llee@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -2917,7 +2917,7 @@ givenName: Karl cn: Karl Peterson uid: kpeterson186 mail: kpeterson186@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff @@ -2932,7 +2932,7 @@ givenName: William cn: William Lee uid: wlee mail: wlee@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community @@ -2947,7 +2947,7 @@ givenName: Greg cn: Greg Johnson uid: gjohnson188 mail: gjohnson188@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -2963,7 +2963,7 @@ givenName: Michael cn: Michael Lopez uid: mlopez mail: mlopez@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff @@ -2978,7 +2978,7 @@ givenName: Sarah cn: Sarah Grady uid: sgrady mail: sgrady@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty @@ -2993,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 @@ -3009,7 +3009,7 @@ givenName: Mary cn: Mary Williams uid: mwilliams192 mail: mwilliams192@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: student @@ -3024,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 @@ -3040,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 @@ -3056,7 +3056,7 @@ givenName: Jo cn: Jo Walters uid: jwalters mail: jwalters@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: staff @@ -3072,7 +3072,7 @@ givenName: Heather cn: Heather Doe uid: hdoe196 mail: hdoe196@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -3088,7 +3088,7 @@ givenName: Michael cn: Michael Lewis uid: mlewis197 mail: mlewis197@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum @@ -3103,7 +3103,7 @@ givenName: Bill cn: Bill Lewis uid: blewis mail: blewis@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff @@ -3118,7 +3118,7 @@ givenName: Michael cn: Michael Walters uid: mwalters mail: mwalters@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -3134,7 +3134,7 @@ givenName: Lisa cn: Lisa Lopez uid: llopez mail: llopez@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: community @@ -3149,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 @@ -3165,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 @@ -3181,7 +3181,7 @@ givenName: Bill cn: Bill Grady uid: bgrady203 mail: bgrady203@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff @@ -3196,7 +3196,7 @@ givenName: Colin cn: Colin Lewis uid: clewis mail: clewis@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty @@ -3211,7 +3211,7 @@ givenName: Heather cn: Heather White uid: hwhite205 mail: hwhite205@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -3227,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 @@ -3243,7 +3243,7 @@ givenName: John cn: John Lee uid: jlee207 mail: jlee207@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community @@ -3258,7 +3258,7 @@ givenName: John cn: John Butler uid: jbutler208 mail: jbutler208@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member @@ -3273,7 +3273,7 @@ givenName: Betty cn: Betty Davis uid: bdavis mail: bdavis@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum @@ -3288,7 +3288,7 @@ givenName: Jennifer cn: Jennifer Roberts uid: jroberts210 mail: jroberts210@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -3303,7 +3303,7 @@ givenName: Greg cn: Greg Johnson uid: gjohnson211 mail: gjohnson211@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member @@ -3318,7 +3318,7 @@ givenName: Jennifer cn: Jennifer Langenberg uid: jlangenberg mail: jlangenberg@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -3334,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 @@ -3350,7 +3350,7 @@ givenName: Paul cn: Paul Martinez uid: pmartinez mail: pmartinez@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -3366,7 +3366,7 @@ givenName: Greg cn: Greg Anderson uid: ganderson mail: ganderson@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: member @@ -3382,7 +3382,7 @@ givenName: Mary cn: Mary Peterson uid: mpeterson mail: mpeterson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -3398,7 +3398,7 @@ givenName: Karoline cn: Karoline Lopez uid: klopez217 mail: klopez217@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member @@ -3413,7 +3413,7 @@ givenName: Thomas cn: Thomas Gasper uid: tgasper218 mail: tgasper218@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: alum @@ -3428,7 +3428,7 @@ givenName: Lori cn: Lori Smith uid: lsmith mail: lsmith@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member @@ -3443,7 +3443,7 @@ givenName: Eric cn: Eric Butler uid: ebutler mail: ebutler@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -3459,7 +3459,7 @@ givenName: Jim cn: Jim Vales uid: jvales221 mail: jvales221@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -3475,7 +3475,7 @@ givenName: James cn: James Vales uid: jvales222 mail: jvales222@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community @@ -3490,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 @@ -3506,7 +3506,7 @@ givenName: Kiersten cn: Kiersten Scott uid: kscott mail: kscott@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community @@ -3521,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 @@ -3537,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 @@ -3553,7 +3553,7 @@ givenName: Marie cn: Marie White uid: mwhite227 mail: mwhite227@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -3568,7 +3568,7 @@ givenName: David cn: David Anderson uid: danderson228 mail: danderson228@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff @@ -3583,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 @@ -3599,7 +3599,7 @@ givenName: James cn: James Grady uid: jgrady230 mail: jgrady230@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -3614,7 +3614,7 @@ givenName: James cn: James Doe uid: jdoe mail: jdoe@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -3629,7 +3629,7 @@ givenName: David cn: David Morrison uid: dmorrison mail: dmorrison@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community @@ -3644,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 @@ -3660,7 +3660,7 @@ givenName: Paul cn: Paul Lopez uid: plopez mail: plopez@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum @@ -3675,7 +3675,7 @@ givenName: Heather cn: Heather Lewis uid: hlewis mail: hlewis@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty @@ -3690,7 +3690,7 @@ givenName: David cn: David Smith uid: dsmith236 mail: dsmith236@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member @@ -3705,7 +3705,7 @@ givenName: Kiersten cn: Kiersten Butler uid: kbutler237 mail: kbutler237@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -3721,7 +3721,7 @@ givenName: Kim cn: Kim Davis uid: kdavis mail: kdavis@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -3737,7 +3737,7 @@ givenName: Kiersten cn: Kiersten Doe uid: kdoe mail: kdoe@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: member @@ -3753,7 +3753,7 @@ givenName: Karl cn: Karl Grady uid: kgrady mail: kgrady@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member @@ -3768,7 +3768,7 @@ givenName: James cn: James Price uid: jprice241 mail: jprice241@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff @@ -3783,7 +3783,7 @@ givenName: Sarah cn: Sarah Henderson uid: shenderson mail: shenderson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community @@ -3798,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 @@ -3814,7 +3814,7 @@ givenName: Mark cn: Mark Gonazles uid: mgonazles244 mail: mgonazles244@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -3830,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 @@ -3846,7 +3846,7 @@ givenName: Michael cn: Michael Davis uid: mdavis mail: mdavis@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -3862,7 +3862,7 @@ givenName: Marie cn: Marie Anderson uid: manderson mail: manderson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff @@ -3877,7 +3877,7 @@ givenName: Blake cn: Blake Morrison uid: bmorrison mail: bmorrison@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -3893,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 @@ -3909,7 +3909,7 @@ givenName: James cn: James Doe uid: jdoe250 mail: jdoe250@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty @@ -3924,7 +3924,7 @@ givenName: James cn: James Gasper uid: jgasper251 mail: jgasper251@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -3940,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 @@ -3956,7 +3956,7 @@ givenName: Karoline cn: Karoline White uid: kwhite253 mail: kwhite253@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: faculty @@ -3971,7 +3971,7 @@ givenName: William cn: William Brown uid: wbrown254 mail: wbrown254@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: faculty @@ -3986,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 @@ -4002,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 @@ -4018,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 @@ -4034,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 @@ -4050,7 +4050,7 @@ givenName: Karoline cn: Karoline Henderson uid: khenderson259 mail: khenderson259@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member @@ -4065,7 +4065,7 @@ givenName: Heather cn: Heather Butler uid: hbutler mail: hbutler@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -4081,7 +4081,7 @@ givenName: Marie cn: Marie Butler uid: mbutler261 mail: mbutler261@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty @@ -4096,7 +4096,7 @@ givenName: Jennifer cn: Jennifer Morrison uid: jmorrison262 mail: jmorrison262@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member @@ -4111,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 @@ -4127,7 +4127,7 @@ givenName: Kim cn: Kim Butler uid: kbutler264 mail: kbutler264@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: student @@ -4142,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 @@ -4158,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 @@ -4174,7 +4174,7 @@ givenName: Lisa cn: Lisa Langenberg uid: llangenberg mail: llangenberg@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty @@ -4189,7 +4189,7 @@ givenName: John cn: John Henderson uid: jhenderson mail: jhenderson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -4205,7 +4205,7 @@ givenName: Jennifer cn: Jennifer Langenberg uid: jlangenberg269 mail: jlangenberg269@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member @@ -4220,7 +4220,7 @@ givenName: Michael cn: Michael Doe uid: mdoe270 mail: mdoe270@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -4236,7 +4236,7 @@ givenName: Mark cn: Mark Brown uid: mbrown271 mail: mbrown271@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: staff @@ -4251,7 +4251,7 @@ givenName: John cn: John Vales uid: jvales272 mail: jvales272@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -4267,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 @@ -4283,7 +4283,7 @@ givenName: Eric cn: Eric Johnson uid: ejohnson mail: ejohnson@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -4298,7 +4298,7 @@ givenName: John cn: John Peterson uid: jpeterson275 mail: jpeterson275@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -4314,7 +4314,7 @@ givenName: Greg cn: Greg Smith uid: gsmith mail: gsmith@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -4330,7 +4330,7 @@ givenName: Kim cn: Kim Lopez uid: klopez278 mail: klopez278@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: staff @@ -4346,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 @@ -4362,7 +4362,7 @@ givenName: Ann cn: Ann Brown uid: abrown mail: abrown@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -4377,7 +4377,7 @@ givenName: Jim cn: Jim White uid: jwhite281 mail: jwhite281@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student @@ -4392,7 +4392,7 @@ givenName: Heather cn: Heather Grady uid: hgrady mail: hgrady@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -4408,7 +4408,7 @@ givenName: Kim cn: Kim White uid: kwhite283 mail: kwhite283@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -4424,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 @@ -4440,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 @@ -4456,7 +4456,7 @@ givenName: Paul cn: Paul Clark uid: pclark mail: pclark@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -4471,7 +4471,7 @@ givenName: Greg cn: Greg Lee uid: glee287 mail: glee287@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student @@ -4486,7 +4486,7 @@ givenName: Jennifer cn: Jennifer White uid: jwhite288 mail: jwhite288@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: faculty @@ -4502,7 +4502,7 @@ givenName: Robert cn: Robert Davis uid: rdavis289 mail: rdavis289@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -4518,7 +4518,7 @@ givenName: James cn: James Gasper uid: jgasper290 mail: jgasper290@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum @@ -4533,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 @@ -4549,7 +4549,7 @@ givenName: Kiersten cn: Kiersten Peterson uid: kpeterson292 mail: kpeterson292@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member @@ -4564,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 @@ -4580,7 +4580,7 @@ givenName: John cn: John Vales uid: jvales294 mail: jvales294@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -4596,7 +4596,7 @@ givenName: Robert cn: Robert Doe uid: rdoe mail: rdoe@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community eduPersonAffiliation: alum @@ -4612,7 +4612,7 @@ givenName: Blake cn: Blake Brown uid: bbrown mail: bbrown@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -4627,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 @@ -4643,7 +4643,7 @@ givenName: Bill cn: Bill Roberts uid: broberts298 mail: broberts298@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -4659,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 @@ -4675,7 +4675,7 @@ givenName: Greg cn: Greg Gasper uid: ggasper300 mail: ggasper300@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student @@ -4690,7 +4690,7 @@ givenName: Lori cn: Lori Roberts uid: lroberts mail: lroberts@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: staff @@ -4705,7 +4705,7 @@ givenName: Kiersten cn: Kiersten White uid: kwhite302 mail: kwhite302@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member @@ -4720,7 +4720,7 @@ givenName: David cn: David Williams uid: dwilliams303 mail: dwilliams303@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -4736,7 +4736,7 @@ givenName: Bill cn: Bill Peterson uid: bpeterson304 mail: bpeterson304@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member @@ -4751,7 +4751,7 @@ givenName: Sarah cn: Sarah Walters uid: swalters mail: swalters@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff @@ -4766,7 +4766,7 @@ givenName: Eric cn: Eric Davis uid: edavis mail: edavis@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty @@ -4781,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 @@ -4797,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 @@ -4813,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 @@ -4829,7 +4829,7 @@ givenName: Colin cn: Colin Peterson uid: cpeterson mail: cpeterson@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -4845,7 +4845,7 @@ givenName: Mary cn: Mary Lee uid: mlee311 mail: mlee311@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -4860,7 +4860,7 @@ givenName: Eric cn: Eric Lopez uid: elopez312 mail: elopez312@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -4876,7 +4876,7 @@ givenName: Paul cn: Paul Martinez uid: pmartinez313 mail: pmartinez313@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -4892,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 @@ -4908,7 +4908,7 @@ givenName: Kiersten cn: Kiersten Peterson uid: kpeterson315 mail: kpeterson315@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -4924,7 +4924,7 @@ givenName: Kiersten cn: Kiersten Vales uid: kvales316 mail: kvales316@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -4939,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 @@ -4955,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 @@ -4971,7 +4971,7 @@ givenName: Kiersten cn: Kiersten Thompson uid: kthompson319 mail: kthompson319@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -4986,7 +4986,7 @@ givenName: Mary cn: Mary Scott uid: mscott320 mail: mscott320@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community @@ -5001,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 @@ -5017,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 @@ -5033,7 +5033,7 @@ givenName: Heather cn: Heather Henderson uid: hhenderson mail: hhenderson@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: member @@ -5049,7 +5049,7 @@ givenName: Heather cn: Heather Doe uid: hdoe324 mail: hdoe324@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff @@ -5064,7 +5064,7 @@ givenName: Mark cn: Mark Doe uid: mdoe325 mail: mdoe325@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff @@ -5079,7 +5079,7 @@ givenName: Kiersten cn: Kiersten Lopez uid: klopez326 mail: klopez326@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum @@ -5094,7 +5094,7 @@ givenName: David cn: David Lewis uid: dlewis327 mail: dlewis327@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member eduPersonAffiliation: faculty @@ -5110,7 +5110,7 @@ givenName: William cn: William Lee uid: wlee328 mail: wlee328@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: community @@ -5125,7 +5125,7 @@ givenName: Mary cn: Mary Thompson uid: mthompson329 mail: mthompson329@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: alum @@ -5140,7 +5140,7 @@ givenName: Greg cn: Greg Brown uid: gbrown mail: gbrown@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum @@ -5155,7 +5155,7 @@ givenName: Robert cn: Robert Martinez uid: rmartinez331 mail: rmartinez331@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member @@ -5170,7 +5170,7 @@ givenName: Karl cn: Karl Lee uid: klee mail: klee@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community @@ -5185,7 +5185,7 @@ givenName: Marie cn: Marie Johnson uid: mjohnson mail: mjohnson@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: faculty @@ -5200,7 +5200,7 @@ givenName: Lisa cn: Lisa Williams uid: lwilliams334 mail: lwilliams334@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff @@ -5215,7 +5215,7 @@ givenName: Thomas cn: Thomas Brown uid: tbrown mail: tbrown@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -5231,7 +5231,7 @@ givenName: James cn: James Walters uid: jwalters336 mail: jwalters336@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum @@ -5246,7 +5246,7 @@ givenName: Lisa cn: Lisa Butler uid: lbutler mail: lbutler@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: student @@ -5261,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 @@ -5277,7 +5277,7 @@ givenName: Paul cn: Paul Johnson uid: pjohnson mail: pjohnson@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum @@ -5292,7 +5292,7 @@ givenName: John cn: John Price uid: jprice340 mail: jprice340@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -5308,7 +5308,7 @@ givenName: Jim cn: Jim Price uid: jprice341 mail: jprice341@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -5324,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 @@ -5340,7 +5340,7 @@ givenName: Kim cn: Kim White uid: kwhite343 mail: kwhite343@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -5355,7 +5355,7 @@ givenName: Karl cn: Karl Lopez uid: klopez344 mail: klopez344@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty @@ -5370,7 +5370,7 @@ givenName: Bill cn: Bill Gonazles uid: bgonazles345 mail: bgonazles345@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -5386,7 +5386,7 @@ givenName: Ann cn: Ann Peterson uid: apeterson mail: apeterson@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member @@ -5401,7 +5401,7 @@ givenName: David cn: David Butler uid: dbutler347 mail: dbutler347@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty @@ -5416,7 +5416,7 @@ givenName: Sarah cn: Sarah Peterson uid: speterson mail: speterson@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -5432,7 +5432,7 @@ givenName: James cn: James Peterson uid: jpeterson349 mail: jpeterson349@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: student @@ -5447,7 +5447,7 @@ givenName: Greg cn: Greg Johnson uid: gjohnson350 mail: gjohnson350@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum @@ -5462,7 +5462,7 @@ givenName: Lisa cn: Lisa Thompson uid: lthompson mail: lthompson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff @@ -5477,7 +5477,7 @@ givenName: Nancy cn: Nancy Clark uid: nclark mail: nclark@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -5492,7 +5492,7 @@ givenName: Sarah cn: Sarah Williams uid: swilliams mail: swilliams@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -5508,7 +5508,7 @@ givenName: Jennifer cn: Jennifer Price uid: jprice354 mail: jprice354@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty @@ -5523,7 +5523,7 @@ givenName: Lori cn: Lori Clark uid: lclark mail: lclark@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty @@ -5538,7 +5538,7 @@ givenName: Greg cn: Greg Henderson uid: ghenderson mail: ghenderson@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: student @@ -5553,7 +5553,7 @@ givenName: Eric cn: Eric Gonazles uid: egonazles357 mail: egonazles357@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student @@ -5568,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 @@ -5584,7 +5584,7 @@ givenName: Colin cn: Colin Brown uid: cbrown mail: cbrown@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student @@ -5599,7 +5599,7 @@ givenName: Thomas cn: Thomas Walters uid: twalters mail: twalters@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum @@ -5614,7 +5614,7 @@ givenName: Sarah cn: Sarah White uid: swhite mail: swhite@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -5629,7 +5629,7 @@ givenName: Robert cn: Robert Walters uid: rwalters mail: rwalters@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -5644,7 +5644,7 @@ givenName: Erik cn: Erik Roberts uid: eroberts mail: eroberts@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty @@ -5659,7 +5659,7 @@ givenName: Blake cn: Blake Vales uid: bvales mail: bvales@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member @@ -5674,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 @@ -5690,7 +5690,7 @@ givenName: Nancy cn: Nancy Lee uid: nlee366 mail: nlee366@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -5705,7 +5705,7 @@ givenName: Thomas cn: Thomas Morrison uid: tmorrison367 mail: tmorrison367@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student @@ -5720,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 @@ -5736,7 +5736,7 @@ givenName: Bill cn: Bill Davis uid: bdavis369 mail: bdavis369@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty @@ -5751,7 +5751,7 @@ givenName: Kiersten cn: Kiersten Davis uid: kdavis370 mail: kdavis370@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -5767,7 +5767,7 @@ givenName: Lori cn: Lori Lewis uid: llewis mail: llewis@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -5782,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 @@ -5798,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 @@ -5814,7 +5814,7 @@ givenName: Karoline cn: Karoline Langenberg uid: klangenberg mail: klangenberg@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff @@ -5829,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 @@ -5845,7 +5845,7 @@ givenName: Jennifer cn: Jennifer Gonazles uid: jgonazles mail: jgonazles@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -5861,7 +5861,7 @@ givenName: Mark cn: Mark Scott uid: mscott377 mail: mscott377@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -5877,7 +5877,7 @@ givenName: Jennifer cn: Jennifer Smith uid: jsmith378 mail: jsmith378@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community @@ -5892,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 @@ -5908,7 +5908,7 @@ givenName: Kiersten cn: Kiersten Price uid: kprice mail: kprice@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -5924,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 @@ -5940,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 @@ -5956,7 +5956,7 @@ givenName: James cn: James Johnson uid: jjohnson383 mail: jjohnson383@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty @@ -5971,7 +5971,7 @@ givenName: Colin cn: Colin Davis uid: cdavis mail: cdavis@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -5987,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 @@ -6003,7 +6003,7 @@ givenName: Karoline cn: Karoline Martinez uid: kmartinez386 mail: kmartinez386@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -6018,7 +6018,7 @@ givenName: Lori cn: Lori Grady uid: lgrady mail: lgrady@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student @@ -6033,7 +6033,7 @@ givenName: Jo cn: Jo Martinez uid: jmartinez388 mail: jmartinez388@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty @@ -6048,7 +6048,7 @@ givenName: Ann cn: Ann Langenberg uid: alangenberg mail: alangenberg@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff @@ -6063,7 +6063,7 @@ givenName: Betty cn: Betty Lewis uid: blewis390 mail: blewis390@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member @@ -6078,7 +6078,7 @@ givenName: Paul cn: Paul Johnson uid: pjohnson391 mail: pjohnson391@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member @@ -6093,7 +6093,7 @@ givenName: Lori cn: Lori Lee uid: llee392 mail: llee392@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: community eduPersonAffiliation: staff @@ -6109,7 +6109,7 @@ givenName: Sarah cn: Sarah Lewis uid: slewis mail: slewis@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -6125,7 +6125,7 @@ givenName: Nancy cn: Nancy Walters uid: nwalters mail: nwalters@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member @@ -6140,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 @@ -6156,7 +6156,7 @@ givenName: Erik cn: Erik Davis uid: edavis396 mail: edavis396@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -6172,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 @@ -6188,7 +6188,7 @@ givenName: Paul cn: Paul Langenberg uid: plangenberg398 mail: plangenberg398@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -6204,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 @@ -6220,7 +6220,7 @@ givenName: Jo cn: Jo Gasper uid: jgasper400 mail: jgasper400@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: community eduPersonAffiliation: staff @@ -6236,7 +6236,7 @@ givenName: Karoline cn: Karoline Martinez uid: kmartinez401 mail: kmartinez401@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -6252,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 @@ -6268,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 @@ -6284,7 +6284,7 @@ givenName: James cn: James Williams uid: jwilliams404 mail: jwilliams404@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -6300,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 @@ -6316,7 +6316,7 @@ givenName: Karl cn: Karl Vales uid: kvales406 mail: kvales406@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member @@ -6331,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 @@ -6347,7 +6347,7 @@ givenName: Heather cn: Heather Morrison uid: hmorrison408 mail: hmorrison408@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student @@ -6362,7 +6362,7 @@ givenName: Eric cn: Eric Anderson uid: eanderson mail: eanderson@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -6378,7 +6378,7 @@ givenName: Mark cn: Mark Langenberg uid: mlangenberg410 mail: mlangenberg410@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member @@ -6393,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 @@ -6409,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 @@ -6425,7 +6425,7 @@ givenName: Marie cn: Marie Gasper uid: mgasper413 mail: mgasper413@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty @@ -6440,7 +6440,7 @@ givenName: Blake cn: Blake Vales uid: bvales414 mail: bvales414@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -6456,7 +6456,7 @@ givenName: Blake cn: Blake Grady uid: bgrady415 mail: bgrady415@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -6472,7 +6472,7 @@ givenName: Paul cn: Paul Lee uid: plee mail: plee@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community @@ -6487,7 +6487,7 @@ givenName: Kim cn: Kim Williams uid: kwilliams mail: kwilliams@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -6502,7 +6502,7 @@ givenName: William cn: William Williams uid: wwilliams418 mail: wwilliams418@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community @@ -6517,7 +6517,7 @@ givenName: Jennifer cn: Jennifer Butler uid: jbutler419 mail: jbutler419@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff @@ -6532,7 +6532,7 @@ givenName: Heather cn: Heather Vales uid: hvales420 mail: hvales420@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -6548,7 +6548,7 @@ givenName: Karl cn: Karl Roberts uid: kroberts421 mail: kroberts421@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student @@ -6563,7 +6563,7 @@ givenName: Betty cn: Betty Doe uid: bdoe422 mail: bdoe422@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -6579,7 +6579,7 @@ givenName: David cn: David Clark uid: dclark mail: dclark@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: member @@ -6594,7 +6594,7 @@ givenName: Michael cn: Michael Henderson uid: mhenderson mail: mhenderson@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -6610,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 @@ -6626,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 @@ -6642,7 +6642,7 @@ givenName: David cn: David Grady uid: dgrady427 mail: dgrady427@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community @@ -6657,7 +6657,7 @@ givenName: Jennifer cn: Jennifer Johnson uid: jjohnson428 mail: jjohnson428@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -6673,7 +6673,7 @@ givenName: Jennifer cn: Jennifer Lewis uid: jlewis429 mail: jlewis429@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: community @@ -6689,7 +6689,7 @@ givenName: Kim cn: Kim Langenberg uid: klangenberg430 mail: klangenberg430@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -6704,7 +6704,7 @@ givenName: David cn: David Doe uid: ddoe431 mail: ddoe431@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: member @@ -6719,7 +6719,7 @@ givenName: Eric cn: Eric Scott uid: escott432 mail: escott432@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -6735,7 +6735,7 @@ givenName: Lisa cn: Lisa Walters uid: lwalters mail: lwalters@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member @@ -6750,7 +6750,7 @@ givenName: Greg cn: Greg Smith uid: gsmith434 mail: gsmith434@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -6766,7 +6766,7 @@ givenName: Karl cn: Karl Walters uid: kwalters mail: kwalters@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -6782,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 @@ -6798,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 @@ -6814,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 @@ -6830,7 +6830,7 @@ givenName: Robert cn: Robert Walters uid: rwalters439 mail: rwalters439@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum @@ -6845,7 +6845,7 @@ givenName: Karl cn: Karl Clark uid: kclark440 mail: kclark440@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: staff @@ -6860,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 @@ -6876,7 +6876,7 @@ givenName: James cn: James Walters uid: jwalters442 mail: jwalters442@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community @@ -6891,7 +6891,7 @@ givenName: Bill cn: Bill Williams uid: bwilliams mail: bwilliams@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: student @@ -6906,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 @@ -6922,7 +6922,7 @@ givenName: Erik cn: Erik Scott uid: escott445 mail: escott445@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -6938,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 @@ -6954,7 +6954,7 @@ givenName: Kiersten cn: Kiersten Lopez uid: klopez447 mail: klopez447@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty @@ -6969,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 @@ -6985,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 @@ -7001,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 @@ -7017,7 +7017,7 @@ givenName: Eric cn: Eric Langenberg uid: elangenberg mail: elangenberg@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff @@ -7032,7 +7032,7 @@ givenName: Robert cn: Robert Vales uid: rvales mail: rvales@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -7048,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 @@ -7064,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 @@ -7080,7 +7080,7 @@ givenName: James cn: James Clark uid: jclark455 mail: jclark455@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -7095,7 +7095,7 @@ givenName: Betty cn: Betty Gasper uid: bgasper456 mail: bgasper456@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -7111,7 +7111,7 @@ givenName: Blake cn: Blake Williams uid: bwilliams457 mail: bwilliams457@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -7127,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 @@ -7143,7 +7143,7 @@ givenName: Kiersten cn: Kiersten Smith uid: ksmith mail: ksmith@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -7158,7 +7158,7 @@ givenName: Lori cn: Lori Butler uid: lbutler460 mail: lbutler460@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student @@ -7173,7 +7173,7 @@ givenName: Mark cn: Mark Lewis uid: mlewis461 mail: mlewis461@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: member @@ -7188,7 +7188,7 @@ givenName: Jo cn: Jo Morrison uid: jmorrison462 mail: jmorrison462@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: staff @@ -7204,7 +7204,7 @@ givenName: Mary cn: Mary Smith uid: msmith463 mail: msmith463@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -7220,7 +7220,7 @@ givenName: Blake cn: Blake Lopez uid: blopez mail: blopez@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community @@ -7235,7 +7235,7 @@ givenName: Heather cn: Heather Davis uid: hdavis mail: hdavis@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -7251,7 +7251,7 @@ givenName: Betty cn: Betty Williams uid: bwilliams466 mail: bwilliams466@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum @@ -7266,7 +7266,7 @@ givenName: Greg cn: Greg Davis uid: gdavis mail: gdavis@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty @@ -7281,7 +7281,7 @@ givenName: Michael cn: Michael Gonazles uid: mgonazles468 mail: mgonazles468@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student @@ -7296,7 +7296,7 @@ givenName: Mary cn: Mary Lopez uid: mlopez469 mail: mlopez469@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member @@ -7311,7 +7311,7 @@ givenName: Eric cn: Eric Roberts uid: eroberts470 mail: eroberts470@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -7327,7 +7327,7 @@ givenName: Blake cn: Blake Smith uid: bsmith471 mail: bsmith471@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -7343,7 +7343,7 @@ givenName: Robert cn: Robert Williams uid: rwilliams472 mail: rwilliams472@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -7359,7 +7359,7 @@ givenName: Jennifer cn: Jennifer Davis uid: jdavis mail: jdavis@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff @@ -7374,7 +7374,7 @@ givenName: Erik cn: Erik Grady uid: egrady mail: egrady@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -7389,7 +7389,7 @@ givenName: Donna cn: Donna Peterson uid: dpeterson475 mail: dpeterson475@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff @@ -7404,7 +7404,7 @@ givenName: Lisa cn: Lisa Williams uid: lwilliams476 mail: lwilliams476@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: student @@ -7419,7 +7419,7 @@ givenName: Erik cn: Erik Roberts uid: eroberts477 mail: eroberts477@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -7435,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 @@ -7451,7 +7451,7 @@ givenName: Jim cn: Jim Scott uid: jscott479 mail: jscott479@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -7467,7 +7467,7 @@ givenName: Betty cn: Betty Davis uid: bdavis480 mail: bdavis480@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -7482,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 @@ -7498,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 @@ -7514,7 +7514,7 @@ givenName: Betty cn: Betty Lee uid: blee483 mail: blee483@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community @@ -7529,7 +7529,7 @@ givenName: Jim cn: Jim Clark uid: jclark484 mail: jclark484@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community @@ -7544,7 +7544,7 @@ givenName: David cn: David Brown uid: dbrown mail: dbrown@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community @@ -7559,7 +7559,7 @@ givenName: Paul cn: Paul Gonazles uid: pgonazles mail: pgonazles@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -7574,7 +7574,7 @@ givenName: Mark cn: Mark White uid: mwhite487 mail: mwhite487@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum @@ -7589,7 +7589,7 @@ givenName: Sarah cn: Sarah Vales uid: svales488 mail: svales488@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community @@ -7604,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 @@ -7620,7 +7620,7 @@ givenName: Kim cn: Kim Doe uid: kdoe490 mail: kdoe490@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community @@ -7635,7 +7635,7 @@ givenName: Bill cn: Bill Morrison uid: bmorrison491 mail: bmorrison491@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member @@ -7650,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 @@ -7666,7 +7666,7 @@ givenName: Heather cn: Heather Davis uid: hdavis493 mail: hdavis493@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -7681,7 +7681,7 @@ givenName: James cn: James Thompson uid: jthompson494 mail: jthompson494@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum @@ -7696,7 +7696,7 @@ givenName: Karl cn: Karl Doe uid: kdoe495 mail: kdoe495@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty @@ -7711,7 +7711,7 @@ givenName: Kim cn: Kim Williams uid: kwilliams496 mail: kwilliams496@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum @@ -7726,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 @@ -7742,7 +7742,7 @@ givenName: Paul cn: Paul Vales uid: pvales498 mail: pvales498@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -7758,7 +7758,7 @@ givenName: Sarah cn: Sarah Scott uid: sscott mail: sscott@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member @@ -7773,7 +7773,7 @@ givenName: Thomas cn: Thomas Martinez uid: tmartinez mail: tmartinez@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -7788,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 @@ -7804,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 @@ -7820,7 +7820,7 @@ givenName: Mark cn: Mark Davis uid: mdavis503 mail: mdavis503@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -7836,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 @@ -7852,7 +7852,7 @@ givenName: Betty cn: Betty Grady uid: bgrady505 mail: bgrady505@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum @@ -7867,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 @@ -7883,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 @@ -7899,7 +7899,7 @@ givenName: Ann cn: Ann Vales uid: avales508 mail: avales508@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum @@ -7914,7 +7914,7 @@ givenName: David cn: David Langenberg uid: dlangenberg509 mail: dlangenberg509@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -7929,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 @@ -7945,7 +7945,7 @@ givenName: Lisa cn: Lisa Clark uid: lclark511 mail: lclark511@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member @@ -7960,7 +7960,7 @@ givenName: Paul cn: Paul Anderson uid: panderson mail: panderson@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum @@ -7975,7 +7975,7 @@ givenName: Bill cn: Bill Johnson uid: bjohnson513 mail: bjohnson513@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -7991,7 +7991,7 @@ givenName: William cn: William Lopez uid: wlopez mail: wlopez@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty @@ -8006,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 @@ -8022,7 +8022,7 @@ givenName: William cn: William Clark uid: wclark mail: wclark@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community @@ -8037,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 @@ -8053,7 +8053,7 @@ givenName: Heather cn: Heather Williams uid: hwilliams mail: hwilliams@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -8069,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 @@ -8085,7 +8085,7 @@ givenName: Karoline cn: Karoline Lopez uid: klopez520 mail: klopez520@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -8100,7 +8100,7 @@ givenName: Thomas cn: Thomas Lee uid: tlee mail: tlee@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: student @@ -8115,7 +8115,7 @@ givenName: Mary cn: Mary Scott uid: mscott522 mail: mscott522@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member @@ -8130,7 +8130,7 @@ givenName: David cn: David Anderson uid: danderson523 mail: danderson523@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty @@ -8145,7 +8145,7 @@ givenName: Jim cn: Jim Gonazles uid: jgonazles524 mail: jgonazles524@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community @@ -8160,7 +8160,7 @@ givenName: Heather cn: Heather Gasper uid: hgasper mail: hgasper@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -8176,7 +8176,7 @@ givenName: Eric cn: Eric Henderson uid: ehenderson mail: ehenderson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -8192,7 +8192,7 @@ givenName: Bill cn: Bill Scott uid: bscott527 mail: bscott527@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -8208,7 +8208,7 @@ givenName: Eric cn: Eric White uid: ewhite mail: ewhite@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff @@ -8223,7 +8223,7 @@ givenName: Sarah cn: Sarah Roberts uid: sroberts mail: sroberts@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -8238,7 +8238,7 @@ givenName: Paul cn: Paul Butler uid: pbutler mail: pbutler@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: alum @@ -8253,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 @@ -8269,7 +8269,7 @@ givenName: William cn: William Johnson uid: wjohnson532 mail: wjohnson532@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -8285,7 +8285,7 @@ givenName: Eric cn: Eric Scott uid: escott533 mail: escott533@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -8301,7 +8301,7 @@ givenName: Karl cn: Karl Martinez uid: kmartinez534 mail: kmartinez534@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: staff @@ -8316,7 +8316,7 @@ givenName: Kiersten cn: Kiersten Brown uid: kbrown535 mail: kbrown535@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -8332,7 +8332,7 @@ givenName: John cn: John Langenberg uid: jlangenberg536 mail: jlangenberg536@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: alum @@ -8347,7 +8347,7 @@ givenName: Greg cn: Greg Davis uid: gdavis537 mail: gdavis537@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member @@ -8362,7 +8362,7 @@ givenName: William cn: William Doe uid: wdoe mail: wdoe@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -8378,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 @@ -8394,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 @@ -8410,7 +8410,7 @@ givenName: Blake cn: Blake Martinez uid: bmartinez mail: bmartinez@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -8426,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 @@ -8442,7 +8442,7 @@ givenName: Karl cn: Karl Smith uid: ksmith543 mail: ksmith543@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member eduPersonAffiliation: staff @@ -8458,7 +8458,7 @@ givenName: John cn: John Clark uid: jclark544 mail: jclark544@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member @@ -8473,7 +8473,7 @@ givenName: Jennifer cn: Jennifer Butler uid: jbutler545 mail: jbutler545@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -8489,7 +8489,7 @@ givenName: John cn: John Grady uid: jgrady546 mail: jgrady546@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -8505,7 +8505,7 @@ givenName: Jennifer cn: Jennifer Lee uid: jlee547 mail: jlee547@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum @@ -8520,7 +8520,7 @@ givenName: Colin cn: Colin Smith uid: csmith mail: csmith@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff @@ -8535,7 +8535,7 @@ givenName: Thomas cn: Thomas Peterson uid: tpeterson mail: tpeterson@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community @@ -8550,7 +8550,7 @@ givenName: Marie cn: Marie Gonazles uid: mgonazles550 mail: mgonazles550@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community @@ -8565,7 +8565,7 @@ givenName: Bill cn: Bill White uid: bwhite551 mail: bwhite551@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member @@ -8580,7 +8580,7 @@ givenName: Nancy cn: Nancy Henderson uid: nhenderson552 mail: nhenderson552@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -8596,7 +8596,7 @@ givenName: Bill cn: Bill Lewis uid: blewis553 mail: blewis553@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: student @@ -8611,7 +8611,7 @@ givenName: Michael cn: Michael Johnson uid: mjohnson554 mail: mjohnson554@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member @@ -8626,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 @@ -8642,7 +8642,7 @@ givenName: Sarah cn: Sarah Lewis uid: slewis556 mail: slewis556@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -8658,7 +8658,7 @@ givenName: Donna cn: Donna Vales uid: dvales557 mail: dvales557@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum @@ -8673,7 +8673,7 @@ givenName: John cn: John Lopez uid: jlopez558 mail: jlopez558@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: student @@ -8688,7 +8688,7 @@ givenName: Karl cn: Karl Martinez uid: kmartinez559 mail: kmartinez559@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -8703,7 +8703,7 @@ givenName: Karl cn: Karl Thompson uid: kthompson560 mail: kthompson560@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty @@ -8718,7 +8718,7 @@ givenName: Karoline cn: Karoline Roberts uid: kroberts561 mail: kroberts561@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: member @@ -8734,7 +8734,7 @@ givenName: Mary cn: Mary Brown uid: mbrown562 mail: mbrown562@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum @@ -8749,7 +8749,7 @@ givenName: Betty cn: Betty Lopez uid: blopez563 mail: blopez563@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -8765,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 @@ -8781,7 +8781,7 @@ givenName: Jennifer cn: Jennifer Lopez uid: jlopez565 mail: jlopez565@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -8797,7 +8797,7 @@ givenName: Blake cn: Blake Walters uid: bwalters566 mail: bwalters566@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -8812,7 +8812,7 @@ givenName: Karoline cn: Karoline Vales uid: kvales567 mail: kvales567@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -8828,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 @@ -8844,7 +8844,7 @@ givenName: Thomas cn: Thomas Morrison uid: tmorrison569 mail: tmorrison569@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -8860,7 +8860,7 @@ givenName: Blake cn: Blake Davis uid: bdavis570 mail: bdavis570@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -8875,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 @@ -8891,7 +8891,7 @@ givenName: Blake cn: Blake Anderson uid: banderson572 mail: banderson572@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community eduPersonAffiliation: alum @@ -8907,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 @@ -8923,7 +8923,7 @@ givenName: Bill cn: Bill Price uid: bprice574 mail: bprice574@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff @@ -8938,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 @@ -8954,7 +8954,7 @@ givenName: Jennifer cn: Jennifer Scott uid: jscott576 mail: jscott576@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff @@ -8969,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 @@ -8985,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 @@ -9001,7 +9001,7 @@ givenName: Sarah cn: Sarah Langenberg uid: slangenberg579 mail: slangenberg579@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -9017,7 +9017,7 @@ givenName: Betty cn: Betty Vales uid: bvales580 mail: bvales580@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: staff @@ -9032,7 +9032,7 @@ givenName: Lori cn: Lori Peterson uid: lpeterson581 mail: lpeterson581@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum @@ -9047,7 +9047,7 @@ givenName: Blake cn: Blake Martinez uid: bmartinez582 mail: bmartinez582@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -9063,7 +9063,7 @@ givenName: Ann cn: Ann Smith uid: asmith583 mail: asmith583@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty @@ -9078,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 @@ -9094,7 +9094,7 @@ givenName: Eric cn: Eric Henderson uid: ehenderson585 mail: ehenderson585@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -9110,7 +9110,7 @@ givenName: Lisa cn: Lisa Morrison uid: lmorrison586 mail: lmorrison586@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum @@ -9125,7 +9125,7 @@ givenName: Colin cn: Colin Henderson uid: chenderson mail: chenderson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -9141,7 +9141,7 @@ givenName: Lori cn: Lori Brown uid: lbrown mail: lbrown@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -9156,7 +9156,7 @@ givenName: Paul cn: Paul Smith uid: psmith mail: psmith@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -9172,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 @@ -9188,7 +9188,7 @@ givenName: Karl cn: Karl Doe uid: kdoe591 mail: kdoe591@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -9204,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 @@ -9220,7 +9220,7 @@ givenName: Marie cn: Marie Vales uid: mvales593 mail: mvales593@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: student @@ -9235,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 @@ -9251,7 +9251,7 @@ givenName: Ann cn: Ann Roberts uid: aroberts mail: aroberts@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community @@ -9266,7 +9266,7 @@ givenName: David cn: David Thompson uid: dthompson mail: dthompson@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -9281,7 +9281,7 @@ givenName: Donna cn: Donna Brown uid: dbrown597 mail: dbrown597@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty @@ -9296,7 +9296,7 @@ givenName: Thomas cn: Thomas Martinez uid: tmartinez598 mail: tmartinez598@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student @@ -9311,7 +9311,7 @@ givenName: Karl cn: Karl Brown uid: kbrown599 mail: kbrown599@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -9326,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 @@ -9342,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 @@ -9358,7 +9358,7 @@ givenName: Lisa cn: Lisa Butler uid: lbutler602 mail: lbutler602@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff @@ -9373,7 +9373,7 @@ givenName: Jennifer cn: Jennifer Henderson uid: jhenderson603 mail: jhenderson603@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: faculty @@ -9388,7 +9388,7 @@ givenName: Karoline cn: Karoline Scott uid: kscott604 mail: kscott604@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -9403,7 +9403,7 @@ givenName: David cn: David Doe uid: ddoe605 mail: ddoe605@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -9419,7 +9419,7 @@ givenName: David cn: David Johnson uid: djohnson606 mail: djohnson606@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -9435,7 +9435,7 @@ givenName: Paul cn: Paul Butler uid: pbutler607 mail: pbutler607@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -9450,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 @@ -9466,7 +9466,7 @@ givenName: Kim cn: Kim Smith uid: ksmith609 mail: ksmith609@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member @@ -9481,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 @@ -9497,7 +9497,7 @@ givenName: Karl cn: Karl Butler uid: kbutler611 mail: kbutler611@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -9513,7 +9513,7 @@ givenName: William cn: William White uid: wwhite mail: wwhite@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff @@ -9528,7 +9528,7 @@ givenName: David cn: David Peterson uid: dpeterson613 mail: dpeterson613@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -9544,7 +9544,7 @@ givenName: Karl cn: Karl Lopez uid: klopez614 mail: klopez614@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member @@ -9559,7 +9559,7 @@ givenName: Thomas cn: Thomas Johnson uid: tjohnson mail: tjohnson@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty @@ -9574,7 +9574,7 @@ givenName: Mark cn: Mark Lee uid: mlee616 mail: mlee616@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -9589,7 +9589,7 @@ givenName: Jennifer cn: Jennifer Price uid: jprice617 mail: jprice617@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -9605,7 +9605,7 @@ givenName: Greg cn: Greg Henderson uid: ghenderson618 mail: ghenderson618@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum @@ -9620,7 +9620,7 @@ givenName: Robert cn: Robert Walters uid: rwalters619 mail: rwalters619@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -9635,7 +9635,7 @@ givenName: Betty cn: Betty Morrison uid: bmorrison620 mail: bmorrison620@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: member @@ -9650,7 +9650,7 @@ givenName: Lisa cn: Lisa Anderson uid: landerson mail: landerson@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: member @@ -9666,7 +9666,7 @@ givenName: Lori cn: Lori Anderson uid: landerson622 mail: landerson622@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community @@ -9681,7 +9681,7 @@ givenName: Paul cn: Paul Price uid: pprice mail: pprice@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student @@ -9696,7 +9696,7 @@ givenName: Nancy cn: Nancy Smith uid: nsmith mail: nsmith@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -9712,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 @@ -9728,7 +9728,7 @@ givenName: Mary cn: Mary Lopez uid: mlopez626 mail: mlopez626@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community eduPersonAffiliation: alum @@ -9744,7 +9744,7 @@ givenName: Donna cn: Donna Vales uid: dvales627 mail: dvales627@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community @@ -9759,7 +9759,7 @@ givenName: Erik cn: Erik Thompson uid: ethompson628 mail: ethompson628@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -9775,7 +9775,7 @@ givenName: Robert cn: Robert Doe uid: rdoe629 mail: rdoe629@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -9791,7 +9791,7 @@ givenName: Colin cn: Colin Johnson uid: cjohnson mail: cjohnson@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community @@ -9806,7 +9806,7 @@ givenName: Michael cn: Michael Williams uid: mwilliams631 mail: mwilliams631@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -9821,7 +9821,7 @@ givenName: John cn: John Peterson uid: jpeterson632 mail: jpeterson632@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member @@ -9836,7 +9836,7 @@ givenName: Bill cn: Bill Gonazles uid: bgonazles633 mail: bgonazles633@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty @@ -9851,7 +9851,7 @@ givenName: David cn: David Anderson uid: danderson634 mail: danderson634@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -9867,7 +9867,7 @@ givenName: Kim cn: Kim Walters uid: kwalters635 mail: kwalters635@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty @@ -9882,7 +9882,7 @@ givenName: Ann cn: Ann Doe uid: adoe mail: adoe@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member @@ -9897,7 +9897,7 @@ givenName: Colin cn: Colin Doe uid: cdoe mail: cdoe@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -9913,7 +9913,7 @@ givenName: David cn: David Doe uid: ddoe638 mail: ddoe638@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: faculty @@ -9928,7 +9928,7 @@ givenName: Erik cn: Erik Davis uid: edavis639 mail: edavis639@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -9944,7 +9944,7 @@ givenName: Heather cn: Heather White uid: hwhite640 mail: hwhite640@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty @@ -9959,7 +9959,7 @@ givenName: David cn: David Price uid: dprice641 mail: dprice641@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: student @@ -9974,7 +9974,7 @@ givenName: Kim cn: Kim Lopez uid: klopez642 mail: klopez642@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum @@ -9989,7 +9989,7 @@ givenName: Ann cn: Ann Brown uid: abrown643 mail: abrown643@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member @@ -10004,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 @@ -10020,7 +10020,7 @@ givenName: Kiersten cn: Kiersten White uid: kwhite645 mail: kwhite645@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -10036,7 +10036,7 @@ givenName: Erik cn: Erik Doe uid: edoe mail: edoe@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff @@ -10051,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 @@ -10067,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 @@ -10083,7 +10083,7 @@ givenName: Bill cn: Bill Smith uid: bsmith649 mail: bsmith649@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: member @@ -10098,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 @@ -10114,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 @@ -10130,7 +10130,7 @@ givenName: Jim cn: Jim Walters uid: jwalters652 mail: jwalters652@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member @@ -10145,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 @@ -10161,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 @@ -10177,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 @@ -10193,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 @@ -10209,7 +10209,7 @@ givenName: Erik cn: Erik Williams uid: ewilliams657 mail: ewilliams657@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: member @@ -10224,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 @@ -10240,7 +10240,7 @@ givenName: Kiersten cn: Kiersten Grady uid: kgrady659 mail: kgrady659@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student @@ -10255,7 +10255,7 @@ givenName: William cn: William Martinez uid: wmartinez mail: wmartinez@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -10270,7 +10270,7 @@ givenName: Paul cn: Paul Williams uid: pwilliams mail: pwilliams@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -10286,7 +10286,7 @@ givenName: Kim cn: Kim Johnson uid: kjohnson662 mail: kjohnson662@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -10302,7 +10302,7 @@ givenName: Sarah cn: Sarah Martinez uid: smartinez663 mail: smartinez663@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -10318,7 +10318,7 @@ givenName: Marie cn: Marie Vales uid: mvales664 mail: mvales664@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff @@ -10333,7 +10333,7 @@ givenName: Karl cn: Karl Langenberg uid: klangenberg665 mail: klangenberg665@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -10349,7 +10349,7 @@ givenName: Marie cn: Marie Smith uid: msmith666 mail: msmith666@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -10365,7 +10365,7 @@ givenName: Mark cn: Mark Vales uid: mvales667 mail: mvales667@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -10381,7 +10381,7 @@ givenName: James cn: James Walters uid: jwalters668 mail: jwalters668@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member @@ -10396,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 @@ -10412,7 +10412,7 @@ givenName: Donna cn: Donna Vales uid: dvales670 mail: dvales670@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student @@ -10427,7 +10427,7 @@ givenName: David cn: David Clark uid: dclark671 mail: dclark671@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -10443,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 @@ -10459,7 +10459,7 @@ givenName: Mark cn: Mark Brown uid: mbrown673 mail: mbrown673@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff @@ -10474,7 +10474,7 @@ givenName: Karoline cn: Karoline Doe uid: kdoe674 mail: kdoe674@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -10489,7 +10489,7 @@ givenName: William cn: William Thompson uid: wthompson675 mail: wthompson675@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -10505,7 +10505,7 @@ givenName: David cn: David Morrison uid: dmorrison676 mail: dmorrison676@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -10521,7 +10521,7 @@ givenName: Erik cn: Erik Doe uid: edoe677 mail: edoe677@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community @@ -10536,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 @@ -10552,7 +10552,7 @@ givenName: Karl cn: Karl Peterson uid: kpeterson679 mail: kpeterson679@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -10568,7 +10568,7 @@ givenName: Heather cn: Heather Gonazles uid: hgonazles mail: hgonazles@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -10584,7 +10584,7 @@ givenName: Donna cn: Donna Roberts uid: droberts mail: droberts@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff @@ -10599,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 @@ -10615,7 +10615,7 @@ givenName: Mark cn: Mark Morrison uid: mmorrison mail: mmorrison@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: staff @@ -10630,7 +10630,7 @@ givenName: Colin cn: Colin Morrison uid: cmorrison684 mail: cmorrison684@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty @@ -10645,7 +10645,7 @@ givenName: Jim cn: Jim Lewis uid: jlewis685 mail: jlewis685@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -10661,7 +10661,7 @@ givenName: Jennifer cn: Jennifer Johnson uid: jjohnson686 mail: jjohnson686@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -10676,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 @@ -10692,7 +10692,7 @@ givenName: Donna cn: Donna Doe uid: ddoe688 mail: ddoe688@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: student @@ -10707,7 +10707,7 @@ givenName: Donna cn: Donna Roberts uid: droberts689 mail: droberts689@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community @@ -10722,7 +10722,7 @@ givenName: Mary cn: Mary Gonazles uid: mgonazles690 mail: mgonazles690@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -10738,7 +10738,7 @@ givenName: Ann cn: Ann Williams uid: awilliams mail: awilliams@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff @@ -10753,7 +10753,7 @@ givenName: Greg cn: Greg Walters uid: gwalters mail: gwalters@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: alum @@ -10769,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 @@ -10785,7 +10785,7 @@ givenName: Michael cn: Michael Lewis uid: mlewis694 mail: mlewis694@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -10800,7 +10800,7 @@ givenName: Ann cn: Ann Vales uid: avales695 mail: avales695@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty @@ -10815,7 +10815,7 @@ givenName: Michael cn: Michael Johnson uid: mjohnson696 mail: mjohnson696@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff @@ -10830,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 @@ -10846,7 +10846,7 @@ givenName: Thomas cn: Thomas Roberts uid: troberts mail: troberts@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: student @@ -10861,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 @@ -10877,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 @@ -10893,7 +10893,7 @@ givenName: Kim cn: Kim Brown uid: kbrown701 mail: kbrown701@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -10908,7 +10908,7 @@ givenName: Erik cn: Erik White uid: ewhite702 mail: ewhite702@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -10923,7 +10923,7 @@ givenName: Lori cn: Lori Walters uid: lwalters703 mail: lwalters703@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community @@ -10938,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 @@ -10954,7 +10954,7 @@ givenName: Bill cn: Bill Brown uid: bbrown705 mail: bbrown705@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -10969,7 +10969,7 @@ givenName: Blake cn: Blake Langenberg uid: blangenberg mail: blangenberg@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff @@ -10984,7 +10984,7 @@ givenName: Michael cn: Michael Lewis uid: mlewis707 mail: mlewis707@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student @@ -10999,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 @@ -11015,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 @@ -11031,7 +11031,7 @@ givenName: Mark cn: Mark Clark uid: mclark710 mail: mclark710@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -11047,7 +11047,7 @@ givenName: Thomas cn: Thomas Price uid: tprice mail: tprice@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff @@ -11062,7 +11062,7 @@ givenName: Karl cn: Karl Lewis uid: klewis712 mail: klewis712@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum @@ -11077,7 +11077,7 @@ givenName: Marie cn: Marie Butler uid: mbutler713 mail: mbutler713@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: member @@ -11092,7 +11092,7 @@ givenName: Mark cn: Mark Morrison uid: mmorrison714 mail: mmorrison714@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community @@ -11107,7 +11107,7 @@ givenName: Greg cn: Greg Smith uid: gsmith715 mail: gsmith715@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -11122,7 +11122,7 @@ givenName: Robert cn: Robert Anderson uid: randerson mail: randerson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member @@ -11137,7 +11137,7 @@ givenName: Kiersten cn: Kiersten Langenberg uid: klangenberg717 mail: klangenberg717@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -11152,7 +11152,7 @@ givenName: Mary cn: Mary Langenberg uid: mlangenberg718 mail: mlangenberg718@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum @@ -11167,7 +11167,7 @@ givenName: Paul cn: Paul Lee uid: plee719 mail: plee719@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -11182,7 +11182,7 @@ givenName: Donna cn: Donna Clark uid: dclark720 mail: dclark720@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student @@ -11197,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 @@ -11213,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 @@ -11229,7 +11229,7 @@ givenName: Erik cn: Erik Martinez uid: emartinez mail: emartinez@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty @@ -11244,7 +11244,7 @@ givenName: Karl cn: Karl Gonazles uid: kgonazles mail: kgonazles@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community @@ -11259,7 +11259,7 @@ givenName: Lisa cn: Lisa Vales uid: lvales725 mail: lvales725@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -11274,7 +11274,7 @@ givenName: Karl cn: Karl Grady uid: kgrady726 mail: kgrady726@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -11289,7 +11289,7 @@ givenName: Ann cn: Ann Anderson uid: aanderson727 mail: aanderson727@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -11304,7 +11304,7 @@ givenName: Ann cn: Ann White uid: awhite728 mail: awhite728@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -11320,7 +11320,7 @@ givenName: Lori cn: Lori Williams uid: lwilliams729 mail: lwilliams729@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -11336,7 +11336,7 @@ givenName: Bill cn: Bill Clark uid: bclark730 mail: bclark730@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum @@ -11351,7 +11351,7 @@ givenName: David cn: David Williams uid: dwilliams731 mail: dwilliams731@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -11366,7 +11366,7 @@ givenName: David cn: David Williams uid: dwilliams732 mail: dwilliams732@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty @@ -11381,7 +11381,7 @@ givenName: David cn: David Lewis uid: dlewis733 mail: dlewis733@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student @@ -11396,7 +11396,7 @@ givenName: Nancy cn: Nancy Doe uid: ndoe mail: ndoe@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -11412,7 +11412,7 @@ givenName: Jennifer cn: Jennifer Johnson uid: jjohnson735 mail: jjohnson735@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: member @@ -11427,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 @@ -11443,7 +11443,7 @@ givenName: Lisa cn: Lisa Price uid: lprice mail: lprice@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community @@ -11458,7 +11458,7 @@ givenName: Robert cn: Robert Doe uid: rdoe738 mail: rdoe738@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty @@ -11473,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 @@ -11489,7 +11489,7 @@ givenName: Heather cn: Heather Anderson uid: handerson740 mail: handerson740@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -11505,7 +11505,7 @@ givenName: Jo cn: Jo Martinez uid: jmartinez741 mail: jmartinez741@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -11520,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 @@ -11536,7 +11536,7 @@ givenName: Erik cn: Erik Davis uid: edavis743 mail: edavis743@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student @@ -11551,7 +11551,7 @@ givenName: James cn: James Peterson uid: jpeterson744 mail: jpeterson744@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community @@ -11566,7 +11566,7 @@ givenName: Betty cn: Betty Price uid: bprice745 mail: bprice745@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -11581,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 @@ -11597,7 +11597,7 @@ givenName: Robert cn: Robert Roberts uid: rroberts mail: rroberts@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: member @@ -11612,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 @@ -11628,7 +11628,7 @@ givenName: Jim cn: Jim Anderson uid: janderson749 mail: janderson749@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -11643,7 +11643,7 @@ givenName: Bill cn: Bill Roberts uid: broberts750 mail: broberts750@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member @@ -11658,7 +11658,7 @@ givenName: Erik cn: Erik Lopez uid: elopez751 mail: elopez751@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: community @@ -11673,7 +11673,7 @@ givenName: Michael cn: Michael Anderson uid: manderson752 mail: manderson752@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -11688,7 +11688,7 @@ givenName: Karoline cn: Karoline Butler uid: kbutler753 mail: kbutler753@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum @@ -11703,7 +11703,7 @@ givenName: Greg cn: Greg Clark uid: gclark mail: gclark@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student @@ -11718,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 @@ -11734,7 +11734,7 @@ givenName: Lori cn: Lori Lopez uid: llopez756 mail: llopez756@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff @@ -11749,7 +11749,7 @@ givenName: Kim cn: Kim Henderson uid: khenderson757 mail: khenderson757@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff @@ -11764,7 +11764,7 @@ givenName: Colin cn: Colin Johnson uid: cjohnson758 mail: cjohnson758@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -11780,7 +11780,7 @@ givenName: Kim cn: Kim Gasper uid: kgasper759 mail: kgasper759@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: community @@ -11795,7 +11795,7 @@ givenName: James cn: James Lewis uid: jlewis760 mail: jlewis760@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: staff @@ -11810,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 @@ -11826,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 @@ -11842,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 @@ -11858,7 +11858,7 @@ givenName: Marie cn: Marie Price uid: mprice764 mail: mprice764@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member @@ -11873,7 +11873,7 @@ givenName: Ann cn: Ann Smith uid: asmith765 mail: asmith765@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -11888,7 +11888,7 @@ givenName: Kiersten cn: Kiersten Anderson uid: kanderson766 mail: kanderson766@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -11903,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 @@ -11919,7 +11919,7 @@ givenName: Karoline cn: Karoline Vales uid: kvales768 mail: kvales768@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff @@ -11934,7 +11934,7 @@ givenName: Jo cn: Jo Henderson uid: jhenderson769 mail: jhenderson769@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff @@ -11949,7 +11949,7 @@ givenName: James cn: James Johnson uid: jjohnson770 mail: jjohnson770@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -11964,7 +11964,7 @@ givenName: William cn: William Roberts uid: wroberts mail: wroberts@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -11979,7 +11979,7 @@ givenName: Colin cn: Colin Peterson uid: cpeterson772 mail: cpeterson772@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -11995,7 +11995,7 @@ givenName: Thomas cn: Thomas Doe uid: tdoe mail: tdoe@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -12011,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 @@ -12027,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 @@ -12043,7 +12043,7 @@ givenName: Lori cn: Lori Roberts uid: lroberts776 mail: lroberts776@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty @@ -12058,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 @@ -12074,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 @@ -12090,7 +12090,7 @@ givenName: Mary cn: Mary Vales uid: mvales779 mail: mvales779@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -12106,7 +12106,7 @@ givenName: Jo cn: Jo Doe uid: jdoe780 mail: jdoe780@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -12122,7 +12122,7 @@ givenName: David cn: David Martinez uid: dmartinez mail: dmartinez@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member @@ -12137,7 +12137,7 @@ givenName: David cn: David Vales uid: dvales782 mail: dvales782@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff @@ -12152,7 +12152,7 @@ givenName: Thomas cn: Thomas Price uid: tprice783 mail: tprice783@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty @@ -12167,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 @@ -12183,7 +12183,7 @@ givenName: David cn: David Gonazles uid: dgonazles785 mail: dgonazles785@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty @@ -12198,7 +12198,7 @@ givenName: Sarah cn: Sarah Walters uid: swalters786 mail: swalters786@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: alum @@ -12213,7 +12213,7 @@ givenName: Heather cn: Heather Peterson uid: hpeterson mail: hpeterson@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -12229,7 +12229,7 @@ givenName: Jennifer cn: Jennifer Lee uid: jlee788 mail: jlee788@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: community @@ -12245,7 +12245,7 @@ givenName: Nancy cn: Nancy Lopez uid: nlopez mail: nlopez@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -12261,7 +12261,7 @@ givenName: Kim cn: Kim White uid: kwhite790 mail: kwhite790@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student @@ -12276,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 @@ -12292,7 +12292,7 @@ givenName: Jo cn: Jo Roberts uid: jroberts792 mail: jroberts792@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -12308,7 +12308,7 @@ givenName: Heather cn: Heather Clark uid: hclark mail: hclark@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -12323,7 +12323,7 @@ givenName: Nancy cn: Nancy Clark uid: nclark794 mail: nclark794@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum @@ -12338,7 +12338,7 @@ givenName: David cn: David Peterson uid: dpeterson795 mail: dpeterson795@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -12354,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 @@ -12370,7 +12370,7 @@ givenName: Heather cn: Heather Lewis uid: hlewis797 mail: hlewis797@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -12386,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 @@ -12402,7 +12402,7 @@ givenName: Sarah cn: Sarah Roberts uid: sroberts799 mail: sroberts799@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -12418,7 +12418,7 @@ givenName: Colin cn: Colin Lewis uid: clewis800 mail: clewis800@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum @@ -12433,7 +12433,7 @@ givenName: Jim cn: Jim Clark uid: jclark801 mail: jclark801@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -12449,7 +12449,7 @@ givenName: Jim cn: Jim Vales uid: jvales802 mail: jvales802@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student @@ -12464,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 @@ -12480,7 +12480,7 @@ givenName: John cn: John Gasper uid: jgasper804 mail: jgasper804@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -12496,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 @@ -12512,7 +12512,7 @@ givenName: David cn: David Williams uid: dwilliams806 mail: dwilliams806@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: member @@ -12527,7 +12527,7 @@ givenName: Jennifer cn: Jennifer Scott uid: jscott807 mail: jscott807@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community @@ -12542,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 @@ -12558,7 +12558,7 @@ givenName: Eric cn: Eric Davis uid: edavis809 mail: edavis809@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum @@ -12573,7 +12573,7 @@ givenName: Marie cn: Marie Price uid: mprice810 mail: mprice810@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -12588,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 @@ -12604,7 +12604,7 @@ givenName: Heather cn: Heather Henderson uid: hhenderson812 mail: hhenderson812@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -12620,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 @@ -12636,7 +12636,7 @@ givenName: David cn: David Doe uid: ddoe814 mail: ddoe814@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -12651,7 +12651,7 @@ givenName: Erik cn: Erik Williams uid: ewilliams815 mail: ewilliams815@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student @@ -12666,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 @@ -12682,7 +12682,7 @@ givenName: Lisa cn: Lisa Vales uid: lvales817 mail: lvales817@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: student @@ -12697,7 +12697,7 @@ givenName: Lori cn: Lori Peterson uid: lpeterson818 mail: lpeterson818@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member @@ -12712,7 +12712,7 @@ givenName: David cn: David Gasper uid: dgasper mail: dgasper@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member @@ -12727,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 @@ -12743,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 @@ -12759,7 +12759,7 @@ givenName: David cn: David Davis uid: ddavis822 mail: ddavis822@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student @@ -12774,7 +12774,7 @@ givenName: Karl cn: Karl Gasper uid: kgasper823 mail: kgasper823@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: member @@ -12790,7 +12790,7 @@ givenName: John cn: John Price uid: jprice824 mail: jprice824@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: alum @@ -12805,7 +12805,7 @@ givenName: Ann cn: Ann Clark uid: aclark mail: aclark@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: member @@ -12821,7 +12821,7 @@ givenName: Jennifer cn: Jennifer Clark uid: jclark826 mail: jclark826@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -12837,7 +12837,7 @@ givenName: Lori cn: Lori Martinez uid: lmartinez mail: lmartinez@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: alum @@ -12852,7 +12852,7 @@ givenName: Jim cn: Jim Peterson uid: jpeterson828 mail: jpeterson828@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: alum @@ -12867,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 @@ -12883,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 @@ -12899,7 +12899,7 @@ givenName: Eric cn: Eric Henderson uid: ehenderson831 mail: ehenderson831@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: faculty @@ -12915,7 +12915,7 @@ givenName: Kiersten cn: Kiersten White uid: kwhite832 mail: kwhite832@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -12931,7 +12931,7 @@ givenName: Donna cn: Donna Henderson uid: dhenderson833 mail: dhenderson833@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: community @@ -12946,7 +12946,7 @@ givenName: Donna cn: Donna Brown uid: dbrown834 mail: dbrown834@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community eduPersonAffiliation: staff @@ -12962,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 @@ -12978,7 +12978,7 @@ givenName: Greg cn: Greg Gasper uid: ggasper836 mail: ggasper836@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: community eduPersonAffiliation: student @@ -12994,7 +12994,7 @@ givenName: Marie cn: Marie Lewis uid: mlewis837 mail: mlewis837@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community eduPersonAffiliation: alum @@ -13010,7 +13010,7 @@ givenName: Karl cn: Karl Clark uid: kclark838 mail: kclark838@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty @@ -13025,7 +13025,7 @@ givenName: David cn: David Clark uid: dclark839 mail: dclark839@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff @@ -13040,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 @@ -13056,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 @@ -13072,7 +13072,7 @@ givenName: John cn: John Butler uid: jbutler842 mail: jbutler842@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: community @@ -13087,7 +13087,7 @@ givenName: Betty cn: Betty Butler uid: bbutler843 mail: bbutler843@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -13102,7 +13102,7 @@ givenName: Greg cn: Greg Thompson uid: gthompson mail: gthompson@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -13118,7 +13118,7 @@ givenName: Greg cn: Greg Langenberg uid: glangenberg mail: glangenberg@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: community @@ -13133,7 +13133,7 @@ givenName: Ann cn: Ann Johnson uid: ajohnson mail: ajohnson@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student @@ -13148,7 +13148,7 @@ givenName: Ann cn: Ann White uid: awhite847 mail: awhite847@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty @@ -13163,7 +13163,7 @@ givenName: David cn: David Henderson uid: dhenderson848 mail: dhenderson848@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty @@ -13178,7 +13178,7 @@ givenName: Mark cn: Mark Williams uid: mwilliams849 mail: mwilliams849@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff @@ -13193,7 +13193,7 @@ givenName: Nancy cn: Nancy Price uid: nprice mail: nprice@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -13209,7 +13209,7 @@ givenName: Donna cn: Donna Thompson uid: dthompson851 mail: dthompson851@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member @@ -13224,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 @@ -13240,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 @@ -13256,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 @@ -13272,7 +13272,7 @@ givenName: Ann cn: Ann Langenberg uid: alangenberg855 mail: alangenberg855@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community @@ -13287,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 @@ -13303,7 +13303,7 @@ givenName: William cn: William Davis uid: wdavis mail: wdavis@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -13319,7 +13319,7 @@ givenName: Karoline cn: Karoline Walters uid: kwalters858 mail: kwalters858@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: student @@ -13335,7 +13335,7 @@ givenName: Erik cn: Erik Price uid: eprice859 mail: eprice859@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student @@ -13350,7 +13350,7 @@ givenName: Sarah cn: Sarah Lee uid: slee860 mail: slee860@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: faculty @@ -13365,7 +13365,7 @@ givenName: James cn: James Walters uid: jwalters861 mail: jwalters861@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: community @@ -13381,7 +13381,7 @@ givenName: Robert cn: Robert Price uid: rprice862 mail: rprice862@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: staff @@ -13396,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 @@ -13412,7 +13412,7 @@ givenName: Mary cn: Mary Clark uid: mclark864 mail: mclark864@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -13427,7 +13427,7 @@ givenName: Lisa cn: Lisa Walters uid: lwalters865 mail: lwalters865@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -13442,7 +13442,7 @@ givenName: Heather cn: Heather Anderson uid: handerson866 mail: handerson866@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -13457,7 +13457,7 @@ givenName: David cn: David Henderson uid: dhenderson867 mail: dhenderson867@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -13473,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 @@ -13489,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 @@ -13505,7 +13505,7 @@ givenName: Karoline cn: Karoline Anderson uid: kanderson870 mail: kanderson870@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -13521,7 +13521,7 @@ givenName: Ann cn: Ann Johnson uid: ajohnson871 mail: ajohnson871@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -13537,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 @@ -13553,7 +13553,7 @@ givenName: John cn: John Lee uid: jlee873 mail: jlee873@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -13569,7 +13569,7 @@ givenName: Karoline cn: Karoline Henderson uid: khenderson874 mail: khenderson874@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: staff @@ -13584,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 @@ -13600,7 +13600,7 @@ givenName: Nancy cn: Nancy Williams uid: nwilliams mail: nwilliams@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: faculty @@ -13615,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 @@ -13631,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 @@ -13647,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 @@ -13663,7 +13663,7 @@ givenName: Greg cn: Greg Thompson uid: gthompson880 mail: gthompson880@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community @@ -13678,7 +13678,7 @@ givenName: Blake cn: Blake Peterson uid: bpeterson881 mail: bpeterson881@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -13694,7 +13694,7 @@ givenName: Marie cn: Marie Brown uid: mbrown882 mail: mbrown882@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -13710,7 +13710,7 @@ givenName: James cn: James Martinez uid: jmartinez883 mail: jmartinez883@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: alum @@ -13725,7 +13725,7 @@ givenName: Heather cn: Heather White uid: hwhite884 mail: hwhite884@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member @@ -13740,7 +13740,7 @@ givenName: Lisa cn: Lisa Henderson uid: lhenderson885 mail: lhenderson885@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: alum @@ -13755,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 @@ -13771,7 +13771,7 @@ givenName: Sarah cn: Sarah Davis uid: sdavis887 mail: sdavis887@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: community @@ -13787,7 +13787,7 @@ givenName: David cn: David Clark uid: dclark888 mail: dclark888@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -13803,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 @@ -13819,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 @@ -13835,7 +13835,7 @@ givenName: Kiersten cn: Kiersten Smith uid: ksmith891 mail: ksmith891@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: alum @@ -13851,7 +13851,7 @@ givenName: Robert cn: Robert Lopez uid: rlopez892 mail: rlopez892@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community @@ -13866,7 +13866,7 @@ givenName: Kiersten cn: Kiersten Smith uid: ksmith893 mail: ksmith893@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -13882,7 +13882,7 @@ givenName: John cn: John Davis uid: jdavis894 mail: jdavis894@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: alum @@ -13897,7 +13897,7 @@ givenName: Donna cn: Donna Doe uid: ddoe895 mail: ddoe895@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -13913,7 +13913,7 @@ givenName: Michael cn: Michael Smith uid: msmith896 mail: msmith896@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: staff @@ -13928,7 +13928,7 @@ givenName: Michael cn: Michael Davis uid: mdavis897 mail: mdavis897@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community @@ -13943,7 +13943,7 @@ givenName: Marie cn: Marie Martinez uid: mmartinez898 mail: mmartinez898@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -13959,7 +13959,7 @@ givenName: Jennifer cn: Jennifer Langenberg uid: jlangenberg899 mail: jlangenberg899@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -13975,7 +13975,7 @@ givenName: Colin cn: Colin Davis uid: cdavis900 mail: cdavis900@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -13991,7 +13991,7 @@ givenName: John cn: John Martinez uid: jmartinez901 mail: jmartinez901@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty @@ -14006,7 +14006,7 @@ givenName: Thomas cn: Thomas Martinez uid: tmartinez902 mail: tmartinez902@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: community eduPersonAffiliation: staff @@ -14022,7 +14022,7 @@ givenName: Bill cn: Bill Price uid: bprice903 mail: bprice903@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -14038,7 +14038,7 @@ givenName: Jo cn: Jo Davis uid: jdavis904 mail: jdavis904@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: student @@ -14053,7 +14053,7 @@ givenName: Jo cn: Jo Martinez uid: jmartinez905 mail: jmartinez905@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member @@ -14068,7 +14068,7 @@ givenName: Lori cn: Lori Anderson uid: landerson906 mail: landerson906@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: faculty @@ -14084,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 @@ -14100,7 +14100,7 @@ givenName: David cn: David Lewis uid: dlewis908 mail: dlewis908@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: staff @@ -14116,7 +14116,7 @@ givenName: Jo cn: Jo Lopez uid: jlopez909 mail: jlopez909@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: faculty @@ -14131,7 +14131,7 @@ givenName: Karoline cn: Karoline Gasper uid: kgasper910 mail: kgasper910@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -14147,7 +14147,7 @@ givenName: Michael cn: Michael Scott uid: mscott911 mail: mscott911@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -14163,7 +14163,7 @@ givenName: Sarah cn: Sarah Morrison uid: smorrison mail: smorrison@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community @@ -14178,7 +14178,7 @@ givenName: Karl cn: Karl Johnson uid: kjohnson913 mail: kjohnson913@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community @@ -14193,7 +14193,7 @@ givenName: Bill cn: Bill White uid: bwhite914 mail: bwhite914@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: alum eduPersonAffiliation: community @@ -14209,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 @@ -14225,7 +14225,7 @@ givenName: Jennifer cn: Jennifer Gasper uid: jgasper916 mail: jgasper916@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member eduPersonAffiliation: community @@ -14241,7 +14241,7 @@ givenName: James cn: James Lewis uid: jlewis917 mail: jlewis917@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -14257,7 +14257,7 @@ givenName: Mark cn: Mark Johnson uid: mjohnson918 mail: mjohnson918@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: member @@ -14272,7 +14272,7 @@ givenName: David cn: David Davis uid: ddavis919 mail: ddavis919@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student @@ -14287,7 +14287,7 @@ givenName: Donna cn: Donna Vales uid: dvales920 mail: dvales920@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -14303,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 @@ -14319,7 +14319,7 @@ givenName: Jim cn: Jim Vales uid: jvales922 mail: jvales922@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: community @@ -14335,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 @@ -14351,7 +14351,7 @@ givenName: Heather cn: Heather Smith uid: hsmith924 mail: hsmith924@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: alum @@ -14366,7 +14366,7 @@ givenName: Lori cn: Lori Grady uid: lgrady925 mail: lgrady925@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: community eduPersonAffiliation: member @@ -14382,7 +14382,7 @@ givenName: Greg cn: Greg Butler uid: gbutler926 mail: gbutler926@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: member @@ -14397,7 +14397,7 @@ givenName: Jennifer cn: Jennifer White uid: jwhite927 mail: jwhite927@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: community @@ -14412,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 @@ -14428,7 +14428,7 @@ givenName: Nancy cn: Nancy Lewis uid: nlewis mail: nlewis@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff @@ -14443,7 +14443,7 @@ givenName: Jennifer cn: Jennifer Roberts uid: jroberts930 mail: jroberts930@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: member @@ -14458,7 +14458,7 @@ givenName: Kiersten cn: Kiersten Peterson uid: kpeterson931 mail: kpeterson931@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: member eduPersonAffiliation: alum @@ -14474,7 +14474,7 @@ givenName: Lori cn: Lori Henderson uid: lhenderson932 mail: lhenderson932@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: alum @@ -14489,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 @@ -14505,7 +14505,7 @@ givenName: David cn: David Langenberg uid: dlangenberg934 mail: dlangenberg934@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: community @@ -14520,7 +14520,7 @@ givenName: Kim cn: Kim Butler uid: kbutler935 mail: kbutler935@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -14536,7 +14536,7 @@ givenName: Robert cn: Robert Johnson uid: rjohnson mail: rjohnson@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty @@ -14551,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 @@ -14567,7 +14567,7 @@ givenName: Kiersten cn: Kiersten Gonazles uid: kgonazles938 mail: kgonazles938@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: community @@ -14582,7 +14582,7 @@ givenName: Marie cn: Marie Gasper uid: mgasper939 mail: mgasper939@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: student @@ -14598,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 @@ -14614,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 @@ -14630,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 @@ -14646,7 +14646,7 @@ givenName: Kim cn: Kim Henderson uid: khenderson943 mail: khenderson943@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -14662,7 +14662,7 @@ givenName: Mark cn: Mark Henderson uid: mhenderson944 mail: mhenderson944@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty @@ -14677,7 +14677,7 @@ givenName: Colin cn: Colin Price uid: cprice mail: cprice@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: community eduPersonAffiliation: faculty @@ -14693,7 +14693,7 @@ givenName: Jim cn: Jim Anderson uid: janderson946 mail: janderson946@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty @@ -14708,7 +14708,7 @@ givenName: Erik cn: Erik Johnson uid: ejohnson947 mail: ejohnson947@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: student @@ -14723,7 +14723,7 @@ givenName: John cn: John Anderson uid: janderson948 mail: janderson948@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty @@ -14738,7 +14738,7 @@ givenName: Lisa cn: Lisa Henderson uid: lhenderson949 mail: lhenderson949@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff @@ -14753,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 @@ -14769,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 @@ -14785,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 @@ -14801,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 @@ -14817,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 @@ -14833,7 +14833,7 @@ givenName: Robert cn: Robert Roberts uid: rroberts955 mail: rroberts955@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: community @@ -14849,7 +14849,7 @@ givenName: Jo cn: Jo Smith uid: jsmith956 mail: jsmith956@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -14865,7 +14865,7 @@ givenName: Jennifer cn: Jennifer White uid: jwhite957 mail: jwhite957@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: faculty @@ -14880,7 +14880,7 @@ givenName: Bill cn: Bill Walters uid: bwalters958 mail: bwalters958@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: community @@ -14895,7 +14895,7 @@ givenName: Mark cn: Mark Henderson uid: mhenderson959 mail: mhenderson959@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -14911,7 +14911,7 @@ givenName: Mark cn: Mark Gasper uid: mgasper960 mail: mgasper960@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: alum @@ -14926,7 +14926,7 @@ givenName: Paul cn: Paul Peterson uid: ppeterson mail: ppeterson@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: staff eduPersonAffiliation: alum @@ -14942,7 +14942,7 @@ givenName: John cn: John Scott uid: jscott962 mail: jscott962@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: staff @@ -14957,7 +14957,7 @@ givenName: Heather cn: Heather Davis uid: hdavis963 mail: hdavis963@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: staff @@ -14972,7 +14972,7 @@ givenName: Paul cn: Paul White uid: pwhite mail: pwhite@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: faculty @@ -14987,7 +14987,7 @@ givenName: David cn: David Walters uid: dwalters965 mail: dwalters965@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: student @@ -15002,7 +15002,7 @@ givenName: Blake cn: Blake Lopez uid: blopez966 mail: blopez966@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: community @@ -15017,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 @@ -15033,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 @@ -15049,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 @@ -15065,7 +15065,7 @@ givenName: William cn: William Peterson uid: wpeterson970 mail: wpeterson970@unicon.local -businessCategory:Law +businessCategory: Law userPassword: password eduPersonAffiliation: student @@ -15080,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 @@ -15096,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 @@ -15112,7 +15112,7 @@ givenName: Marie cn: Marie Peterson uid: mpeterson973 mail: mpeterson973@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: alum @@ -15127,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 @@ -15143,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 @@ -15159,7 +15159,7 @@ givenName: Jennifer cn: Jennifer Peterson uid: jpeterson976 mail: jpeterson976@unicon.local -businessCategory:Advising +businessCategory: Advising userPassword: password eduPersonAffiliation: staff @@ -15174,7 +15174,7 @@ givenName: Kim cn: Kim Martinez uid: kmartinez977 mail: kmartinez977@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: staff @@ -15189,7 +15189,7 @@ givenName: Paul cn: Paul Brown uid: pbrown978 mail: pbrown978@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: student eduPersonAffiliation: member @@ -15205,7 +15205,7 @@ givenName: Donna cn: Donna Butler uid: dbutler979 mail: dbutler979@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: member @@ -15220,7 +15220,7 @@ givenName: Heather cn: Heather Morrison uid: hmorrison980 mail: hmorrison980@unicon.local -businessCategory:Business +businessCategory: Business userPassword: password eduPersonAffiliation: member @@ -15235,7 +15235,7 @@ givenName: Colin cn: Colin Doe uid: cdoe981 mail: cdoe981@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: staff @@ -15250,7 +15250,7 @@ givenName: Ann cn: Ann Lee uid: alee mail: alee@unicon.local -businessCategory:Account Payable +businessCategory: Account Payable userPassword: password eduPersonAffiliation: alum @@ -15265,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 @@ -15281,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 @@ -15297,7 +15297,7 @@ givenName: Jo cn: Jo Butler uid: jbutler985 mail: jbutler985@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: staff @@ -15313,7 +15313,7 @@ givenName: Mary cn: Mary Martinez uid: mmartinez986 mail: mmartinez986@unicon.local -businessCategory:Engineering +businessCategory: Engineering userPassword: password eduPersonAffiliation: faculty @@ -15328,7 +15328,7 @@ givenName: Heather cn: Heather Martinez uid: hmartinez mail: hmartinez@unicon.local -businessCategory:Physical Education +businessCategory: Physical Education userPassword: password eduPersonAffiliation: alum @@ -15343,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 @@ -15359,7 +15359,7 @@ givenName: Karl cn: Karl Williams uid: kwilliams989 mail: kwilliams989@unicon.local -businessCategory:Financial Aid +businessCategory: Financial Aid userPassword: password eduPersonAffiliation: community @@ -15374,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 @@ -15390,7 +15390,7 @@ givenName: Karoline cn: Karoline Lee uid: klee991 mail: klee991@unicon.local -businessCategory:Language Arts +businessCategory: Language Arts userPassword: password eduPersonAffiliation: faculty @@ -15405,7 +15405,7 @@ givenName: Bill cn: Bill Johnson uid: bjohnson992 mail: bjohnson992@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: faculty eduPersonAffiliation: student @@ -15421,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 @@ -15437,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 @@ -15453,7 +15453,7 @@ givenName: Jennifer cn: Jennifer Vales uid: jvales995 mail: jvales995@unicon.local -businessCategory:Accounting +businessCategory: Accounting userPassword: password eduPersonAffiliation: member eduPersonAffiliation: student @@ -15469,7 +15469,7 @@ givenName: Kiersten cn: Kiersten Johnson uid: kjohnson996 mail: kjohnson996@unicon.local -businessCategory:Computer Science +businessCategory: Computer Science userPassword: password eduPersonAffiliation: faculty @@ -15484,7 +15484,7 @@ givenName: Greg cn: Greg Grady uid: ggrady mail: ggrady@unicon.local -businessCategory:Purchasing +businessCategory: Purchasing userPassword: password eduPersonAffiliation: student eduPersonAffiliation: faculty @@ -15500,7 +15500,7 @@ givenName: Lori cn: Lori Butler uid: lbutler998 mail: lbutler998@unicon.local -businessCategory:Information Technology +businessCategory: Information Technology userPassword: password eduPersonAffiliation: member @@ -15515,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 From 973ce8c96a7aed1309378764c8e5976d0091e1e9 Mon Sep 17 00:00:00 2001 From: Jj! Date: Mon, 20 Sep 2021 08:31:12 -0500 Subject: [PATCH 12/18] add description for businessCategory --- .../config/shib-idp/conf/attributes/inetOrgPerson.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 index b7853a06d..65a422b92 100644 --- a/testbed/authentication/shibboleth-idp/config/shib-idp/conf/attributes/inetOrgPerson.xml +++ b/testbed/authentication/shibboleth-idp/config/shib-idp/conf/attributes/inetOrgPerson.xml @@ -511,6 +511,7 @@ urn:oid:2.5.4.15 urn:mace:dir:attribute-def:businessCategory Business Category + Business Category @@ -519,4 +520,4 @@ - \ No newline at end of file + From 0cec42b5288f74952d79b5ca483ba5c2ef9170c2 Mon Sep 17 00:00:00 2001 From: chasegawa Date: Wed, 29 Sep 2021 12:43:00 -0700 Subject: [PATCH 13/18] SHIBUI-2111 fixes to role issues when using IDP logins --- .../springsecurity/AdminUserService.java | 9 +++-- .../shibui/pac4j/BetterSAML2Profile.java | 3 +- .../shibui/pac4j/Pac4jConfiguration.java | 35 +++---------------- testbed/authentication/docker-compose.yml | 6 +++- 4 files changed, 14 insertions(+), 39 deletions(-) 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/pac4j-module/src/main/java/net/unicon/shibui/pac4j/BetterSAML2Profile.java b/pac4j-module/src/main/java/net/unicon/shibui/pac4j/BetterSAML2Profile.java index 1411c2997..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 @@ -4,7 +4,6 @@ import org.pac4j.saml.profile.SAML2Profile; import java.util.Collection; -import java.util.HashSet; import java.util.List; import java.util.Set; @@ -42,7 +41,7 @@ public List getGroups() { } public Set getRoles() { - Set result = new HashSet<>(); + Set result = super.getRoles(); List assertedRoles = (List) getAttribute(profileMapping.getRoles()); if (assertedRoles != null) { result.addAll(assertedRoles); 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 37a33b5ae..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; @@ -110,7 +83,7 @@ public void validate(Credentials credentials, WebContext context) { 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/testbed/authentication/docker-compose.yml b/testbed/authentication/docker-compose.yml index 1ed95975b..884042c4a 100644 --- a/testbed/authentication/docker-compose.yml +++ b/testbed/authentication/docker-compose.yml @@ -20,6 +20,7 @@ services: - "8080:8080" - "443:443" - "8443:8443" +# - "8000:8000" volumes: - /var/run/docker.sock:/var/run/docker.sock - ../reverse-proxy/:/configuration/ @@ -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 From af3484c28897c61ea457371df066f148870bcc49 Mon Sep 17 00:00:00 2001 From: chasegawa Date: Wed, 29 Sep 2021 12:53:09 -0700 Subject: [PATCH 14/18] SHIBUI-2111 merge gone bad resolution --- .../admin/ui/configuration/auto/WebSecurityConfig.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 From 41a44414a9fed9b3e7ebbadee9b63facdd6416db Mon Sep 17 00:00:00 2001 From: chasegawa Date: Wed, 29 Sep 2021 12:55:22 -0700 Subject: [PATCH 15/18] SHIBUI-2111 merge gone bad resolution --- .../ShibuiPac4JHeaderClientAuthenticator.java | 40 +++++++++++++++++++ .../ShibuiSAML2Authenticator.java | 32 +++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 pac4j-module/src/main/java/net/unicon/shibui/pac4j/authenticator/ShibuiPac4JHeaderClientAuthenticator.java create mode 100644 pac4j-module/src/main/java/net/unicon/shibui/pac4j/authenticator/ShibuiSAML2Authenticator.java 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 From 2dd07ae47da249c69db8f005550b7805283107f4 Mon Sep 17 00:00:00 2001 From: chasegawa Date: Wed, 29 Sep 2021 13:03:25 -0700 Subject: [PATCH 16/18] SHIBUI-2111 fixing compilation issue with testing --- .../ui/security/springsecurity/AdminUserServiceTests.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. From 2d0ddc14ec7d1db7727e09c9c5940f360885670f Mon Sep 17 00:00:00 2001 From: Jj! Date: Fri, 1 Oct 2021 13:43:48 -0500 Subject: [PATCH 17/18] needed to fix windows file path case --- .../selenium/selenese/command/AttachFile.java | 112 ++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 backend/src/integration/groovy/jp/vmi/selenium/selenese/command/AttachFile.java 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; + } +} From b2de75bc8b39b2e89a4b7ebefc6f207c8aa4492b Mon Sep 17 00:00:00 2001 From: Bill Smith Date: Fri, 1 Oct 2021 12:06:01 -0700 Subject: [PATCH 18/18] 1747 Test fixes that 2116 broke. Not sure why I didn't catch them on that branch... --- .../src/integration/resources/SHIBUI-1744-2.side | 11 +++++++---- .../src/integration/resources/SHIBUI-1744-3.side | 15 +++++++++++---- 2 files changed, 18 insertions(+), 8 deletions(-) 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"],