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.
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.
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.
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 SettingsIf 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!
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.
{{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
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.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.