Author: u1timate

golang csv中文字符乱码

使用golang生成csv文件时,如果内容中包含中文字符,则会出现乱码的情况。 解决方法 buf := bufio.NewWriter(ctx.Writer) //修复中文乱码问题 buf.Write([]byte{0xEF, 0xBB, 0xBF}) csvWriter := csv.NewWri

u1timate u1timate Published on 2025-01-21

从源码构建、编译和安装Python 3.13

转载链接 https://blog.frognew.com/2024/12/build-python3.13-from-source.html 构建需求 构建CPython所需的功能和最低版本要求如下: C11编译器。不需要支持C11的可选功能。

u1timate u1timate Published on 2025-01-21

设置elastic agent的output为logstash

配置SSL 这里可以新生成ca证书,完成pki的创建,不需要与es的ca证书共用 使用es自带的证书生成工具 /usr/share/elasticsearch/bin/elasticsearch-certutil ca --pem 这里重新自定义了生成的文件名称,最终的路径为/usr/share/e

u1timate u1timate Published on 2024-11-05

elastic security本地化升级服务

0x01 本地化集成包更新服务 安装集成更新服务 容器 docker pull docker.elastic.co/package-registry/distribution:8.15.3 这个包很大, 建议

u1timate u1timate Published on 2024-11-04

elastic security

0x01 环境准备 注意服务器上需要对这些端口进行开放 1.1 安装es集群 安装环境为`rocky 9.6`版本系统

u1timate u1timate Published on 2024-10-25

基于socks5实现系统的全局代理

0x01 Linux 想在linux上通过socks5实现对全局流量的代理,主要基于redsocks+iptables实现。socks5服务开源的很多,比如windows上的ccproxy,linux上的go-proxy等。 iptables 图中使用箭头展示了用户访问使用了iptables的机器的

u1timate u1timate Published on 2024-09-23

基于wazuh的安全检测(2)

0x01 wazuh集成thehive 集成thehive的步骤如下 在wazuh manager中安装thehive的python 依赖包 在 Wazuh manager上创建集成 Python 脚本。 在 Wazuh manager上创建 Bash 脚本。 将 TheHive 服务器集成到 Wa

u1timate u1timate Published on 2024-09-19

基于Wazuh的安全检测(1)

0x01 架构 配置 wazuh version 4.9 wazuh-dashboard-plugins v4.9 OpenSearch Dashboards 2.13.0 系统版本 center:

u1timate u1timate Published on 2024-09-18

defender命令行管理配置

0x01 defender安装 查看Defender是否正常运行 Get-Service -Name windefend Status  Name              DisplayName ------  ----              ----------- Running 

u1timate u1timate Published on 2024-09-14

自定义nexus插件

环境准备 Java 8 引用官方提供的java项目骨架 nexus oss 3.29.2-02 (api版本类似) https://sonatype-download.global.ssl.fastly.net/repository/downloads-prod-group/3/nexus-3.29

u1timate u1timate Published on 2024-06-13
Previous Next