Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
cve-2023-28771-demo — 针对 CVE-2023-28771 的概念验证漏洞利用程序,用于安全测试与验证,展示了 Zyxel 设备中的一个关键漏洞。 | Kitploit
工具/GitHubGitHub/jinparkmida/cve-2023-28771-demo
侦察漏洞分析漏洞利用Web应用程序漏洞利用渗透测试Archived
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 配置

如果你正在开发一个生产应用程序,我们建议更新配置以启用类型感知的 lint 规则:

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...
    },
  },
])

你还可以安装 eslint-plugin-react-x 和 eslint-plugin-react-dom 来获取 React 相关的 lint 规则:

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...
    },
  },
])
下载工具