这时如果连接不到proxy.golang.org 的话可以切换国内源
执行:go env -w GOPROXY=https://goproxy.cn
这时就可以轻松下载了
这时如果连接不到proxy.golang.org 的话可以切换国内源
执行:go env -w GOPROXY=https://goproxy.cn
这时就可以轻松下载了
Wails是一个可让您使用 Go 和 Web 技术编写桌面应用的项目。
将Wails看作为 Go 的快并且轻量的 Electron 替代品。 您可以使用 Go 的灵活性和强大功能,结合丰富的现代前端,轻松的构建应用程序。
Kali逆向工程工具
工具类 | 描述 |
---|---|
apktool | 它是用于重新设计Android apk文件的工具, 该工具可以将资源解码为几乎原始的形式, 并在修改后重建它们。 |
dex2jar | 它通过调用dx将jar转换为dex。 |
diStorm3 | 它是一个轻量级, 易于使用且快速的分解器库。 |
edb-debugger | 它是一个模块化的跨平台调试器。 |
jad | 它是一个Java反编译器。 |
javasnoop | 它将自身附加到现有流程上, 并立即开始篡改方法调用, 运行自定义代码或仅分析系统处理。 |
JD-GUI | 这是一个图形实用程序, 显示“ .class”文件的Java源代码。 |
OllyDbg | 它是用于Microsoft Windows的32位汇编器级别的分析调试器。 |
smali | 它是dalvik使用的dex文件的汇编程序/反汇编程序。 |
Valgrind | 它是用于调试和分析Linux程序的工具。 |
YARA | 使用YARA, 你可以基于文本或二进制模式创建对恶意软件的描述。 |
IDS与IPS功能分析
本文主要对比分析了入侵检测系统、 入侵防御系统以及 “防火墙+入侵检测系统” 联动防护机制这三种网络安全方案,讨论了其优缺点和未来发展方向。
本文主要对比分析了入侵检测系统、 入侵防御系统以及 “防火墙+入侵检测系统” 联动防护机制这三种网络安全方案,讨论了其优缺点和未来发展方向。
【实例】frp内网穿透 公开自己电脑中本地服务器中的某个网站
由于在外地,笔记本使用手机热点连网的。有客户要帮看代码,但是代码的测试还需要回传数据,那么在本地测试就不可行了,而且我又不想把测试代码放到我的服务器中,所以就想到了frp。
刚开始弄frp有些蒙,研究研究就好了。frp内网穿透
刚开始时,域名解析使用了泛域名方法,这样也是我刚开始发蒙的原因,后来改为直接解析的方法,就好了。
CentOS 手动安装Go语言(golang)
0 |
wget https://dl.google.com/go/go1.13.8.linux-amd64.tar.gz |
将源码包解压后直接放到 /usr/local 目录下, 不用再次 make && make install 来安装了, 开箱即用
0 |
tar -C /usr/local/ -zxvf go1.13.8.linux-amd64.tar.gz |
需要添加GO的环境变量到系统$PATH中,步骤如下:
0 |
vim /etc/profile.d/go.sh |
在打开的文件里加入
0 |
export PATH=$PATH:/usr/local/go/bin |
然后保存退出即可(命令 :wq!)
0 |
source /etc/profile.d/go.sh |
CentOS 更新git,linux更新git
0 |
yum remove git |
0 |
yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel asciidoc |
0 |
yum install gcc perl-ExtUtils-MakeMaker |
CentOS 7 yum更换国内源后报错:
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
Determining fastest mirrors One of the configured repositories failed (Unknown), and yum doesn't have enough cached data to continue. At this point the only safe thing yum can do is fail. There are a few ways to work "fix" this: 1. Contact the upstream for the repository and get them to fix the problem. 2. Reconfigure the baseurl/etc. for the repository, to point to a working upstream. This is most often useful if you are using a newer distribution release than is supported by the repository (and the packages for the previous distribution release still work). 3. Run the command with the repository temporarily disabled yum --disablerepo=<repoid> ... 4. Disable the repository permanently, so yum won't use it by default. Yum will then just ignore the repository until you permanently enable it again or use --enablerepo for temporary usage: yum-config-manager --disable <repoid> or subscription-manager repos --disable=<repoid> 5. Configure the failing repository to be skipped, if it is unavailable. Note that yum will try to contact the repo. when it runs most commands, so will have to try and fail each time (and thus. yum will be be much slower). If it is a very temporary problem though, this is often a nice compromise: yum-config-manager --save --setopt=<repoid>.skip_if_unavailable=true Cannot retrieve metalink for repository: epel/x86_64. Please verify its path and try again |
解决办法(3条命令):
0 1 2 |
yum remove epel-release yum update yum install epel-release |
windows版宝塔,提示:开启失败,请先卸载当前系统存在的PHP环境。
这是因为在windows系统环境变量中存在PHP。
解决办法:
打开windows系统环境变量,查找带有php安装目录的变量,删除即可。