jenkins
DAST is the abbreviation of Dynamic Application Security Testing, that is, Dynamic Application Security Testing. It is a kind of application security testing, which corresponds to SAST and belongs to black box testing.
Advantages of DAST
Language independent Quickly discover those vulnerable vulnerabilities (XSS, SQL Injection, etc.) ...
Posted by crackfox on Fri, 26 Aug 2022 02:00:31 +0300
Alibaba cloud server cannot send e-mail. Three solutions to disable port 25
Sharing makes people happy. The pits encountered are shared to you through blog posts, and solutions are summarized to save more people valuable time to do other things, so I decided to write this blog post;
Alibaba cloud failed to send SMTP mail. Alibaba cloud se ...
Posted by iamtom on Wed, 18 May 2022 17:40:27 +0300
Jenkins deploys SpringBoot application to remote server
Using SpringBoot and SpringCloud to write background services also introduces the popular concept of micro services, and there are many modules. Jenkins is used as a continuous integration tool to facilitate early testing and later online deployment and update.
structure
Server structur ...
Posted by redtux on Sun, 08 May 2022 12:17:25 +0300
Installation environment
The test environment uses Ubuntu 16 04 Check whether JDK is installed. If not, install it first.
sudo apt-get update
sudo apt-get install openjdk-8-jdk
Command line installation
Either command line installation or war package installation. Command line installation executes the following commands in turn
wget -q - ...
Posted by jack_ on Mon, 02 May 2022 12:53:54 +0300
I What is automated container deployment
in short, we just need to click (or trigger through gitlab hook), and the code will automatically complete construction - > image generation - > container deployment. Compared with traditional deployment, it can save many steps, especially suitable for agile development projects with ...
Posted by Natty_Dreadlock on Wed, 27 Apr 2022 07:51:45 +0300
Take the golang build project as an example.
New task
Enter a task name
Choice: build a free style software project
Optional: you can also copy the created task
Confirm submission
to configure
Edit the task you just created again
describe
To describe your project, you can write the following information.
entr ...
Posted by shahryar on Mon, 25 Apr 2022 18:29:54 +0300
Implementation process:
Manually deploy Java projects to back-end Web Clusters
1. Build Nginx+Tomcat cluster architecture.2. Develop and submit Java source code to Gitlab warehouse.3. Manually obtain the Java source code, and then compile it with Maven.4. Deploy the compiled War package to the backend Tomcat cluster.5. Access the test through ...
Posted by gelwa on Thu, 07 Apr 2022 05:15:07 +0300
Docker
Docker introduction
https://docs.docker.com/
docker run --name nginx-test -p 8080:80 -d nginx
docker run --rm -d -p 40001:3000 jayfong/yapi:play
# Default administrator account: admin@docker.yapi , administrator password: adm1n
What is Docker
Docker is an open platform integrating packaging, running, testing and publishingWe can ...
Posted by franklyn on Sun, 03 Apr 2022 13:33:42 +0300
stay Jenkins integrated Robot Framework This paper introduces how Jenkins integrates the Robot Framework test framework. This paper introduces how to display the test results in the email report (such as pass rate, test report link and other parameters).
The Robot Framework plug-in returned the following parameters:
${ROBOT_FAILEDCASES} - lis ...
Posted by hrosas on Sun, 03 Apr 2022 06:13:17 +0300
Continuous integration (CI) refers to the frequent integration of code into the backbone. The purpose of continuous integration is to enable products to iterate quickly and maintain high quality. It generally includes code pulling, construction, testing, deployment and other steps. Jenkins is a popular open source continuous integration tool, w ...
Posted by qt4u on Sat, 26 Mar 2022 17:41:58 +0300