Changes between Version 1 and Version 2 of WikiStart/Security


Ignore:
Timestamp:
03/24/25 15:47:33 (11 days ago)
Author:
203206
Comment:

db

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart/Security

    v1 v2  
    1 = Безбедност
     1== Безбедност
     2
     3{{{
     4package com.example.bankapp.config;
     5
     6import com.example.bankapp.service.AccountService;
     7import org.springframework.beans.factory.annotation.Autowired;
     8import org.springframework.context.annotation.Bean;
     9import org.springframework.context.annotation.Configuration;
     10import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
     11import org.springframework.security.config.annotation.web.builders.HttpSecurity;
     12import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
     13import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
     14import org.springframework.security.crypto.password.PasswordEncoder;
     15import org.springframework.security.web.SecurityFilterChain;
     16import org.springframework.security.web.util.matcher.AntPathRequestMatcher;
     17
     18@Configuration
     19@EnableWebSecurity
     20public 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{{{
     73package com.example.bankapp.repository;
     74
     75import com.example.bankapp.model.Account;
     76import org.springframework.data.jpa.repository.JpaRepository;
     77
     78import java.util.Optional;
     79
     80
     81public interface AccountRepository extends JpaRepository<Account, Long> {
     82    Optional<Account> findByUsername(String username);
     83}
     84
     85}}}
     86
     87{{{
     88package com.example.bankapp.repository;
     89
     90import com.example.bankapp.model.Transaction;
     91import org.springframework.data.jpa.repository.JpaRepository;
     92
     93import java.util.List;
     94
     95public interface TransactionRepository extends JpaRepository<Transaction, Long> {
     96    List<Transaction> findByAccountId(Long accountId);
     97}
     98
     99}}}
     100 
     101- отпорност на SQL injection заради користење на Spring Data JPA.
     102