CTF [network security laboratory] [basic level]
Basic pass
1. Where is the key?
F12 view source code
2. Encrypt again and you will get the key
The encrypted data is xrlvf23xfqwsxsqf
We can encrypt it once.
ROT13 online decoding tool
3. Guess how many times it has been encrypted?
Encrypted string:
Vm0wd2QyUXlVWGxWV0d4V1YwZDRWMVl3WkRSV01WbDNXa1JTVjAxV2JETlhhMUpUVmpBeFYyS
kVUbGhoTVVw ...
Posted by madcrazy1 on Sat, 19 Feb 2022 14:46:26 +0100
Using vuecli to quickly create a vue3 project
Tip: the following is the main body of this article for reference only
1, Install the latest Vue cli
Official website: https://cli.vuejs.org/
About older versions Vue CLI package name changed from Vue CLI to @ vue/cli. If you have globally installed the old version of Vue CLI (1. X) Or 2 x) , you need to use NPM uninstall Vue cli - ...
Posted by Dimensional on Sat, 19 Feb 2022 14:41:57 +0100
Poisson regression model for time series data
Poisson and Poisson like regression models are often used in count based data sets, that is, data containing integer counts. For example, the number of people entering the hospital emergency room per hour is such a data set.
Linear or nonlinear models based on ordinary least squares regression (such as linear models based on neural network reg ...
Posted by The Bat on Sat, 19 Feb 2022 14:39:32 +0100
Redis distributed Session
Redis distributed Session
Spring-Session
Spring seesion solves the problem of sharing distributed session s.
introduce
Spring Session is one of the projects of spring. GitHub address: https://github.com/spring-pro.
Spring Session provides a perfect solution for creating and managing servlet httpsessions.
function
spring Se ...
Posted by mattcass on Sat, 19 Feb 2022 14:21:56 +0100
Django realizes paging function
In this section, we will introduce the advanced modules provided by Django. Through the study of advanced modules, you will feel that Django is so easy to use, but at the same time it is very complex. Therefore, when learning such a heavy framework as Django, we must remember to be impatient and dare to explore new knowledge, In addition to fol ...
Posted by Motionographer on Sat, 19 Feb 2022 14:21:08 +0100
Build Prometheus+Grafana+Alertmanager
1. Principles and Features (Functions)
1. Main features
Multidimensional data model (Time series consists of metric name and labels for k/v)Flexible Query Language ( PromQL)Distributed storage without dependencies; Single-node servers are autonomousUse http protocol, pull mode to pull data, easy to understandMonitoring objectives, which can b ...
Posted by PHP Man on Sat, 19 Feb 2022 14:02:56 +0100
leetcode-236. Nearest common ancestor of binary tree
leetcode-236. Nearest common ancestor of binary tree
deque method
class Solution {
public:
deque<TreeNode*> dqp;
deque<TreeNode*> dqq;
bool findNode(TreeNode* root, deque<TreeNode*>& dq, TreeNode* target) {
dq.push_back(root);
if(root == target) {
return true;
}
bool ret = false;
if(root->left) ...
Posted by BLINDGUY on Sat, 19 Feb 2022 13:48:41 +0100
Introduction to Shell programming
Introduction to Shell programming
Symbols of references:
Single quotation mark: WYSIWYG
Double quotation marks: parse variables (treat the input as a whole)
Backquotes: parsing commands
No quotation marks: similar to double quotation marks
Why learn Shell programming Shell will be widely used in Linux system, and we also need to ...
Posted by Salsaboy on Sat, 19 Feb 2022 13:43:00 +0100
Actual combat: topological distribution constraint of k8s-2022.2.19
catalogue
Experimental environment
Experimental environment:
1,win10,vmwrokstation Virtual machine;
2,k8s Cluster: 3 sets centos7.6 1810 Virtual machine, 1 master node,2 individual node node
k8s version: v1.22.2
containerd://1.5.5
Experimental software
Link: https://pan.baidu.com/s/1CAC9j5yU-sg-aDfLPYVflg?pwd=b3jp Extraction co ...
Posted by jason257 on Sat, 19 Feb 2022 13:36:02 +0100
leetcode 2D search
Today is the 43 articles on LeetCode. Let's take a look at the 74 questions in LeetCode, search two-dimensional matrix and search two-dimensional matrix.
The official difficulty of this question is Medium, and the pass rate is 36%. Different from the previous questions, this question has a very high praise ratio, 1604 likes and 154 opposes. ...
Posted by martinco on Sat, 19 Feb 2022 13:26:10 +0100