Recent Posts
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- pytest
- Value too long for column
- terminal
- vfr video
- VARCHAR (1)
- 티스토리챌린지
- Spring Batch
- 개성국밥
- PersistenceContext
- taint
- python
- 자원부족
- preemption #
- JanusGateway
- 코루틴 빌더
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- mp4fpsmod
- addhooks
- JanusWebRTCGateway
- 깡돼후
- 오블완
- JanusWebRTC
- tolerated
- table not found
- kotlin
- 코루틴 컨텍스트
- 달인막창
- 겨울 부산
- JanusWebRTCServer
- PytestPluginManager
Archives
너와 나의 스토리
[Spring security] "*.permitAll()"을 해도 post가 안된다면 본문
반응형
[ ~~.csrf().disable() ]를 추가하자!
CSRF 때문에 forbidden이 뜬 것!!
- CSRF란?
- 자기도 모르게 특정 웹사이트 요청하는 공격하게 되는 것을 말한다.
- 이를 방지하기 위해 default로 post가 막혀있는 것 같다.
/*import*/
@Configuration
@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Autowired
private CustomAuthenticationProvider customAuthenticationProvider;
@Bean
public PasswordEncoder passwordEncoder() { // bcrypt 해쉬 알고리즘 이용
return new BCryptPasswordEncoder();
}
@Override
public void configure(WebSecurity web) {
web
.ignoring()
.antMatchers("/css/**", "/js/**", "/img/**")
.antMatchers("/h2-console/**", "/swagger-ui/**");
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.antMatchers("/main", "/swagger-ui/**","/swagger-ui").permitAll()
.antMatchers("/admin/**").hasRole("ADMIN") // '/admin/*' 요청은 ADMIN 권한을 가진 사용자만 접근 가능
.anyRequest().authenticated() // 그 외 모든 요청은 인증된 사용자만 접근 가능
.and()
.formLogin()
.defaultSuccessUrl("/loginsuccess")
.failureUrl("/fail")
.permitAll()
.and()
.logout()
.and()
.csrf().disable();
}
@Override
public void configure(AuthenticationManagerBuilder auth) throws Exception {
auth.authenticationProvider(customAuthenticationProvider);
}
}
반응형
'개발 > Spring Boot' 카테고리의 다른 글
HATEOAS 설정하기 - swagger와 함께 사용하기 (에러 해결) (0) | 2020.08.04 |
---|---|
URL Design (0) | 2020.07.25 |
import org.h2.server.web.WebServlet; 에러나는 경우 해결법 (0) | 2020.07.10 |
[Spring] Intellij - http로 json 데이터 전송 (0) | 2020.05.10 |
H2 - "Database "C:/Users/-/test" not found, either pre-create it or allow remote database creation (not recommended in secure environments) 문제 해결 (0) | 2020.05.10 |
Comments