Golang编程语言知识介绍


  • 首页

  • todo

  • 思考

  • life

  • food

  • OS

  • lua

  • redis

  • Golang

  • C

  • TCP/IP

  • ebpf

  • p4

  • OpenVPN

  • IPSec

  • L2TP

  • DNS

  • distributed

  • web

  • OpenWRT

  • 运维

  • Git

  • 鸟哥的私房菜

  • IT杂谈

  • 投资

  • About Me

  • 友情链接

  • FTP

  • 搜索
close

华硕路由器添加固件后门

时间: 2023-08-22   |   分类: OpenWrt     |   阅读: 2217 字 ~5分钟
以下内容转载自 概述 在进行IoT漏洞利用的过程中,后利用阶段为了扩展利用效果和加强红队攻防对抗的能力,固件级别的后门(BackDoor)是非常
阅读全文 »

深入浅出 eBPF 技术

时间: 2023-08-22   |   分类: ebpf     |   阅读: 9655 字 ~20分钟
简介: 1 eBPF 介绍eBPF 是革命性技术, 起源于 linux 内核, 能够在操作系统内核中执行沙盒程序。旨在不改变内核源码或加载内核模块的前提下安全便捷的扩展内
阅读全文 »

Copy a slice in Go

时间: 2023-08-22   |   分类: go     |   阅读: 384 字 ~1分钟
To duplicate a slice in Go, getting a deep copy of its contents, you need to either use the built-in copy() function, or create a new empty slice and add all the elements of the first slice to it using the append() function. Because of how slices are built in Go, assigning one slice to another only makes a shallow copy, and you should not use it if you want
阅读全文 »

Git生成patch和打patch

时间: 2023-08-22   |   分类: 运维   Git     |   阅读: 2148 字 ~5分钟
git生成patch和打patch 日常开发与合作过程中,对于code生成patch和打patch(应用patch)成为经常需要做的事情,使用
阅读全文 »

golang 中 channel 的详细使用、使用注意事项及死锁分析

时间: 2023-08-22   |   分类: go     |   阅读: 4639 字 ~10分钟
golang 中 channel 的详细使用、使用注意事项及死锁分析 什么是 channel 管道# 它是一个数据管道,可以往里面写数据,从里面读数据。 channel 是 goroutine 之间数据通信桥梁,而且是线程安
阅读全文 »

implicit declaration warning - C语言函数隐式声明

时间: 2023-08-22   |   阅读: 953 字 ~2分钟
implicit declaration of function——函数隐式声明警告 原因: 1、该函数未被声明,但却被调用了,此时gcc会报这样的警告信息。 2、(网友总结)该函数所在源
阅读全文 »

OpenWRT 相关资料汇总

时间: 2023-08-22   |   分类: OpenWrt     |   阅读: 36 字 ~1分钟
官网 开发者参考手册目录 软件包的源码仓库 另一些官方软件 固件以及相关配置下载

route命令管理路由表和默认网关

时间: 2023-08-22   |   阅读: 1276 字 ~3分钟
查看 Linux 内核路由表 使用下面的 route 命令可以查看 Linux 内核路由表。 # route Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.0.0 * 255.255.255.0 U 0 0 0 eth0 169.254.0.0 * 255.255.0.0 U 0 0 0 eth0 default 192.168.0.1 0.0.0.0 UG 0 0 0 eth0 route 命令的输出项说明
阅读全文 »
16 17 18 19 20 21 22 23 24
shankusu2017@gmail.com

shankusu2017@gmail.com

日志
分类
标签
RSS 订阅
GitHub
© 2009 - 2025
粤ICP备2021068940号-1 粤公网安备44011302003059
0%