# 生成CA证书 openssl genrsa -out ca/ca-key.pem 2048 openssl req -new -out ca/ca-req.csr -key ca/ca-key.pem Country Name (2 letter code) [AU]:cn State or P ...
分类:
其他好文 时间:
2021-04-10 13:02:49
阅读次数:
0
"tabBar": { "color": "#8a8a8a", "selectedColor": "#1AAD16", "backgroundColor": "#fff", "borderStyle": "white", "list": [ { "pagePath": "pages/index/in ...
分类:
微信 时间:
2021-04-08 13:41:30
阅读次数:
0
Adobe ColdFusion 反序列化漏洞 0x01.环境搭建 利用vulhub搭建漏洞环境 service docker start docker-compose up -d 查看开启的端口号 docker-compose ps 访问http://target_ip:8500/CFIDE/ad ...
分类:
其他好文 时间:
2021-04-06 14:28:21
阅读次数:
0
内容过长显示固定长度部分 多余部分用省略号代替 table { table-layout: fixed; /* table内部布局固定大小 方便用width调节td的长度 */ /* 由于table-layout的默认值是auto,即table的宽高将取决于其内容 */ } td { white-s ...
分类:
Web程序 时间:
2021-04-02 13:09:12
阅读次数:
0
前提: 原统计文档中条目以空格分隔或只有一列(为了方便awk筛选出某一个列) 1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 import sys 4 import os 5 6 PRINTRED = "\033[1;31m" 7 PRINTGR ...
分类:
编程语言 时间:
2021-03-18 14:42:22
阅读次数:
0
前台getshell https://cloud.tencent.com/developer/article/1690304 /index.php/api/Uploadify/preview data:image/php;base64,PD9waHAgcGhwaW5mbygpOw== 后台登陆后ge ...
分类:
其他好文 时间:
2021-03-17 14:10:34
阅读次数:
0
1-使用 express 创建服务器 //1-引入express框架 const express = require('express') //2-创建网站服务 const app = express() //3-接收请求 app.get('/', (req, res) => { //使用res.s ...
分类:
其他好文 时间:
2021-03-08 14:02:14
阅读次数:
0
1-使用 express 创建服务器 var express=require('express') var app=express() app.get('/',(req,res)=>{ res.send('express') }) app.listen(3000,()=>{ console.log( ...
分类:
其他好文 时间:
2021-03-04 13:14:04
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>tab页切换</title> <style> .tab { background: grey; overflow: auto; width: 240px; bo ...
分类:
Web程序 时间:
2021-03-03 12:28:04
阅读次数:
0
一、流程控制 while循环:只要条件满足一直循环 read -p "请输入一个数字:" white_data while [ ${white_data} -lt 20 ] do echo ${white_data} white_data=$((white_data + 1)) done until ...
分类:
系统相关 时间:
2021-02-27 13:22:57
阅读次数:
0