Этот коммит содержится в:
Ihar Hancharenka 2023-07-28 17:24:44 +03:00
родитель 9717dbf14c
Коммит 79179e7f3d
4 изменённых файлов: 28 добавлений и 0 удалений

4
net/vpn/cisco/anyconnect.txt Обычный файл
Просмотреть файл

@ -0,0 +1,4 @@
https://its.gmu.edu/knowledge-base/how-to-install-cisco-anyconnect-on-linux/
anyconnect-linux64-<ver>
https://software.cisco.com/download

Просмотреть файл

@ -3,6 +3,9 @@ https://www.youtube.com/user/SpringSourceDev/videos
Borisov - Potroshitel
https://www.youtube.com/playlist?list=PL6yLoZ_3Y0HKGL3F7vv2SNSrA3TkbXtBX
2023
LearnWithVinod - Spring Framework Masterclass 0:00 of 8:01:28
https://www.youtube.com/watch?v=zrOvL8KgbM0
2018
Hoeller - Spring Framework 5.1 on JDK 8 & 11
https://www.youtube.com/watch?v=h6PUjxe-blw

Просмотреть файл

@ -1 +1,8 @@
https://github.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/blob/main/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/configuration/SimpleCorsFilter.java
Headers
Access-Control-Allow-Origin: foreign domains (origins), that can access resources on our domain
Access-Control-Allow-Methods: ...
Access-Control-Allow-Headers: ... limitation, to which headers
@CrossOrigin

Просмотреть файл

@ -0,0 +1,14 @@
-H 'Cookie: JSESSIONID=...'
-H 'X-CSRF-TOKEN: <UUID>'
// CsrfCustomizer
http.csrf(c -> {
c.ingnoringAntMatchers("/<some-endpoint>")
})
CsrfToken
getHeaderName()
getParameterName()
getToken()
curl -H "X-IDENTIFIER: 12345" some-get-endpoint