본문 바로가기
← PHP 소식
PHP 8.2.9보안

PHP 8.2.9 변경 기록과 적용 점검

릴리스: 2023년 8월 3일

게시: 2026년 8월 6일

PHP 8.2.9 공식 변경 기록에서 구성요소와 CVE를 추출하고 사용 환경별 확인 순서를 제공합니다.

PHP 8.2.9 변경 사항

공식 php-src 태그의 NEWS에서 이 버전의 항목만 추출했습니다. 아래 구성요소와 확인 순서는 원문에 따라 자동 구성됩니다. 애플리케이션 호환성이나 취약점 영향 여부를 판정하지 않습니다.

변경된 구성요소

Build · CLI · Core · Curl · Date · DOM · Fileinfo · FTP · GD · Intl · Libxml · MBString · Opcache · PCNTL · PDO · PDO SQLite · Phar · PHPDBG · Session · Standard · Streams · SQLite3 · XMLReader

원문에 명시된 CVE

사용 환경별 확인 순서

  • php -vphp -m으로 실제 실행 버전과 확장 목록을 확인하고 아래 원문에서 사용 중인 구성요소의 변경을 찾으세요.
  • composer check-platform-reqs로 설치 환경의 요구사항을 확인하세요. 성공하더라도 동작 호환성까지 보장하지는 않습니다.
  • 날짜·시간대를 사용한다면 Carbon 및 날짜 변환 테스트에서 변경 항목과 관련된 입력을 점검하세요.
  • PDO를 사용한다면 실제 데이터베이스 드라이버로 조회·트랜잭션 테스트를 실행하세요.
  • GD를 사용한다면 이미지 업로드·리사이즈 처리를 실제 파일로 확인하세요.
  • 배포 전 스테이징에서 애플리케이션 테스트를 실행하고, 배포 후 웹 프로세스와 큐 워커가 새 PHP를 사용하는지 확인하세요.

공식 변경 기록

03 Aug 2023, PHP 8.2.9

  • Build: . Fixed bug GH-11522 (PHP version check fails with '-' separator). (SVGAnimate)

  • CLI: . Fix interrupted CLI output causing the process to exit. (nielsdos)

  • Core: . Fixed oss-fuzz #60011 (Mis-compilation of by-reference nullsafe operator). (ilutov) . Fixed line number of JMP instruction over else block. (ilutov) . Fixed use-of-uninitialized-value with ??= on assert. (ilutov) . Fixed oss-fuzz #60411 (Fix double-compilation of arrow-functions). (ilutov) . Fixed build for FreeBSD before the 11.0 releases. (David Carlier)

  • Curl: . Fix crash when an invalid callback function is passed to CURLMOPT_PUSHFUNCTION. (nielsdos)

  • Date: . Fixed bug GH-11368 (Date modify returns invalid datetime). (Derick) . Fixed bug GH-11600 (Can't parse time strings which include (narrow) non-breaking space characters). (Derick) . Fixed bug GH-11854 (DateTime:createFromFormat stopped parsing datetime with extra space). (nielsdos, Derick)

  • DOM: . Fixed bug GH-11625 (DOMElement::replaceWith() doesn't replace node with DOMDocumentFragment but just deletes node or causes wrapping <></> depending on libxml2 version). (nielsdos)

  • Fileinfo: . Fixed bug GH-11298 (finfo returns wrong mime type for xz files). (Anatol)

  • FTP: . Fix context option check for "overwrite". (JonasQuinten) . Fixed bug GH-10562 (Memory leak and invalid state with consecutive ftp_nb_fget). (nielsdos)

  • GD: . Fix most of the external libgd test failures. (Michael Orlitzky)

  • Intl: . Fix memory leak in MessageFormatter::format() on failure. (Girgias)

  • Libxml: . Fixed bug GHSA-3qrf-m4j2-pcrr (Security issue with external entity loading in XML without enabling it). (CVE-2023-3823) (nielsdos, ilutov)

  • MBString: . Fix GH-11300 (license issue: restricted unicode license headers). (nielsdos)

  • Opcache: . Fixed bug GH-10914 (OPCache with Enum and Callback functions results in segmentation fault). (nielsdos) . Prevent potential deadlock if accelerated globals cannot be allocated. (nielsdos)

  • PCNTL: . Fixed bug GH-11498 (SIGCHLD is not always returned from proc_open). (nielsdos)

  • PDO: . Fix GH-11587 (After php8.1, when PDO::ATTR_EMULATE_PREPARES is true and PDO::ATTR_STRINGIFY_FETCHES is true, decimal zeros are no longer filled). (SakiTakamachi)

  • PDO SQLite: . Fix GH-11492 (Make test failure: ext/pdo_sqlite/tests/bug_42589.phpt). (KapitanOczywisty, CViniciusSDias)

  • Phar: . Add missing check on EVP_VerifyUpdate() in phar util. (nielsdos) . Fixed bug GHSA-jqcx-ccgc-xwhv (Buffer mismanagement in phar_dir_read()). (CVE-2023-3824) (nielsdos)

  • PHPDBG: . Fixed bug GH-9669 (phpdbg -h options doesn't list the -z option). (adsr)

  • Session: . Removed broken url support for transferring session ID. (ilutov)

  • Standard: . Fix serialization of RC1 objects appearing in object graph twice. (ilutov)

  • Streams: . Fixed bug GH-11735 (Use-after-free when unregistering user stream wrapper from itself). (ilutov)

  • SQLite3: . Fix replaced error handling in SQLite3Stmt::__construct. (nielsdos)

  • XMLReader: . Fix GH-11548 (Argument corruption when calling XMLReader::open or XMLReader::XML non-statically with observer active). (Bob)

출처

PHP 8.2.9 공식 NEWS · 현재 PHP 지원 일정

원문에 없는 지원 종료일, CVE, Laravel 호환성 결론은 자동으로 추가하지 않습니다.

php.net 공식 릴리스 노트 보기 →