上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
  2020年8月11日
摘要: 1. 重新取回历史版本 git log git checkout (这里写 上面查询出来 commit 后面的哈希值) 2. 此时使用git push会碰到如下问题: $ git push fatal: You are not currently on a branch.To push the hi 阅读全文
posted @ 2020-08-11 16:46 alantop 阅读(1256) 评论(0) 推荐(0) 编辑
摘要: 网络上每天有数以万计的恶意代码,恶意代码分析成为了任何一位从事计算机安全事件响应安全工程师的必备技能。此外,由于恶意代码分析专业人士的短缺,熟练的恶意代码分析师正处于强烈的人才需求中。 这本书不是一本关于如何找到恶意代码的书籍,其重点是如何分析恶意代码,其专注于windows操作系统的恶意代码分析。 阅读全文
posted @ 2020-08-11 07:47 alantop 阅读(423) 评论(0) 推荐(0) 编辑
  2020年8月9日
摘要: 1. 安装 a. 通过下载rpm安装 rpm -ivh b.yum install vsftpd 2. 安装后几个目录的说明 /etc/vsftpd/vsftpd.conf 配置文件 /var/ftp 默认登录目录 3. 防火墙的设置和启动 firewall-cmd --permanent --ad 阅读全文
posted @ 2020-08-09 09:57 alantop 阅读(463) 评论(0) 推荐(0) 编辑
  2020年8月8日
摘要: 出现具体的错误提示如下: “ http://mirrors.aliyun.com/non-supported/rhel/7/x86_64/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found正在尝试其它镜像。 ” 1 删除老仓库文件 c 阅读全文
posted @ 2020-08-08 07:59 alantop 阅读(32714) 评论(7) 推荐(2) 编辑
  2020年7月26日
摘要: show variables like "%char%"; show global variables like 'port' 阅读全文
posted @ 2020-07-26 17:35 alantop 阅读(703) 评论(0) 推荐(0) 编辑
  2020年3月13日
摘要: 永久记住密码 git config --global credential.helper store 阅读全文
posted @ 2020-03-13 10:25 alantop 阅读(228) 评论(0) 推荐(0) 编辑
  2020年3月9日
摘要: 一、服务器端搭建: 1. 安装 curl -s https://install.zerotier.com/ | sudo bash 2.给文件夹授权以及生成moon配置文件 sudo chmod 777 /var/lib/zerotier-onecd /var/lib/zerotier-onesud 阅读全文
posted @ 2020-03-09 10:33 alantop 阅读(4528) 评论(0) 推荐(1) 编辑
  2020年2月24日
摘要: 使用history不能看到所有用户的命令记录,如何看所有用户的操作记录。 如下: 在 /etc/profile 最下面加入如下代码即可. PS1="`whoami`@`hostname`:"'[$PWD]' history USER_IP=`who -u am i 2>/dev/null| awk 阅读全文
posted @ 2020-02-24 13:04 alantop 阅读(1495) 评论(0) 推荐(0) 编辑
  2020年2月22日
摘要: 些知名KMS模拟器的官方发布网址:本机自激活安装类KMS激活软件,容易在系统升级中被查杀失效,且在软件传播过程中极易被捆绑植入后门、病毒,不推荐尝试。Windows Loaderhttps://forums.mydigitallife.net/threads/windows-loader-downl 阅读全文
posted @ 2020-02-22 21:42 alantop 阅读(3736) 评论(0) 推荐(0) 编辑
  2020年2月16日
摘要: python3 求一个list的所有子集 def PowerSetsBinary(items): N = len(items) for i in range(2 ** N):#子集的个数 combo = [] for j in range(N):#用来判断二进制数的下标为j的位置的数是否为1 if 阅读全文
posted @ 2020-02-16 14:44 alantop 阅读(2246) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页