Linux series installs a new hard disk on the server and mounts it to the specified directory
edge
Recently, the server's hard disk has reached 91. In order to prevent the disk from hanging up due to insufficient storage, we plan to mount some things that are not commonly used and occupy more memory elsewhere. In order to keep consistent with the original path, you may need to add a soft connection or hard connection. In order to preve ...
Added by Scotty2024 on Wed, 23 Feb 2022 12:45:11 +0200
CentOS 7 installation, configuration, beautification of Transmission and seed making tutorial
prefaceRecently, I set up a vps from hetzner. I think I can't be idle. After all, I'm also a G-tube. I just recently entered the pit of PT. Then install a Transmisson to hang PT and become a big brush O(∩∩) O~~This article covers:Installing Transmission 2.94web UI beautificationTransmission seed makinginstallTransmission is included in ...
Added by ltbaggz on Wed, 23 Feb 2022 12:38:54 +0200
Apache APIs IX integrates with HashiCorp Vault, adding another member to the ecosystem
With the rise of micro service architecture, maintaining service security has become more challenging than before. Multiple back-end server instances using a single static key to access the database server will bring huge risks. If the key certificate is leaked, the whole system will be affected. In order to solve the impact of key certificate ...
Added by Ron Woolley on Wed, 23 Feb 2022 12:29:30 +0200
WinDbg setting debugging symbol path and debugging symbol download (one article is enough)
preface
Debugging symbols are convenient for reverse analysts to quickly find the key position when analyzing the program, and also help reverse analysts understand the function and code logic of the program. It is a powerful tool for people engaged in dynamic analysis of winbg.
WinDbg symbol settings
The first step in using WinDbg is natura ...
Added by jorje on Wed, 23 Feb 2022 12:26:26 +0200
RabbitMQ learning notes
Basic concepts and principles of RabbitMQ
AMQP, namely Advanced Message Queuing Protocol, is an open standard of application layer protocol, which is designed for message oriented middleware. RabbitMQ is an open source AMQP implementation, and the server side is written in Erlang language. Channel - Channel is the most important interface f ...
Added by rhodrykorb on Wed, 23 Feb 2022 12:24:04 +0200
[Javascript Design Mode] responsibility chain mode
Make multiple objects have the opportunity to process the request, so as to avoid the coupling relationship between the sender and receiver of the request, connect these objects into a chain, and pass the request along the chain until an object can process it. These objects in the transmission chain are called nodes.
In practical application ...
Added by brandtj on Wed, 23 Feb 2022 12:20:53 +0200
HTML5 basic summary
1. html skeleton (page fixed structure)
Whole, head, title, body
<html>
<head>
<title>Title of web page</title>
</head>
<body>
Main content of web page
</body>
</html>
html tag: the whole of web page Head tag: the head of a web page Body tag: the body o ...
Added by pinehead18 on Wed, 23 Feb 2022 12:16:24 +0200
How to use Apache APIs IX CSRF security plug-in to intercept cross site forgery attacks
CSRF (Cross Site Request Forgery), that is, cross site request forgery. The key point of launching cross site request forgery attack is to make the target server unable to distinguish whether the source of many requests is a real user or an attacker. The general process of attack is as follows: first, the attacker will induce the user to naviga ...
Added by coollog on Wed, 23 Feb 2022 12:02:46 +0200
Elastic Stack log analysis - detailed explanation of elastic search document analyzer
1. Document analysis
analysis includes the following processes:
Dividing a piece of text into independent entries suitable for inverted indexing;Unify these entries into a standard format to improve their "searchability", or recall;
when the analyzer performs the above work, it actually encapsulates three fu ...
Added by makeshift_theory on Wed, 23 Feb 2022 11:58:18 +0200
Read HTTP request [HttpServletRequest]
1. Understand the method
System.out.println("Request protocol name:"+req.getProtocol());
System.out.println("Request method:"+req.getMethod());
System.out.println("Application context path/App Name:"+req.getContextPath());
System.out.println("Resource path/servletPath: "+req.getServletPath());
System.out.println("The key in the request h ...
Added by blacksharkmedia on Wed, 23 Feb 2022 11:57:16 +0200