上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: ##错误1 运行安装pip install pyspider 时会遇到报错“pycurl” Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-vXo1W3/pycurl ###解决办法 这是Py 阅读全文
posted @ 2021-07-13 17:00 G0mini 阅读(522) 评论(0) 推荐(0) 编辑
摘要: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple sip pip install -i https://pypi.tuna.tsinghua.edu.cn/simple PyQt5 pip install -i https://pypi. 阅读全文
posted @ 2021-03-25 19:09 G0mini 阅读(175) 评论(0) 推荐(0) 编辑
摘要: ##重启了一下apache服务,默认页面又变成apache默认的Test页面。 ####apache 服务默认Test页面位置 /etc/httpd/conf.d/welcome.conf ####修改位置 修改这里为新的index.html 即可 ####关闭测试页面 将<LocationMatc 阅读全文
posted @ 2021-03-10 16:26 G0mini 阅读(367) 评论(0) 推荐(0) 编辑
摘要: html构造表单 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <form method="post" action="upload_file.php" enctype="mul 阅读全文
posted @ 2021-03-10 12:33 G0mini 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 1.修改本地邮箱 生效于以后文件。 查看远离邮箱 git config user.email git config user.email ‘新的邮箱地址’ 2.修改所有的邮箱 首先github新建一个空白项目。 git clone --bare 空白项目地址 cd repo.git 复制脚本在新建项 阅读全文
posted @ 2020-12-28 14:53 G0mini 阅读(595) 评论(0) 推荐(0) 编辑
摘要: 初始置换表 输入的明文 M=0123456789ABCDEF(16 进制),请计算其输出(16 进制表示)。 ##步骤 ###明文M由16进制转换成二进制 16进制->2进制(1分4法)即: 0=0000 1=0001 2=0010 3=0011 4=0100 5=0101 6=0110 7=011 阅读全文
posted @ 2020-11-05 15:51 G0mini 阅读(927) 评论(0) 推荐(0) 编辑
摘要: #简单的RSA,私钥计算 ##公钥(c,n)=(13,35),求私钥。 知识准备: n=p*q &(n)=(p-1)(q-1) de=1 mod &(n) n=35 e=13 q=7 q=p=5 &(n)=6*4=24 13d=1 mod 24 13d mod 24 =1 13乘以d对24%=1 d 阅读全文
posted @ 2020-11-04 10:57 G0mini 阅读(363) 评论(0) 推荐(0) 编辑
摘要: #minikatz免杀之msf加载bin文件 ##准备工作 donut 0.9.2版本稳定 https://github.com/TheWover/donut shellcode_inject.rb kali自带,目录/usr/share/metasploit-framework/modules/p 阅读全文
posted @ 2020-11-03 17:28 G0mini 阅读(1258) 评论(0) 推荐(0) 编辑
摘要: #Out-EncryptedScript加密 ##准备工作:PowerSploit下载 https://github.com/PowerShellMafia/PowerSploit ##步骤 ###思路:利用Out-EncryptedScript.ps1把Invoke-Mimikatz.ps1进行加 阅读全文
posted @ 2020-11-03 17:08 G0mini 阅读(650) 评论(0) 推荐(0) 编辑
摘要: #Windwos server2012 phpstudy+网站安全狗 ##问题1:phpMyAdmin安装后无法打开,现实某个php文件出错。 解答:php版本 > 5.5 ##问题2:安全狗识别phpstudy apache环境 1. 先安装phpstudy(网上说旧版本好点,其余没有区别,这里使 阅读全文
posted @ 2020-08-28 09:44 G0mini 阅读(1051) 评论(1) 推荐(1) 编辑
摘要: cs 多层代理+msf(frp代理)联合 ##1.cs多层代理 ###目标机器: 第一层目标机器: 10.211.55.0 (通外网) 10.10.10.1 第二层目标机器: 10.10.10.2 (纯内网,不通外网) 当目标多层内网的时候,如何把每一层机器都上线到cs端呢, 如果是msf直接可以一 阅读全文
posted @ 2020-08-10 16:04 G0mini 阅读(2979) 评论(0) 推荐(0) 编辑
摘要: 环境准备: 1.模拟器 2.frida 3.frida-dexdump 具体安装环境:参考之前文章: https://www.cnblogs.com/pangya/p/13441092.html https://www.cnblogs.com/pangya/p/10062860.html 直接开始: 阅读全文
posted @ 2020-08-06 15:10 G0mini 阅读(1493) 评论(0) 推荐(0) 编辑
摘要: 1.模拟器安装drozer和相关adb 。看上文。 https://www.cnblogs.com/pangya/p/10062860.html 把adb添加到环境变量。 2.模拟器上安卓Firda-server 1.确定模拟器版本,使用adb adb shell getprop ro.produc 阅读全文
posted @ 2020-08-05 17:01 G0mini 阅读(4600) 评论(0) 推荐(1) 编辑
摘要: 1. 不包括vim vi /etc/inputrc 去掉set bell-style none 前的注释 参考:https://www.cnblogs.com/ybyi/p/5648833.html 阅读全文
posted @ 2020-08-05 14:21 G0mini 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 1.修改ssh vim /etc/ssh/ssh_config 去掉 # PasswordAuthentication yes 2.修改sshd vim /etc/ssh/sshd_config找到 Authentication 把以下几个#去掉 3.重启服务 service ssh restart 阅读全文
posted @ 2020-08-05 14:19 G0mini 阅读(176) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页