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 | 29 | 30 |
Tags
- 웹해킹
- 해킹캠프 ctf
- WEB-hacking
- 해킹캠프
- hackingcamp
- WarGame
- Hacker.org
- php
- hacking
- backdoorctf 2023 web
- cve 분석
- CVE
- 해외 wargame
- Web
- hackctf
- wargame.kr
- 웹 해킹
- writeup
- backdoorctf writeup
- 해외 워게임
- backdoorctf 2023
- Web Hacking
- thinkPHP
- hackingcamp ctf writeup
- XSS
- XSS-game
- backdoorctf 2023 web Unintelligible
- RCE
- CTF
- webhacking
Archives
- Today
- Total
<OOO>
PHP 회원가입 구현 본문
728x90
회원가입 시 회원가입한 ip까지 저장하게끔 만들었다.
<?php
include_once "./board/dbconf.php";
$con = mysqli_connect($db_host,$db_user,$db_pw,$db_db);
$ip = $_SERVER['REMOTE_ADDR'];
$name = strip_tags($_POST['name']);
$id = strip_tags($_POST['userid']);
$pw = strip_tags($_POST['pw']);
$pw2 = strip_tags($_POST['pw2']);
$name = mysqli_real_escape_string($con, $name);
$id = mysqli_real_escape_string($con, $id);
$pw = mysqli_real_escape_string($con, $pw);
$pw2 = mysqli_real_escape_string($con, $pw2);
if($name == NULL || $id == NULL || $pw == NULL || $pw2 == NULL)
{
echo ("<script>alert('빈 칸이 있습니다. 모두 채워주세요.')</script>");
echo ("<script>history.back();</script>");
exit;
}
if($pw != $pw2)
{
echo ("<script>alert('비밀번호가 맞지 않습니다.')</script>");
echo ("<script>history.back();</script>");
exit;
}
$sql = "select id from users where id = '".$id."'";
$result = mysqli_query($con, $sql);
$member = mysqli_num_rows($result);
if($member == 1)
{
echo ("<script>alert('이미 사용중인 아이디 입니다.')</script>");
echo ("<script>history.back();</script>");
exit;
}
if(strlen($pw <= 8) || strlen($pw <= 20))
{
echo ("<script>alert('비밀번호는 8~20자리로 설정하여 주십시오.</script>");
echo ("<script>history.back();</script>");
}
$pass = password_hash($pw, PASSWORD_DEFAULT);
$insert = "insert into users(name,id,password,ip) values ('$name', '$id', '$pass','$ip')";
$query = mysqli_query($con, $insert);
if(!$query)
{
echo ("<script>alert('회원가입 실패')</script>");
echo ("<script>history.back();</script>");
exit;
}
else
{
echo ("<script>alert('회원가입 성공')</script>");
header("Location:./login");
exit;
}
mysqli_close($con);
?>
'개발관련' 카테고리의 다른 글
WSL2 docker 시작 실패 오류 해결 (2) | 2022.07.06 |
---|---|
우분투 apache 웹 ip접속 차단 (1) | 2020.08.30 |
PHP id 혹은 닉네임 체크 (0) | 2020.08.30 |
PHP 로그인 처리 (0) | 2020.08.30 |
Comments