Introduction to SQL server manual injection
Catalog
0x01 SQL server Foundation
0x02 basic injection
Some versions of SQL server have been installed by hackers. Please check the details at the end of this article.
0x01 SQL server Foundation
Before learning to inject, the most important thing is to understand the specific things of SQL server, so as to better inject operations.
System libr ...
Posted by mikem562 on Sat, 26 Oct 2019 13:26:43 -0700
Interceptor of springboot
This article will talk about interceptors. It is convenient to register interceptors in springboot. There are about two steps:
1. Implement HandlerInterceptor interface to create interceptor
2. Implementation of WebMvcConfigurer interface configuration interceptor
Let's use a simple example to roughly show the following specific use:
Sce ...
Posted by cassius on Sat, 26 Oct 2019 13:11:42 -0700
Maximum suborder sum
https://www.acwing.com/problem/content/137/
The common way is to find the sum of prefixes. The maximum value of sum[i]-sum[j] is to enumerate each sum[i], that is, the right endpoint. For each number, find the left endpoint of the largest sum[j], and then find the maximum value.
In the process, it can be optimized. For each right endpoin ...
Posted by katie77 on Sat, 26 Oct 2019 12:43:31 -0700
Python notes 4 tuple s
Tuples are enclosed in parentheses (), where the elements are separated by commas. An element in a tuple is of any type. Tuples can be seen as a sequence that combines list or string attributes.
Tuples are sequences. Similar to lists or strings, indexing and slicing are still applicable.
Element in t ...
Posted by harvillo on Sat, 26 Oct 2019 12:39:59 -0700
[JavaScript] in depth understanding of call and the difference with apply and bind
I. call
call has two wonderful functions
1. Inheritance (I mentioned in the previous article that call is used to implement call inheritance. If you are interested, you can read it. https://www.cnblogs.com/pengshengguang/p/10547624.html)
2. Modify the direction of this when the function is running (to be said today)
// Code segment 1
var ...
Posted by silversinner on Sat, 26 Oct 2019 12:04:50 -0700
Flask login exercise
Login based on blueprint CBV mode
Use blueprint and cbv mode to complete login function
Jump to the home page after login
Save the session in the redis database on liunx
Verify whether it is the login user by using "before" request
blueprint
from flask import Blueprint,render_template,redirect,views,request,session
user = B ...
Posted by Petty_Crim on Sat, 26 Oct 2019 12:00:19 -0700
Using docker to build php+nginx+mysql development environment on Mac
I. preparationAdvantages of Docker to build environment:
Simple operation, rapid construction and environmental isolation
Common Docker operation commands and parameters:
docker search # Find image from Docker Hub
docker images # View local mirror list
docker pull # Pull or update the specified image from the image warehous ...
Posted by cmburns69 on Sat, 26 Oct 2019 11:48:56 -0700
sqlite3 open, sqlite3 exec, slite3 close
sqlite3_open
SQLite3 open function prototype:
int sqlite3_open(
const char *filename, /* Database filename (UTF-8) */
sqlite3 **ppDb /* OUT: SQLite db handle */
);
SQLite3 open is used to connect and open a database. If the database does not exist, a database file will be created and opened under the specified ...
Posted by webmazter on Sat, 26 Oct 2019 10:57:27 -0700
Java basic course - thread communication
Thread communication: wait, wake up
Object method
These methods can only be called when they have resources
notify
Wake up a thread. Wake up is not executed immediately, but wait for CPU allocation
wait
Wait, release lock, do not occupy CPU resources
notifyAll
Wake up all waiting threads
Key points: effective utilization of resource ...
Posted by chinto09 on Sat, 26 Oct 2019 09:04:23 -0700
[series] - go in API routing middleware signature verification
overview
First, synchronize the following project overview:
The last article shared that Jaeger link tracking, a routing middleware, had an unexpected response. The "Go China" public account was also forwarded. Many friends joined me to communicate with each other and called me "God". In fact, what God am I? It's just a loc ...
Posted by hustler on Sat, 26 Oct 2019 03:13:21 -0700