Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
cve-2023-28771-demo — CVE-2023-28771에 대한 개념 증명 익스플로잇으로, Zyxel 장치의 심각한 취약점을 보안 테스트 및 검증을 위해 시연합니다. | Kitploit
도구/GitHubGitHub/jinparkmida/cve-2023-28771-demo
ReconnaissanceVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingArchived
GitHubjinparkmida/cve-2023-28771-demo

cve-2023-28771-demo

CVE-2023-28771에 대한 개념 증명 익스플로잇으로, Zyxel 장치의 심각한 취약점을 보안 테스트 및 검증을 위해 시연합니다.

저장소 보기
1년 전아직 검토되지 않음

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

React + TypeScript + Vite

이 템플릿은 React가 Vite에서 HMR 및 일부 ESLint 규칙과 함께 작동하도록 하는 최소한의 설정을 제공합니다.

현재 두 가지 공식 플러그인이 제공됩니다:

  • @vitejs/plugin-react는 빠른 새로 고침을 위해 Babel을 사용합니다
  • @vitejs/plugin-react-swc는 빠른 새로 고침을 위해 SWC를 사용합니다

ESLint 구성 확장

프로덕션 애플리케이션을 개발 중이라면 타입 인식 린트 규칙을 활성화하도록 구성을 업데이트하는 것을 권장합니다:

root@kitploit:~
export default tseslint.config([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...

      // Remove tseslint.configs.recommended and replace with this
      ...tseslint.configs.recommendedTypeChecked,
      // Alternatively, use this for stricter rules
      ...tseslint.configs.strictTypeChecked,
      // Optionally, add this for stylistic rules
      ...tseslint.configs.stylisticTypeChecked,

      // Other configs...
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])

React 관련 린트 규칙을 위해 eslint-plugin-react-x 및 eslint-plugin-react-dom을 설치할 수도 있습니다:

root@kitploit:~
// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'

export default tseslint.config([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...
      // Enable lint rules for React
      reactX.configs['recommended-typescript'],
      // Enable lint rules for React DOM
      reactDom.configs.recommended,
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])
도구 다운로드