binary the winutils windows

逆向 | windows TLS回调

逆向 | windows TLS回调 之前逆向的时候偶尔会碰到tls回调,但是没有自己实现过,今天想着实现一下。 参考的代码来自 逆向工程核心原理。 代码如下: #include <windows.h> #pragma comment (linker, "/INCLUDE:__tls_used") ......
windows TLS

Windows 短文件名相关 - IIS短文件名泄露

今天接网安通告,说服务器有IIS短文件名泄露。 可这短文件名是什么?拿完通告后回来一通查了个遍终于看明白了。 先说短文件名是什么 资料传说很久很久以前windows的文件名不能超过8个文件名和3个扩展名,也就是12345678.123就是最大长度了。 但是到了windows95的时候,这个长度被扩展 ......
文件名 文件 Windows IIS

使用 window.getSelection() 和 getRangeAt() 方法来获取鼠标光标前的字符串。

具体实现方法如下: 给文本输入框或富文本编辑器绑定 mouseup 事件,监听鼠标松开的动作。 在事件处理函数中,先判断当前文本框是否获得了焦点(即用户在此次点击之前,已经在该文本框内部输入过字符)。 如果已经获得了焦点,则获取当前选区(Selection)对象。 利用 getRangeAt() 方 ......

Server Error `defineOptions()` in <script setup> cannot reference locally declared variables (COMPONENT_NAME) because it will be hoisted outside of the setup() function.

这个错误提示是因为在<script setup>标签中使用了defineOptions()函数,并且该函数中引用了一个本地声明的变量(比如COMPONENT_NAME)。由于<script setup>中的代码会被自动包装在setup()函数内部执行,而defineOptions()函数会被提升到s ......

Windows如何用脚本修改主机DNS地址

本次使用:netsh修改dns地址,可复制到记事本中另存为.bat批处理脚本格式 netsh interface ip add dns name="本地连接" addr=114.114.114.144 index=1 netsh interface ip add dns name="本地连接" ad ......
脚本 主机 Windows 地址 DNS

20 An identity-based data aggregation protocol for the smart grid

