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
- file upload
- cookie 탈취
- css
- JS
- blind sql injection
- lord of sql injection
- 쿠키
- sql injection
- 세션
- csrf
- XSS
- Los
- JWT
- CTF
- 게시판 만들기
- 로그인페이지
- Python
- union sql injection
- 웹개발
- 로그인
- Error based sql injection
- MySQL
- 모의해킹
- sql injection point
- 과제
- cors
- php
- lord of sqli
- Cross Site Request Forgery
- Reflected Xss
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