Notice
Recent Posts
Recent Comments
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 |
Tags
- Cross Site Request Forgery
- lord of sql injection
- 쿠키
- sql injection
- blind sql injection
- 과제
- cookie 탈취
- sql injection point
- MySQL
- 게시판 만들기
- 모의해킹
- lord of sqli
- cors
- php
- 세션
- file upload
- XSS
- 웹개발
- csrf
- Los
- css
- Reflected Xss
- JS
- JWT
- Python
- 로그인
- CTF
- Error based sql injection
- union sql injection
- 로그인페이지
Archives
- Today
- Total
목록게시글 삭제하기 (1)
Almon Dev
게시판 만들기 #6 (게시글 삭제하기)
게시판 만들기 게시글 삭제하기 delete_post.jsfunction deletePost(e, postId, categoryId, categoryName) { e.preventDefault(); if (confirm('게시글을 삭제하시겠습니까?')) { url = '/forum/db/delete_post.php'; fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/json; charset=utf-8', }, body: JSON.stringify({ post_id: postId, category_id: categoryId, }), ..
모의해킹/웹 개발
2024. 11. 12. 17:11