搜索内容

admin 的文章
  • Shell数组的坑
    Linux

    Shell数组的坑

    先看现象 # 写法一: root@localhost:~# arry=() root@localhost:~# str=aa root@localhost:~# if [[ "$str" =~ ${arry[*]} ]]; then echo "ma……
    admin 19小时前
  • Docker 安装 AWVS 25.1.250204093
    Linux

    Docker 安装 AWVS 25.1.250204093

    Hub镜像地址:https://hub.docker.com/r/0xgkd/awvs docker run -it -d -p 13443:3443 0xgkd/awvs 访问: URL: https://YOUR_IP:13443 username: admin@gkd.co……
    admin 2025/04/08
  • 使用Charles抓取APP https请求
    Linux

    使用Charles抓取APP https请求

    说明 常见的抓包工具对于抓http请求没有任何问题,也很方便,只需要在电脑开启代理,手机wifi代理设置为电脑IP以及代理端口即可。但是想要抓https包就不那么简……
    admin 2025/03/31
  • Reverse Shell
    Linux

    Reverse Shell

    简介 Reverse Shell 反向Shell。 通常我们在服务器上会开放一个ssh 22端口,本地ssh客户端通过此端口进行连接到服务器,这是正向Shell。 但是如果服务器对22……
    admin 2025/03/18
  • K8S 安装 NFS CSI 驱动
    k8s

    K8S 安装 NFS CSI 驱动

    Github仓库: https://github.com/kubernetes-csi/csi-driver-nfs/tree/master 安装文档: https://github.com/kubernetes-csi/csi-driver-nfs/tree/master/cha……
    admin 2025/03/07
  • SSH跳板机
    Linux

    SSH跳板机

    场景 如上图所示: 两个Region是相互隔离的,现在需要从A区域的server1连接到B区域的server2,server1和server2都在各自的内网中,但是两个区域都有一台可以……
    admin 2025/03/05
  • Windows 11 设置
    Windows

    Windows 11 设置

    以管理员身份打开 powershell , 执行以下命令: 右键菜单恢复win10效果 reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae……
    admin 2024/10/08
  • VMware虚拟机设置
    Linux

    VMware虚拟机设置

    允许root远程登录 vim /etc/ssh/sshd_config 设置 PermitRootLogin yes 删除普通用户alex userdel -r alex 处理克隆虚拟机IP重复问题 ubutnu20 编辑: v……
    admin 2024/09/05
  • 使用X2Doris迁移Doris
    Doris

    使用X2Doris迁移Doris

    X2Doris官网:https://www.selectdb.com/tools/x2doris 官方部署文档:https://docs.selectdb.com/docs/ecosystem/x2doris/x2doris-deployment-guide 简介 ……
    admin 2024/02/07
  • docker 命令自动补全
    Docker

    docker 命令自动补全

    docker 命令自动补全 curl -L https://raw.githubusercontent.com/docker/docker/v$(docker version --format '{{.Server.Version}}')/contrib/comp……
    admin 2023/11/28