![](https://img2023.cnblogs.com/blog/1954056/202304/1954056-20230407090242545-1069731187.jpg) ![](https://img2023.cnblogs.com/blog/1954056/202304/1954... ......

迁移学习《Pseudo-Label : The Simple and Efficient Semi-Supervised Learning Method for Deep Neural Networks》

论文信息 论文标题:Pseudo-Label : The Simple and Efficient Semi-Supervised Learning Method for Deep Neural Networks论文作者:Dong-Hyun Lee论文来源:2013——ICML论文地址:downlo ......

frp内网穿透,linux服务器,windows客户端

一、配置前准备 1、下载frp,可以从github上下载 下载地址:https://github.com/fatedier/frp/releases 2、服务器端(点击名称下载) frp_0.48.0_linux_amd64.tar.gz 3、客户端(点击名称下载) frp_0.48.0_windo ......
客户端 windows 客户 服务器 linux

Windows11 Qt6.4.2+OpenCV4.7.0+android-ndk-r23编译动(.so)、静态库(.a)

1.在cmake-gui中,点击Add Entry,增加ANDROID_ABI,值为arm64-v8a。 参考地址:https://blog.csdn.net/aggs1990/article/details/124526728 ......
android-ndk-r 静态 Windows OpenCV4 android

docker启动报错the backing xfs filesystem is formatted without d_type support

WARNING: overlay2: the backing xfs filesystem is formatted without d_type support, which leads to incorrect behavior. Reformat the filesystem with fty ......
filesystem formatted backing support without

windows11安装wsl

一:安装步骤 1:打开电脑的搜索 2:搜索框输入:powershell 3:点击,自动进入窗口 4:输入命令:wsl --install 二:遇到问题 输入安装命令后,报错如下图: 三:解决方法 控制面板--查看网络状态和任务--更改适配器设置--点击正在连接的网络--双击Internet协议版本4 ......
windows wsl 11

XXX is not in the sudoers file. This incident will be reported

一:问题 XXX is not in the sudoers file. This incident will be reported 二:原因 当前用户不在sudoers文件中,导致报错 三:解决方案 ......
incident reported sudoers This file

mysql 窗口函数(Window Functions)

MySQL 窗口函数(Window Functions)是一种高级的 SQL 查询技巧,它允许在结果集的一组相关行上执行计算。窗口函数可以用于处理分组、排序、累计等复杂的聚合任务,使得查询更加简洁和高效。在 MySQL 8.0 及更高版本中,支持窗口函数。 以下是一些常用的窗口函数: ROW_NUM ......
函数 Functions Window mysql

建模copy时报错[lsFrozen Field is not found in the CDO xxxxChanges] 的解决方法

报错如图 日志报错如下 根据日志内容查找问题原因:由于 SetIsFrozen 逻辑导致异常。 解决办法:重写Maint的SaveAs方法,去掉SetIsFrozen 逻辑。 ......
xxxxChanges lsFrozen 时报 方法 Field

通过python控制windows窗口的关闭和显示

代码: import win32gui, win32con, win32api import os,sys,re import ctypes import time def showWindow(hwnd): # 展示窗口,以下几行代码都可以唤醒窗口 win32gui.ShowWindow(hwnd ......
windows python

D - I Wanna Win The Game

https://atcoder.jp/contests/arc116/tasks/arc116_d #include<bits/stdc++.h> #define debug1(a) cout<<#a<<'='<< a << endl; #define debug2(a,b) cout<<#a<<" ......
Wanna Game The Win

D. Watch the Videos

https://codeforces.com/problemset/problem/1765/D 观察找规律 最大的和二分最小的,然后交替相邻,看是否合法 找到最长的合法段 答案就是总长度减去合法段加上原先的长度 #include<bits/stdc++.h> #define debug1(a) c ......
Videos Watch the

blockchain | 区块链安全靶场 The Ethernaut

blockchain | 区块链安全靶场 The Ethernaut 最近在学这一块,找个靶场玩玩:https://ethernaut.openzeppelin.com/ 可以参考:https://blog.csdn.net/rfrder/article/details/115572137 需要提前 ......
靶场 区块 blockchain Ethernaut The

ping某个地址判断网络是否通畅(linux与windows都可用)

import lombok.extern.slf4j.Slf4j; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamRea ......
windows 地址 linux 网络 ping

Windows 快速查看网站对应SSL证书有效期

以chrome浏览器为例,其它浏览器步骤大同小异。 方法1: 使用chrome浏览器打开网站后,F12进入开发者模式,点击【安全】标签下的【查看证书】即可: 方法2: 使用chrome浏览器打开网站后,点击地址栏旁边的小锁图标,再依次进行如下点击即可查看当前网站SSL证书有效期: ......
有效期 证书 Windows 网站 SSL

勒索软件正在从 Windows 转向 Linux

听说勒索软件正在从 Windows 转向 Linux了 勒索软件正在从 Windows 转向 Linux 最近几周,黑客们一直在对 Linux 企业网络部署 IceFire 勒索软件,这是一个值得注意的转变,因为它曾经是一个只针对 Windows 的恶意软件。与 Windows 相比,Linux 更 ......
正在 Windows Linux 软件

勒索软件正在从 Windows 转向 Linux

听说勒索软件正在从 Windows 转向 Linux了 勒索软件正在从 Windows 转向 Linux 最近几周,黑客们一直在对 Linux 企业网络部署 IceFire 勒索软件,这是一个值得注意的转变,因为它曾经是一个只针对 Windows 的恶意软件。与 Windows 相比,Linux 更 ......
正在 Windows Linux 软件

用python的pywinauto组件控制微信Windows版

使用pywinauto组件可以比较容易的操纵微信Windows版进行信息发送和接受 前提如下 1、已经安装有关python组件。 2、微信已经打开和登录,下面的代码不负责登录操作。 3、微信版本3.9.2.23 具体实现有两个类 1、帮助类Helper import datetime class H ......
组件 pywinauto Windows python

The last packet sent successfully to the server was 0 milliseconds ago

问题:在做网站的时候,使用JDBC进行数据库连接的时候,死活连接不上,并出现了标题所示错误。 在服务器上用dbeaver来连接是没有问题的。 解决方法:检查阿里云安全组设置,发现没有把3306开放出去,开放后就可以了 ......
milliseconds successfully packet server last

The Many Ways To Call Axes In Matplotlib

%matplotlib widget from IPython.display import display, HTML import re from pathlib import Path import cv2 import numpy as np import matplotlib.pyplot ......
Matplotlib Many Call Axes Ways

C. Binary Search

题目 C. Binary Search 题意 给一个数字n,构造出一个全排列的数组a,满足上面二分结果为true 请求出不同全排列数组a的数量,答案模1e9+7 思路 模拟:按照二叉查找树的思路,模拟这个二分所有可能遇到的mid,使得判断条件成立(为什么落在最后的点上?因为是折半查找,搜索树上没有重 ......
Binary Search

被ST-Link【The content of ST-Link is corrupt】【Communication error with ST-Link】折磨是我的宿命

直接跳转【4】看解决方法,祝大家都顺利解决 【1】我的尝试 【2】我的错误情况 【3】我无用的努力 【尝试1:点击setting之后的第一个debug页面里面的port要改成sw,不然下载不成功】,其实这样只是比较节约端口而已,当然一般还是都选择【SW】 【尝试2:output里记得把 create ......
ST-Link Link Communication 宿命 ST

Windows系统安装pip方法

pip是一款非常方便的python包管理工具,本文主要介绍在windows 10系统下安装pip方法。 1. 下载pip 地址:https://pypi.python.org/pypi/pip#downloads,注意选择tar.gz压缩包 2. 解压安装 解压下载的压缩包至工作目录下(如D:\), ......
Windows 方法 系统 pip

Linux、Windows后台运行Python脚本

Linux:python或nohup命令 python命令: python test.py & python -u test.py >> test.log & 参数u,时时输出内容到文件。 python -u test.py >>test.log 2>&1 & python -u test.py > ......
脚本 后台 Windows Python Linux

mysql Windows服务器 安装配置 主从复制 设置只读用户

CREATE USER 'readonly'@'localhost' IDENTIFIED BY 'readonly';GRANT SELECT ON *.* TO 'readonly'@'%'; http://www.dbs724.com/83872.html 验证: 参考: https://ww ......
主从 Windows 服务器 用户 mysql