코딩 (75) 썸네일형 리스트형 [PHP] XSS(크로스 사이트 스크립트) 시큐어코딩 1 str_replace 함수 str_replace('찾을 문자열', '치환할 문자열', 변수); 게시판이 입력폼으로 값을 받을때 이런식으로 값이 들어와서 db에 insert가 되면 리스트에서 계속 스크립트가 실행 되서 사용자들이 정상적으로 이용을 못하게 된다. 그래서 항상 필터링을 해줘야된다. $title = ''; $contents = $_POST['contents']; $title = str_replace("", "", $title); $contents = str_replace("", "", $contents); 이렇게 하면 결과는 alert('hi'); 앞뒤 script는 삭제된 값만 노출되서 스크립트가 실행되지 않는다. 2 htmlspecialchars 함수 $title = htmlspecial.. 무료 이미지 다운로드 https://pixabay.com/ko/ 무료 로딩 이미지 https://icons8.com/ Free Icons, Clipart Illustrations, Photos, and Music Forum Mostly used for bugs, feature requests, and support. icons8.com https://loadingapng.com/ Loading APNG free online generator select animation template loadingapng.com http://www.loadinfo.net/ http://ajaxloadingimages.net/ AJAX Loading Images - Free Online GIF Icons Generator Select the.. 파비콘 생성기 - ico파일 만들기 https://www.favicon-generator.org/ Favicon & App Icon Generator Upload an image (PNG to ICO, JPG to ICO, GIF to ICO) and convert it to a Windows favicon (.ico) and App Icons. Learn more about favicons. www.favicon-generator.org 위 사이트 링크에 가서 변환하면 된다. [PHP]핸드폰번호 정규식 [PHP]number_format() 천단위 콤마 [PHP]IP로 국가 및 도시 알아내기 $ip = $_SERVER['REMOTE_ADDR']; // 아이피 주소받음 $details = json_decode(file_get_contents("http://ipinfo.io/"));// 받음받음 echo $details->country; // 나라 echo $details->city; // 도시 [PHP]json 문자열 한글처리 json_encode($age_total, JSON_UNESCAPED_UNICODE) [PHP]사용자 브라우저 정보 $userAgent = $_SERVER["HTTP_USER_AGENT"]; if(preg_match('/MSIE/i',$userAgent) && !preg_match('/Opera/i',$u_agent)){ $browser = 'Internet Explorer'; } else if(preg_match('/Firefox/i',$userAgent)){ $browser = 'Mozilla Firefox'; } else if (preg_match('/Chrome/i',$userAgent)){ $browser = 'Google Chrome'; } else if(preg_match('/Safari/i',$userAgent)){ $browser = 'Apple Safari'; } elseif(preg_match('/.. 이전 1 ··· 5 6 7 8 9 10 다음