Skip to content
This repository has been archived by the owner on Jun 24, 2021. It is now read-only.

Commit

Permalink
우편번호 필터링 코드 추가(skinfosec 유원태님 제보)
Browse files Browse the repository at this point in the history
  • Loading branch information
chicpro committed Dec 10, 2015
1 parent f629c34 commit f2332e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shop/ordersendcost.php
@@ -1,7 +1,7 @@
<?php
include_once('./_common.php');

$code = $_POST['zipcode'];
$code = preg_replace('#[^0-9]#', '', $_POST['zipcode']);

if(!$code)
die('0');
Expand Down

0 comments on commit f2332e6

Please sign in to comment.