1 | | = Безбедност |
| 1 | == Безбедност |
| 2 | |
| 3 | {{{ |
| 4 | package com.example.bankapp.config; |
| 5 | |
| 6 | import com.example.bankapp.service.AccountService; |
| 7 | import org.springframework.beans.factory.annotation.Autowired; |
| 8 | import org.springframework.context.annotation.Bean; |
| 9 | import org.springframework.context.annotation.Configuration; |
| 10 | import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder; |
| 11 | import org.springframework.security.config.annotation.web.builders.HttpSecurity; |
| 12 | import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; |
| 13 | import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; |
| 14 | import org.springframework.security.crypto.password.PasswordEncoder; |
| 15 | import org.springframework.security.web.SecurityFilterChain; |
| 16 | import org.springframework.security.web.util.matcher.AntPathRequestMatcher; |
| 17 | |
| 18 | @Configuration |
| 19 | @EnableWebSecurity |
| 20 | public class SecurityConfig { |
| 21 | |
| 22 | @Autowired |
| 23 | AccountService accountService; |
| 24 | |
| 25 | @Bean |
| 26 | public static PasswordEncoder passwordEncoder() { |
| 27 | return new BCryptPasswordEncoder(); |
| 28 | } |
| 29 | |
| 30 | @Bean |
| 31 | public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception { |
| 32 | http |
| 33 | .csrf(csrf -> csrf.disable()) |
| 34 | .authorizeHttpRequests(authz -> authz |
| 35 | .requestMatchers("/register").permitAll() |
| 36 | .anyRequest().authenticated() |
| 37 | ) |
| 38 | .formLogin(form -> form |
| 39 | .loginPage("/login") |
| 40 | .loginProcessingUrl("/login") |
| 41 | .defaultSuccessUrl("/dashboard", true) |
| 42 | .permitAll() |
| 43 | ) |
| 44 | .logout(logout -> logout |
| 45 | .invalidateHttpSession(true) |
| 46 | .clearAuthentication(true) |
| 47 | .logoutRequestMatcher(new AntPathRequestMatcher("/logout")) |
| 48 | .logoutSuccessUrl("/login?logout") |
| 49 | .permitAll() |
| 50 | ) |
| 51 | .headers(headers -> headers |
| 52 | .frameOptions(frameOptions -> frameOptions.sameOrigin()) |
| 53 | ); |
| 54 | |
| 55 | return http.build(); |
| 56 | } |
| 57 | |
| 58 | @Autowired |
| 59 | public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception { |
| 60 | auth.userDetailsService(accountService).passwordEncoder(passwordEncoder()); |
| 61 | |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | }}} |
| 66 | |
| 67 | - protects against unauthorized access |
| 68 | - clickjacking |
| 69 | - weak password storage |
| 70 | - session-related issues |
| 71 | |
| 72 | {{{ |
| 73 | package com.example.bankapp.repository; |
| 74 | |
| 75 | import com.example.bankapp.model.Account; |
| 76 | import org.springframework.data.jpa.repository.JpaRepository; |
| 77 | |
| 78 | import java.util.Optional; |
| 79 | |
| 80 | |
| 81 | public interface AccountRepository extends JpaRepository<Account, Long> { |
| 82 | Optional<Account> findByUsername(String username); |
| 83 | } |
| 84 | |
| 85 | }}} |
| 86 | |
| 87 | {{{ |
| 88 | package com.example.bankapp.repository; |
| 89 | |
| 90 | import com.example.bankapp.model.Transaction; |
| 91 | import org.springframework.data.jpa.repository.JpaRepository; |
| 92 | |
| 93 | import java.util.List; |
| 94 | |
| 95 | public interface TransactionRepository extends JpaRepository<Transaction, Long> { |
| 96 | List<Transaction> findByAccountId(Long accountId); |
| 97 | } |
| 98 | |
| 99 | }}} |
| 100 | |
| 101 | - отпорност на SQL injection заради користење на Spring Data JPA. |
| 102 | |