摘要: 一、过滤视图名称的正则表达式: 1.包含-la的 ^[pa].+-la.+ 2.P开头包含scm的 ^p.+scm.+ 3.我的视图 (^[pa].+-la.+)|(^p.+(crm-|a-)domain-(sim|res)$)|(.+crm-res)|(^p.+scm.+) Date d/m/yy 阅读全文
posted @ 2020-07-05 15:58 heycomputer 阅读(157) 评论(0) 推荐(0)
摘要: Common Bash #Exfiltration using Base64 base64 -w 0 file ​ #Get HexDump without new lines xxd -p boot12.bin | tr -d '\n' ​ #Add public key to authorize 阅读全文
posted @ 2020-05-04 12:18 heycomputer 阅读(206) 评论(0) 推荐(0)
摘要: #!/usr/bin/env python # -*- coding: utf-8 -*- """ @version: v1.0 @author: zyjsuper @contact: zyj_super@outlook.com @site: https://www.cnblogs.com/heyc 阅读全文
posted @ 2020-04-21 18:09 heycomputer 阅读(260) 评论(0) 推荐(0)
摘要: 1.配置远程主机公钥 使用命令完成比较方便 [root@k8s-master ~]# ssh-copy-id Usage: /usr/bin/ssh-copy-id [-h|-?|-f|-n] [-i [identity_file]] [-p port] [[-o <ssh -o options>] 阅读全文
posted @ 2020-04-15 14:44 heycomputer 阅读(693) 评论(0) 推荐(0)
摘要: www.zsythink.net www.centos.bz http://www.21yunwei.com/ http://www.yunweipai.com/ https://zhangge.net/ https://linuxeye.com/ 魔盾恶意软件分析: https://www.mal 阅读全文
posted @ 2020-03-28 17:56 heycomputer 阅读(97) 评论(0) 推荐(0)
摘要: 1.备份的目标为目录 #!/bin/bash cd /opt/backup NUM1=$(/bin/ls -l |grep "^d"|awk '{print $9}'|wc -l) NUM2=$(/usr/bin/expr $NUM1 - 3) /bin/ls -l |grep "^d"|awk ' 阅读全文
posted @ 2020-03-23 14:46 heycomputer 阅读(142) 评论(0) 推荐(0)
摘要: https://github-enterprise.s3.amazonaws.com/esx/releases/github-enterprise-2.20.3.ova https://github-enterprise.s3.amazonaws.com/hyperv/releases/github 阅读全文
posted @ 2020-03-19 17:04 heycomputer 阅读(1335) 评论(0) 推荐(0)
摘要: urillb2在python3中的变化 在Pytho2.x中使用import urllib2——-对应的,在Python3.x中会使用import urllib.request,urllib.error。 在Pytho2.x中使用import urllib——-对应的,在Python3.x中会使用i 阅读全文
posted @ 2020-03-16 20:29 heycomputer 阅读(548) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2020-12-06 17:23 heycomputer 阅读(0) 评论(0) 推荐(0)
摘要: nexus简介 nexus是一个强大的maven仓库管理器,它极大的简化了本地内部仓库的维护和外部仓库的访问. nexus是一套开箱即用的系统不需要数据库,它使用文件系统加Lucene来组织数据 .nexus使用ExtJS来开发界面,利用Restlet来提供完整的REST APIs,通过IDEA和E 阅读全文
posted @ 2020-07-31 15:41 heycomputer 阅读(1919) 评论(0) 推荐(0)
摘要: The Groovy language supports two flavors of metaprogramming: runtime and compile-time. The first allows altering the class model and the behavior of a 阅读全文
posted @ 2020-07-28 10:41 heycomputer 阅读(187) 评论(0) 推荐(0)
摘要: 1. Working with IO Groovy provides a number of helper methods for working with I/O. While you could use standard Java code in Groovy to deal with thos 阅读全文
posted @ 2020-07-28 10:40 heycomputer 阅读(172) 评论(0) 推荐(0)
摘要: mitmf不兼容MacOS,虽然最后没有成功,还是把解决问题的方法记录下来吧。 1.安装依赖报错 zyjsuper@zhaoyuanjis-MacBook-Air MITMf % sudo python3 -m pip install -r requirements.txt WARNING: The 阅读全文
posted @ 2020-05-04 18:22 heycomputer 阅读(645) 评论(0) 推荐(0)
摘要: 简介 Homebrew 是一款自由及开放源代码的软件包管理系统,用以简化 macOS 和 linux 系统上的软件安装过程。它拥有安装、卸载、更新、查看、搜索等很多实用的功能,通过简单的一条指令,就可以实现包管理,十分方便快捷。 Homebrew 主要有四个部分组成: brew、homebrew-c 阅读全文
posted @ 2020-05-03 21:58 heycomputer 阅读(2648) 评论(0) 推荐(0)
摘要: import exploitpack.AsymmetricCryptography; import exploitpack.SplashScreen; import exploitpack.Update0Days; import java.io.BufferedReader; import java 阅读全文
posted @ 2020-05-02 15:26 heycomputer 阅读(1498) 评论(0) 推荐(0)