上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: ###问题: ###方法1 执行 python -m ensurepip 然后执行 python -m pip install --upgrade pip 即可更新完毕。 ###方法2 curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py p 阅读全文
posted @ 2022-01-18 15:51 G0mini 阅读(152) 评论(0) 推荐(0) 编辑
摘要: ##下载地址 https://sourceforge.net/projects/mingw/files/Installer/mingw-get-setup.exe/download 作者:WhatsForDinner https://www.bilibili.com/read/cv13303026 阅读全文
posted @ 2022-01-17 10:34 G0mini 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 环境 阿里云服务器 centos7.5 问题 安装msf时出现错误: curl: (35) Encountered end of file 解决 原因:阿里云服务器未开启443端口(我在阿里云配置的全端口开放,不知道为啥) 需要开启防火墙 systemctl start firewalld fire 阅读全文
posted @ 2021-12-27 13:53 G0mini 阅读(8143) 评论(1) 推荐(1) 编辑
摘要: 前言 从eclipse转到idea。被搞的头疼,各种毛病,配置太复杂 过程 问题: 1.打开文件夹没有项目内容 2.项目文件夹在上方打开 解决办法 找到模块导入 打开项目文件夹,下一步下一步就行了。 关于文件位置 百度找到的方法 1. 关闭IDEA, 2.然后删除项目文件夹下的.idea文件夹 3. 阅读全文
posted @ 2021-12-22 11:41 G0mini 阅读(1692) 评论(0) 推荐(0) 编辑
摘要: 环境 MAC 2021 IDEA Tomcat 8.5 过程 2021 IDEA 和以前版本不一样,(最后好的也是莫名其妙) 创建一个空项目 添加web框架 项目右键 WEB-INF下创建classes,lib文件夹 将output path的路径改成classes文件夹的路径 接下来点击depen 阅读全文
posted @ 2021-12-20 17:16 G0mini 阅读(1230) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2020.cnblogs.com/blog/1198450/202112/1198450-20211214170942985-1896415931.png) ![](https://img2020.cnblogs.com/blog/1198450/202112/1198450-20211214170946640-785649731.png) ![](https://i 阅读全文
posted @ 2021-12-14 17:10 G0mini 阅读(1305) 评论(0) 推荐(0) 编辑
摘要: 更改镜像地址 国内对docker官网的网速支持并不友好, 使用清华镜像作为代替. curl -fsSL https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/debian/gpg | sudo apt-key add - 配置Docker APT 阅读全文
posted @ 2021-12-14 09:47 G0mini 阅读(78) 评论(0) 推荐(0) 编辑
摘要: ##环境 利用 jspstudy集成环境 tomcat 8.x 配置一个log4j _rce环境 一直无法解析 访问404。 配置 把tomcat根目录指定为webapps C:\JspStudy\tomcat\webapps\ROOT 修改con/server.xml 把执行docBase 最后加 阅读全文
posted @ 2021-12-13 16:37 G0mini 阅读(196) 评论(0) 推荐(0) 编辑
摘要: ##环境介绍 Win10 Eclipse 2020 ##下载maven maven 地址 https://maven.apache.org/download.cgi ###安装 把压缩包解压到任意位置,然后配置环境变量 系统变量添加 MavenHome 位置 PATH 添加 %MavenHome%\ 阅读全文
posted @ 2021-12-11 14:13 G0mini 阅读(162) 评论(0) 推荐(0) 编辑
摘要: ##前言 做代码审计的时候,发现很多文件存在权限验证。 想把没带有权限验证的文件提取出来。 ###Python3 import os import time import threading from shutil import copyfile start=time.time() filepath 阅读全文
posted @ 2021-08-18 10:39 G0mini 阅读(296) 评论(0) 推荐(0) 编辑
摘要: ###python版本不同--mac 突然发现,pycharm 控制台运行python好好地。 但是pycharm中的Terminal无法运行。发现是因为版本不同。 从上面看出来。 本地的python版本是3.7 pycharm解释器调用的也是3.7 但是pycharm的Terminal 中调用的是 阅读全文
posted @ 2021-08-05 17:31 G0mini 阅读(1942) 评论(0) 推荐(0) 编辑
摘要: ####设置-CSS代码 <!--去广告--> /*去掉推送*/ #ad_t2{/*广告*/ display: none;/*设置框架不显示*/ overflow: hidden;/*框架超出部分隐藏*//*下同*/ } #cnblogs_c1{/*空白块1*/ display: none; ove 阅读全文
posted @ 2021-08-04 16:39 G0mini 阅读(156) 评论(1) 推荐(2) 编辑
摘要: 本主题需要JS权限,没有的请先申请权限 进入管理后台 设置 当前页面所涉及的配置有: 博客皮肤 页面定制CSS代码 禁用模板默认CSS 博客侧边栏公告 页脚Html代码 1.后台-选项中打开公告 获取需要使用的版本 github:https://github.com/BNDong/Cnblogs-T 阅读全文
posted @ 2021-07-26 17:15 G0mini 阅读(974) 评论(0) 推荐(1) 编辑
摘要: import re import requests from bs4 import BeautifulSoup as bs import _thread import time headers={ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; 阅读全文
posted @ 2021-07-26 15:31 G0mini 阅读(103) 评论(0) 推荐(0) 编辑
摘要: import os def all_files_path(rootDir): for root, dirs, files in os.walk(rootDir): # 分别代表根目录、文件夹、文件 for file in files: # 遍历文件 file_path = os.path.join( 阅读全文
posted @ 2021-07-26 15:11 G0mini 阅读(980) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页