/* * Copyright 2012-2019 the original author or authors. * * Licensed 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 * * https://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. */
/** * {@link EnableAutoConfiguration Auto-configuration} for a Spring Security in-memory * {@link AuthenticationManager}. Adds an {@link InMemoryUserDetailsManager} with a * default user and generated password. This can be disabled by providing a bean of type * {@link AuthenticationManager}, {@link AuthenticationProvider} or * {@link UserDetailsService}. * * @author Dave Syer * @author Rob Winch * @author Madhura Bhave * @since 2.0.0 */ @Configuration @ConditionalOnClass(AuthenticationManager.class) @ConditionalOnBean(ObjectPostProcessor.class) @ConditionalOnMissingBean({ AuthenticationManager.class, AuthenticationProvider.class, UserDetailsService.class }) public class UserDetailsServiceAutoConfiguration {
private static final String NOOP_PASSWORD_PREFIX = "{noop}";
private static final Pattern PASSWORD_ALGORITHM_PATTERN = Pattern.compile("^\\{.+}.*$");
private static final Log logger = LogFactory.getLog(UserDetailsServiceAutoConfiguration.class);
@Bean @ConditionalOnMissingBean( type = "org.springframework.security.oauth2.client.registration.ClientRegistrationRepository") @Lazy public InMemoryUserDetailsManager inMemoryUserDetailsManager(SecurityProperties properties, ObjectProvider<PasswordEncoder> passwordEncoder) { SecurityProperties.User user = properties.getUser(); List<String> roles = user.getRoles(); return new InMemoryUserDetailsManager( User.withUsername(user.getName()).password(getOrDeducePassword(user, passwordEncoder.getIfAvailable())) .roles(StringUtils.toStringArray(roles)).build()); }
/* * Copyright 2002-2016 the original author or authors. * * Licensed 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 * * https://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 org.springframework.security.provisioning;
/** * Non-persistent implementation of {@code UserDetailsManager} which is backed by an * in-memory map. * <p> * Mainly intended for testing and demonstration purposes, where a full blown persistent * system isn't required. * * @author Luke Taylor * @since 3.1 */ public class InMemoryUserDetailsManager implements UserDetailsManager, UserDetailsPasswordService { protected final Log logger = LogFactory.getLog(getClass());
private final Map<String, MutableUserDetails> users = new HashMap<>();
if (currentUser == null) { // This would indicate bad coding somewhere throw new AccessDeniedException( "Can't change password as no Authentication object found in context " + "for current user."); }
String username = currentUser.getName();
logger.debug("Changing password for user '" + username + "'");
// If an authentication manager has been set, re-authenticate the user with the // supplied password. if (authenticationManager != null) { logger.debug("Reauthenticating user '" + username + "' for password change request.");
public class HttpClientUtils { public static final String CONNECTION = "Connection"; public static final String USER_AGENT= "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36";
public static String doGet(String url,String cookie){ return createRequest(HttpGet.METHOD_NAME,url,cookie); }
public static String doGet(String url){ return createRequest(HttpGet.METHOD_NAME,url,null); }
private static String createRequest(String method, String url, String cookie, BasicNameValuePair ... basicNameValuePairs){ CloseableHttpClient closeableHttpClient = HttpClients.createDefault(); CloseableHttpResponse httpResponse = null; String result = null; try { if (HttpGet.METHOD_NAME.equals(method)) { HttpGet httpGet = new HttpGet(url); httpGet.setHeader("Connection", CONNECTION); httpGet.setHeader("User-Agent", USER_AGENT); if (StringUtils.isNotBlank(cookie)) { httpGet.setHeader("Cookie", cookie); } httpResponse = closeableHttpClient.execute(httpGet); result = EntityUtils.toString(httpResponse.getEntity()); } else if (HttpPost.METHOD_NAME.equals(method)) { HttpPost httpPost = new HttpPost(); httpPost.setHeader("Connection", CONNECTION); httpPost.setHeader("User-Agent", USER_AGENT); if (StringUtils.isNotBlank(cookie)) { httpPost.setHeader("Cookie", cookie); }
ftpd_anon_write --> off ftpd_connect_all_unreserved --> off ftpd_connect_db --> off ftpd_full_access --> off ftpd_use_cifs --> off ftpd_use_fusefs --> off ftpd_use_nfs --> off ftpd_use_passive_mode --> off httpd_can_connect_ftp --> off httpd_enable_ftp_server --> off tftp_anon_write --> off tftp_home_dir --> off
在结果中可以看到:tftp_home_dir --> off、ftpd_full_access --> off
将状态改为on:setsebool -P tftp_home_dir on、setsebool -P ftpd_full_access on