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 | 29 | 30 | 31 |
Tags
- 세션
- blind sql injection
- MySQL
- cookie 탈취
- 웹 개발
- 게시판 만들기
- 보안 패치
- 로그인페이지
- 로그인
- lord of sql injection
- php
- sql injection point
- csrf
- CTF
- 과제
- union sql injection
- sql injection
- Python
- 모의해킹
- FridaLab
- 증적 사진
- JS
- Los
- 웹 해킹
- 웹개발
- 문제 풀이
- 보고서
- XSS
- Error based sql injection
- file upload
Archives
- Today
- Total
목록게시글 읽기 (1)
Almon Dev
게시판 만들기 #4 (게시글 읽기)
게시판 만들기 게시글 읽기 read_post.jsfunction readPost() { document.querySelectorAll('.td-title').forEach((tdTitle) => { tdTitle.addEventListener('click', (e) => { const post_id = e.target .closest('tr') .querySelector('.td-id').textContent; console.log(post_id); const pageNum = e.target.dataset.page_num; console.log(pageNum); const categoryId = e.target.dataset...
웹 해킹/웹 개발
2024. 11. 12. 13:51