payload season 9 recurrence for liangshen based on white list Regsvr32

0x00 Regsvr32 introduction: The Regsvr32 command is used to register COM components. It is a command provided by Windows system to register or uninstall controls with the system, and runs in command line mode. Regsvr32.exe of WinXP and above system is under windows\system32 folder; regsvr32.exe of 2000 system is under winnt\sy ...

Posted by okuto1973 on Mon, 18 Nov 2019 17:15:37 +0100

[Go] gocron source reading - slicing interface and type synthesis in go

// getCommands func getCommands() []cli.Command { command := cli.Command{ Name: "web", Usage: "run web server", Action: runWeb, Flags: []cli.Flag{ cli.StringFlag{ Name: "host", Value: "0.0.0.0", Usage: "bind host", }, ...

Posted by andycole on Thu, 14 Nov 2019 18:52:34 +0100

socket programming 15: how to keep the server listening to the client's requests?

The previous program, no matter the server or the client, has a problem, that is, it exits immediately after processing a request, which is not of great practical significance. Can you always accept requests from clients like a Web server? Yes, just use the while loop. Modify the echo program so that the server can continuously ...

Posted by smacpettit on Mon, 11 Nov 2019 19:48:26 +0100

nginx domain name configuration virtual host

A domain name, corresponding to an IP addressThrough DNS domain name resolution server, domain name can be resolved to IP address HereSpecify the IP address of the domain name by modifying the host file host hijackingIn the host file, configure the domain name and IP address. When accessing the domain name,Because the IP address corresponding ...

Posted by erwt on Fri, 01 Nov 2019 20:51:28 +0100

Alibaba cloud Kubernetes CSI practice - dynamic cloud disk volume

Environmental preparation For cluster creation, dependency configuration and CSI plug-in deployment, please refer to: CSI deployment details Create dynamic PV Create a dynamic volume PV from the following template: apiVersion: v1 kind: PersistentVolumeClaim metadata: name: disk-pvc spec: accessModes: - ReadWriteOnce resources: reque ...

Posted by CleoK on Tue, 29 Oct 2019 19:58:08 +0100

P4RUNTIME GRPC experiment

Read the test documents: PI/proto/demo_grpc/README.md Environmental configuration In this experiment, grpc server opened a web service on port 8888, while my experiment was run in a container on the server, so I couldn't use the browser. So add a port mapping to the container, mapping 18888 to 8888. #Stop our container docker stop p4-rt #Buildi ...

Posted by ramblix on Tue, 15 Oct 2019 16:25:51 +0200

Docker Container Communication and External Network Communication

Inter-Container Communication 1. Network Sharing of Containers The docker container in this mode will share a network stack so that efficient and fast communication between the two containers can be achieved using localhost. Used for communication between web server and application server.   # ...

Posted by kickstart on Tue, 08 Oct 2019 17:02:30 +0200

Smooth upgrade and rollback of Nginx version in 1 minute

Nginx is a knowledge point for operation, maintenance, development and testing. Many articles about Nginx have been written before. Nginx Service Introduction and Installation Introduction to Nginx Service Profile Nginx Configuration Virtual Host Nginx reverse proxy load balancing configuration Nginx+Tomcat Multi-instance and Load Balancing Co ...

Posted by zingbats on Tue, 10 Sep 2019 09:15:54 +0200

Handwritten Mini Spring MVC Framework

Preface Learning how to use Spring, Spring MVC is very fast, but in the process of future use, it is inevitable to want to explore the principles behind the framework. This article will explain how to write a simple version of Spring MVC framework by hand, directly look at the framework from the code of request distribution, control inversion a ...

Posted by andreasb on Fri, 30 Aug 2019 05:46:40 +0200

How to deploy node+mongodb project on Aliyun server and optimize its performance

1. Process Develop front-end and back-end programs.Buying Servers and Domain NamesInstall the required environment on the server (this project is node and mongodb)Open Port on Server and Setting RulesProvide HTTP services or set up proxies with nginx, apache, or tomcatUpload project code or use code cloud or gihub to pull your code to the serve ...

Posted by luv2sd on Tue, 27 Aug 2019 12:34:06 +0200