일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- aiapi
- chatGPTAPI
- GPT3.5
- 클라우드
- Express
- db
- 웹소켓재시작
- iam사용자
- ChatGPT
- gitlab
- 클래스
- 호스팅영역
- 노드버전
- Database
- Github
- git
- 자바
- javascript
- gptapi
- openaiapi
- aws
- class
- 웹소켓연결끊김
- gpt3.5turbo
- java
- 버킷생성
- nvmrc
- nodejs
- 패키지설치에러
- 웹소켓연결
Archives
- Today
- Total
목록mysql #javascript #nodejs #injectionattack #인젝션공격 #escape #바인드변수 (1)
IT's Jenna
Injection attak
Injection attack이란? 외부에서 서버에 쿼리문을 보내, 데이터 베이스를 추출하거나 임의로 조작하는 행위 Injection attact 사례 router.get('/', function(req, res, next) { console.log('query : ', req.query) let {idx, name} = req.query console.log('idx : ', idx, 'name :', name 'idx type : ', typeof idx) // idx : 1 name : asdf idx type : string let sql sql = 'SELECT * FROM Goods WHERE idx = "'+idx+'"' pool.query(sql, function(error, results..
Backend/Backend 기본
2021. 1. 23. 20:49