2022. 11. 30. 12:37 WorkHolic
PHP SQL Injection 방지 처리 코드
728x90
반응형
PHP SQL Injection 방지 처리 코드 PHP5 |
if(isset($_GET) AND count($_GET)>0 AND !empty($_GET)) { foreach($_GET AS $g_index => $key) { //echo $g_index.'|'.$key.'<br>'; $key = preg_replace("/[\r\n\s\t\'\;\"\=\-\-\#\/*]+/","", $key); $key = str_replace('union', '', $key); $key = str_replace('select', '', $key); $key = str_replace('from', '', $key); $key = str_replace('where', '', $key); $_GET[$g_index]=$key; } } |
#PHP #PHP5 #SQLInjection |
728x90
SMALL
'WorkHolic' 카테고리의 다른 글
SMTP 테스트(bash and telnet to test an email) (2) | 2022.12.17 |
---|---|
POP3 접속 테스트 (BASH check POP3 mail with telnet) (0) | 2022.12.17 |
SSD 돌연사 #2 (0) | 2022.11.18 |
UPS 사용시 정전 이후 복전 시 서버 켜기 (0) | 2022.11.18 |
Linux 실행 파일 경로 문제 해결 (No such file or directory) (0) | 2022.11.15 |