Tag Archives: iis

IIS publishing Net core 3.1 error [How to Solve]

First, confirm that IIS is installed successfully

The above results are shown in the following figure. Turn on or turn off the windows function to turn on the IIS service

3. A file is required for IIS to interface with the core

.Net core Windows Server Hosting , the latest version is dotnet-hosting-2.2.3-win.exe, (click download)

After installation

Change configuration

After that, it will be published, copied and pasted to

Focus, if it fails, open the log file to see the reason

1. My problem is that the XML file is missing. Copy the XML file in the code to the publishing results folder

2. Open the config file and change stdoutlogenabled = “true”

 

Guide to using Windows expand suggester

Guide to using Windows expand suggester

Introduction

The function of windows expand suggester is just like its name. When we use it to detect a certain system, it will tell us which expansits the system may use. However, because the tool first assumes that a system has all relevant vulnerabilities, and then eliminates them according to the patch information, the false alarm rate will be higher. For example, a machine does not enable IIS service, but the tool may false report IIS related vulnerabilities

using

First, go to GitHub and download it:
https://github.com/GDSSecurity/Windows-Exploit-Suggester
step1

mark

After running the above command, you can see that there will be another XLS file in the tool directory, which is equivalent to all vulnerability databases.

mark

 

step2

Install xlrd

 

mark

 

step3

Get the systeminfo information of the target system and save it in a directory that you can control

 

systeminfo.exe&>C:\Users\test\Desktop\systeminfo.txt

Step4
after getting the systeminfo information file, we just need to compare the file with the XLS file we just downloaded, and windows expand advisor can give us suggestions!

pythonpythonwindows-exploit-suggester.py-d2018-08-06-mssb.xls-isyteminfo.txt

-The path of systeminfo file is followed by I’m copying it to the same directory as the tool

mark

summary

Generally speaking, this tool is quite convenient when it is used to raise rights, but the operation is a little cumbersome, and it also needs to export the systeminfo file and so on.