相关文章
wopop靶场漏洞挖掘练习
1、SQL注入漏洞
1、在搜索框输入-1 union select 1,2,3# 2、输入-1 union select 1,2,database()# ,可以得出数据库名 3、输入-1 union select 1,2,group_concat(table_name) from information_schema.tables where table_schematest#,可以得出数据库中…
建站知识
2025/1/5 6:29:44
python小脚本,实时监测服务器是否宕机状态,并发送到指定群组
一,前言
众所周知,市面上监控软件很多,有Zabbix,Prometheus等,但对于相对简单的功能,需要第一时间发现问题,如服务器宕机,zabbix和Prometheus都需要等几分钟才会报警。
想到最原始…
建站知识
2025/1/10 2:49:20
PyCharm的使用
PyCharm的入门使用教程
下载和安装PyCharm:
首先,访问JetBrains官方网站(https://www.jetbrains.com/pycharm/)下载PyCharm的最新版本。根据您的操作系统选择合适的版本进行下载。
安装完成后,打开PyCharm。 创建新…
建站知识
2025/1/4 14:44:42
C++(学习)2024.9.18
目录 C基础介绍
C特点
面向对象的三大特征
面向对象与面向过程的区别
C拓展的非面向对象的功能
引用
引用的性质
引用的参数
指针和引用的区别
赋值
键盘输入
string字符串类
遍历方式
字符串与数字转换
函数
内联函数
函数重载overload
哑元函数
面向对象基…
建站知识
2025/1/7 17:02:29
AI基础 L26 Introduction to Automated Planning - II
ADL Action Description Language (ADL) is a richer language than STRIPS. It allows for • Positive and negative literals in states • The open world assumption • Quantified variables in goals as well as conjunctions and disjunctions • Conditional effects …
建站知识
2025/1/1 17:54:46
项目管理 | 一文读懂什么是敏捷开发管理
在快速变化的商业环境中,项目管理方式也在不断演进,其中敏捷开发管理因其高效、灵活和适应性强的特点,逐渐成为众多企业和团队的首选。本文将详细解析敏捷开发管理的定义、具体内容及其核心角色,帮助读者全面理解这一先进的项目管…
建站知识
2025/1/4 18:26:39
SpringBoot---------Actuator监控
1、引入依赖 <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-actuator</artifactId>
</dependency> 2、开启配置 management.endpoints.web.exposure.include* 3、启动项目,查看监控…
建站知识
2024/12/28 4:50:05