phpMyAdmin common getshell methods
catalogue
preface
1, View phpMyAdmin version
2, phpmyadmin common getshell methods
1. Premise
2. Website physical path acquisition method
3. Get shell through into outfile
4. Write shell through log file
5. Write shell through slow query
6. Create database and table and write to webshell
summary
preface
phpMyAdmin is a MySQL databa ...
Added by cags on Mon, 21 Feb 2022 15:02:01 +0200
Extract picture color - front end scheme
prefaceLast year, I came up with an idea to extract the theme color of the picture, cooperate with the picture to have an immersive visual effect, and produce a harmonious and consistent feeling. It dawdled until this year to start development~ It took a week to realize this function in two ways: client and server. The two methods have their ow ...
Added by josephicon on Mon, 21 Feb 2022 14:52:35 +0200
efcore uses ShardingCore to realize multi tenancy under sub table and sub database
introduceProtagonist of this issue: ShardingCore A high-performance, lightweight solution for reading and writing separation of tables and databases under ef core, with zero dependency, zero learning cost and zero business code intrusionThe only fully automatic sub table and multi field sub table framework under dotnet has high performance, zer ...
Added by cdorob on Mon, 21 Feb 2022 14:50:25 +0200
Vite2+Vue3+TypeScript: Practice of building enterprise level lightweight framework
introductionAs vue3 is accepted by the majority of developers and its own ecology is gradually improved, more students are improving in the engineering direction of vue3. This article just introduces how to better use vue3 and its surrounding plug-ins, and let them be combined into the whole project.In addition, Vue3's support for Typescript sy ...
Added by webaddict on Mon, 21 Feb 2022 14:42:07 +0200
CCF CSP202109-2 non zero segment division
CCF CSP202109-2 non zero segment division
Title Description
A
1
,
A
2
,
⋯
,
...
Added by think-digitally on Mon, 21 Feb 2022 14:41:25 +0200
STM32 basic review - detailed explanation I ² C (GPIO analog I2C)
preface
This blog is based on your own needs and the needs of the interview position, so I specially come to learn the two common communication protocols SPI and IIC again. The development board used here is STM32F03_MIN I also hope this blog can be of some help to you!
IIC protocol
I ² C. Usually read as "i-Party C", ...
Added by thepriest on Mon, 21 Feb 2022 14:38:43 +0200
Binary tree topic 03
Question 1: Question 617 of force deduction
Problem solving ideas:
reference This article
The code is as follows:
class Solution {
public TreeNode mergeTrees(TreeNode root1, TreeNode root2) {
if(root1 == null) {
return root2;
}
if(root2 == null) {
return root1;
}
TreeNode r ...
Added by guiltyspark on Mon, 21 Feb 2022 14:35:22 +0200
OpenCV function usage details 1 ~ 10, including code examples
It is used to wait for the key. When the user presses the keyboard, the statement will be executed and its return value will be obtained. When delay > 0, the program will wait for the user's key to trigger within a given delay time or wait for a delay time, and the program will continue to execute. If delay = 0, it means that the user must c ...
Added by marknt on Mon, 21 Feb 2022 14:16:54 +0200
Enterprise development - push message to customers - H5-uni
Enterprise and micro development documents: Chat toolbar interface - interface document - enterprise wechat Developer Centerhttps://developer.work.weixin.qq.com/document/path/91789?version=4.0.0.6007&platform=win
Don't think you can move forward with development documents! The road ahead needs you to cut through thorns and thorns~
Step ...
Added by advancedfuture on Mon, 21 Feb 2022 14:16:34 +0200
C language: function 1.0
1. What is the function?
Wikipedia definition of function: subroutine
Subroutine is a part of code in a large program, which is composed of one or more statement blocks. It is responsible for completing a specific task and has relative independence compared with other codes.
Generally, there are input parameters and return values, which prov ...
Added by jimmy2gurpreet on Mon, 21 Feb 2022 14:06:17 +0200