diff --git a/web/api/serializers.py b/web/api/serializers.py index ea177b48..abcce306 100644 --- a/web/api/serializers.py +++ b/web/api/serializers.py @@ -429,15 +429,15 @@ class VisualiseSubdomainSerializer(serializers.ModelSerializer): 'description': 'Informational', 'children': info_serializer.data }) - uknown = vulnerability.filter(severity=-1) - if uknown: - uknown_serializer = VisualiseVulnerabilitySerializer( - uknown, + unknown = vulnerability.filter(severity=-1) + if unknown: + unknown_serializer = VisualiseVulnerabilitySerializer( + unknown, many=True ) vulnerability_data.append({ 'description': 'Unknown', - 'children': uknown_serializer.data + 'children': unknown_serializer.data }) if vulnerability_data: diff --git a/web/scanEngine/static/scanEngine/js/tool_arsenal.js b/web/scanEngine/static/scanEngine/js/tool_arsenal.js index df89e7ae..c5db0ade 100644 --- a/web/scanEngine/static/scanEngine/js/tool_arsenal.js +++ b/web/scanEngine/static/scanEngine/js/tool_arsenal.js @@ -178,7 +178,7 @@ function get_external_tool_latest_version(tool_id, tool_name){ // update available Swal.fire({ title: 'Update available! Version: ' + latest_version, - text: `Your current version of ${ htmlEncode(tool_name)} is v${current_version}, but latest version v${latest_version} is available, please udpate!`, + text: `Your current version of ${ htmlEncode(tool_name)} is v${current_version}, but latest version v${latest_version} is available, please update!`, icon: 'info', confirmButtonText: 'Update ' + htmlEncode(tool_name) }).then((result) => { diff --git a/web/scanEngine/templates/scanEngine/settings/_items/external_tool_form.html b/web/scanEngine/templates/scanEngine/settings/_items/external_tool_form.html index 6dac9bcf..07bff6e5 100644 --- a/web/scanEngine/templates/scanEngine/settings/_items/external_tool_form.html +++ b/web/scanEngine/templates/scanEngine/settings/_items/external_tool_form.html @@ -19,7 +19,7 @@
- If you have choosen this tool as subdomain gathering tool, you'll be able to use it in scan engine configuration and provide this tool name inside uses_tools. If not, you will still be able to use this tool in our custom scripting engine. + If you have chosen this tool as subdomain gathering tool, you'll be able to use it in scan engine configuration and provide this tool name inside uses_tools. If not, you will still be able to use this tool in our custom scripting engine.
@@ -149,7 +149,7 @@
Subdomain Gathering Tool Additional Information
Please note that this subdomain gathering tool must support subdomain output in the form of txt file.
-

Since you have choosen this tool as subdomain gathering tool, we require additional information on how this tool runs.

+

Since you have chosen this tool as subdomain gathering tool, we require additional information on how this tool runs.

reNgine needs to know how this tool accepts target and output the subdomain results.
diff --git a/web/scanEngine/templates/scanEngine/settings/proxy.html b/web/scanEngine/templates/scanEngine/settings/proxy.html index 65638204..45e8ad9e 100644 --- a/web/scanEngine/templates/scanEngine/settings/proxy.html +++ b/web/scanEngine/templates/scanEngine/settings/proxy.html @@ -24,7 +24,7 @@ Proxy Settings

Proxy Settings

Every website has a limit to certain number of requests allowed for a certain period of time from an particular IP Address, exceeding the limit will block any incoming requests from that particular IP Address for a specific period of time. - This results in unreiliable recon results. Suppose if you were to run Nuclei on a particular target with all the templates, your IP is likely to get banned because of the number of requests made by Nuclei. + This results in unreliable recon results. Suppose if you were to run Nuclei on a particular target with all the templates, your IP is likely to get banned because of the number of requests made by Nuclei.
And this is especially true for dorking and other OSINT reNgine does. After certain dorking attempts Google is likely to ban your IP for certain period of time.

@@ -39,7 +39,7 @@ Proxy Settings

Proxy List

You can enter as many proxies as you want, reNgine will randomly pick one among them during the scan.

- + {{form.proxies}} diff --git a/web/scanEngine/templates/scanEngine/settings/report.html b/web/scanEngine/templates/scanEngine/settings/report.html index b7cc8f80..a0e4743c 100644 --- a/web/scanEngine/templates/scanEngine/settings/report.html +++ b/web/scanEngine/templates/scanEngine/settings/report.html @@ -104,7 +104,7 @@ reNgine PDF Report Settings

If turned on, reNgine will include Executive Summary in the report. You can customize the executive summary section.
- Please note that, Exective Summary section will appear before quick summary. + Please note that, the Executive Summary section will appear before quick summary.

You can customize the executive summary and methodology template using markdown. Replace the below syntax wherever you require. Curly braces are must!

Executive Summary Syntax

diff --git a/web/scanEngine/templates/scanEngine/wordlist/add.html b/web/scanEngine/templates/scanEngine/wordlist/add.html index 99d9fa68..e48fd761 100644 --- a/web/scanEngine/templates/scanEngine/wordlist/add.html +++ b/web/scanEngine/templates/scanEngine/wordlist/add.html @@ -43,7 +43,7 @@ Add New Wordlist for Bruteforce

Select the wordlist file

-

Your wordlist must be a *.txt file and wordlists must seperated by new line.

+

Your wordlist must be a *.txt file and wordlists must be separated by a new line.

diff --git a/web/startScan/templates/startScan/detail_scan.html b/web/startScan/templates/startScan/detail_scan.html index 08fac8f8..d15fa943 100644 --- a/web/startScan/templates/startScan/detail_scan.html +++ b/web/startScan/templates/startScan/detail_scan.html @@ -331,7 +331,7 @@ Scan Findings

{{critical_count}} Critical, {{high_count}} High, {{medium_count}} Medium
- {{low_count}} Low {{info_count}} Info and {{unknown_count}} Uknown Vulnerabilities + {{low_count}} Low, {{info_count}} Info, and {{unknown_count}} Unknown Vulnerabilities

{% else %}

Vulnerability scan hasn't been performed.

diff --git a/web/startScan/templates/startScan/schedule_scan_ui.html b/web/startScan/templates/startScan/schedule_scan_ui.html index f40595e1..9d22a436 100644 --- a/web/startScan/templates/startScan/schedule_scan_ui.html +++ b/web/startScan/templates/startScan/schedule_scan_ui.html @@ -91,7 +91,7 @@ Scheduling scan for {{domain.name}} You can import subdomains for {{domain.name}} using your private recon tools.
@@ -101,7 +101,7 @@ Scheduling scan for {{domain.name}} You can import subdomains for {{domain.name}} using your private recon tools.
diff --git a/web/startScan/templates/startScan/start_scan_ui.html b/web/startScan/templates/startScan/start_scan_ui.html index 69366fdc..bd3e57b6 100644 --- a/web/startScan/templates/startScan/start_scan_ui.html +++ b/web/startScan/templates/startScan/start_scan_ui.html @@ -47,7 +47,7 @@ Initiating scan for {{domain.name}} You can import subdomains for {{domain.name}} using your private recon tools.
@@ -57,7 +57,7 @@ Initiating scan for {{domain.name}} You can import subdomains for {{domain.name}} using your private recon tools.
diff --git a/web/targetApp/templates/organization/add.html b/web/targetApp/templates/organization/add.html index 176a6e11..1291ac6e 100644 --- a/web/targetApp/templates/organization/add.html +++ b/web/targetApp/templates/organization/add.html @@ -25,7 +25,7 @@ Add Organization
-

Organizations can be used to bundle the targets, an organization can have multiple targets. You will be able to scan the organizations just like the targets, but scanning the organization will allow you to scan all the targets wihtin the organization together.

+

Organizations can be used to bundle the targets, an organization can have multiple targets. You will be able to scan the organizations just like the targets, but scanning the organization will allow you to scan all the targets within the organization together.

{% csrf_token %}
diff --git a/web/targetApp/templates/target/add.html b/web/targetApp/templates/target/add.html index 5bff0235..6e2998e6 100644 --- a/web/targetApp/templates/target/add.html +++ b/web/targetApp/templates/target/add.html @@ -126,9 +126,9 @@ Add or Import Targets
-