Difference between revisions of "WebScanPro"

From Embedded Lab Vienna for IoT & Security
Jump to navigation Jump to search
(WebScanPro is a web application which scans and analyzes HTTP security headers.)
 
m (fixed typo)
Line 39: Line 39:
Open '''localhost:3000'''
Open '''localhost:3000'''


<small>'''Hint:''' if this port is already in use, you can change <syntaxhighlight lang="cpp">app.listen(3000)</syntaxhighlight> it in <code>nest-js-server/main.ts</code> to another port which is not in use.</small>
<small>'''Hint:''' if this port is already in use, you can change <syntaxhighlight lang="cpp">app.listen(3000)</syntaxhighlight> in <code>nest-js-server/main.ts</code> to another port which is not in use.</small>


=== Step 6 ===
=== Step 6 ===

Revision as of 19:51, 23 January 2024

Summary

WebScanPro is a web application designed for the analysis of HTTP security headers. Developed with a user-friendly interface and robust scanning capabilities, WebScanPro helps developers to strengthen the security of their web applications.

Requirements

Architecture

Frontend:

Backend:


Description

Step 1

Install Node.js

Step 2

Clone WebScanPro respository

Step 3

Run npm install

Step 4

Run npm start

Step 5

Open localhost:3000

Hint: if this port is already in use, you can change

app.listen(3000)

in nest-js-server/main.ts to another port which is not in use.

Step 6

Start scanning your web application and check the results. Have fun!