Browse Source

Merge pull request #378 from Jisll/master

Update for some .md's
deadmoon 1 year ago
parent
commit
e4879aec70
6 changed files with 243 additions and 249 deletions
  1. 93 91
      AUTOMATION.md
  2. 1 1
      CONFS.md
  3. 41 27
      FAQ.md
  4. 22 13
      FEED.md
  5. 69 101
      README.md
  6. 17 16
      SECURITY.md

+ 93 - 91
AUTOMATION.md

@@ -1,91 +1,93 @@
-## Automating a range of operations based on a template. ##
-
-Download the template file and edit it accordingly.
-Then, execute it like this: ```optimizer.exe /config=template.json```
-
-### Download the template: ###
-https://github.com/hellzerg/optimizer/blob/master/templates/optimizer-template.json
-
-### WindowsVersion (required) ###
-* Should match your actual Windows version. Available values: ```7 | 8 | 10 | 11```
-
-### Cleaner ###
-* Choose which target folder you wish to clean by marking ```true```
-
-### Pinger ###
-* Choose your desired DNS provider.
-* Available values: ```Automatic | Cloudflare | OpenDNS | Quad9 | Google | AlternateDNS | Adguard | CleanBrowsing | CleanBrowsing (adult filter)```
-* If you wish to perform DNS cache flushing, set it to ```true```
-* Example:
-```
-"Pinger": {
-    "SetDNS": "Cloudflare",
-    "FlushDNSCache": true
-}
-```
-
-### ProcessControl ###
-* Choose which processes you wish to prevent from running, using their filename.
-* You can remove previously prevented processes, in order to allow them to run again.
-* Example: 
-```
-"ProcessControl": {
-	"Prevent": ["chrome.exe", "firefox.exe"],
-	"Allow": ["opera.exe"]
-}
-```
-
-### Hosts ###
-* Control your hosts entries. ```Add``` list adds the entries, ```Block``` list routes the entries to ```0.0.0.0``` effectively blocking access to them.
-* Example:
-```
-"HostsEditor": {
-    "Block": ["youtube.com", "google.com"],
-    "Add": [
-	    {
-	    	"Domain": "test.com",
-	    	"IPAddress": "192.168.1.5",
-	    	"Comment": "comment is optional"
-	    },
-	    {
-	    	"Domain": "test2.com",
-	    	"IPAddress": "192.168.1.9",
-	    	"Comment": ""
-	    }
-    ]
-}	
-```
-
-### RegistryFix ###
-* You can try enabling core Windows components by marking them ```true```
-* You typically do not need this, unless you are trying to repair a computer from malicious actions
-
-### Integrator ###
-* ```TakeOwnership```: Mark ```true``` to add a "Take Ownership" option in right-click menu. Remove it by marking ```false```
-* ```OpenWithCMD```: Mark ```true``` to add a "Open CMD here" option in right-click menu. Remove it by marking ```false```
-
-### AdvancedTweaks ###
-* Deeply technical tweaks that you should NOT touch, unless you know what you are really doing
-
-* ```UnlockAllCores```: DO NOT use this option. Leave it ```null``` or ```false```.
-* ```DisableHPET```: Enables or disables High Precision Event Timer.
-* ```EnableLoginVerbose```: Enables or disables Detailed Login Screen
-
-#### SvchostProcessSplitting ####
-* Mark it ```true``` and set the amount of ```RAM``` to reduce the svchost.exe processes for optimal memory
-* Mark it ```false``` to enable process splitting for optimal performance
-
-### Tweaks ###
-* Mark the options you want to APPLY to ```true```
-* Mark the options you want to RESET to ```false```
-* Mark the options you want to IGNORE to ```null```
-
-### PostAction ###
-* Final action after executing the template.
-* You may mark ```Restart``` to ```true``` to restart in order to effectively apply the changes.
-* You may choose between different types of restarting by configuring ```RestartType```
-* ```Normal``` performs a normal restart
-* ```SafeMode``` performs a restart in minimal safemode
-
-* ```DisableDefender```: you can disable Windows defender (Windows 10/11 needs this) by going through safemode and returning, everything automated
-* ```EnableDefender```: same, but for enabling Windows defender
+# Automating a Range of Operations Based on a Template
+
+To automate a range of operations using a provided template, follow these steps:
+
+1. **Download the Template**: Obtain the template file from [this link](https://github.com/hellzerg/optimizer/blob/master/templates/optimizer-template.json).
+
+2. **Edit the Template**: Customize the template configuration according to your needs.
+
+3. **Execute the Optimizer**: Run the optimizer executable with the edited template configuration using the command: `optimizer.exe /config=template.json`
+
+## Template Configuration Options
+
+### WindowsVersion (required)
+- Should match your actual Windows version. Available values: `7 | 8 | 10 | 11`
+
+### Cleaner
+- Choose target folders for cleaning by marking them as `true`.
+
+### Pinger
+- Choose DNS provider:
+- Available values: `Automatic | Cloudflare | OpenDNS | Quad9 | Google | AlternateDNS | Adguard | CleanBrowsing | CleanBrowsing (adult filter)`
+- Set FlushDNSCache to `true` to perform DNS cache flushing. Example:
+
+ ```
+ "Pinger": {
+     "SetDNS": "Cloudflare",
+     "FlushDNSCache": true
+ }
+ ```
+
+### ProcessControl
+- Prevent processes from running by providing filenames.
+- Allow previously prevented processes to run again. Example:
+
+ ```
+ "ProcessControl": {
+     "Prevent": ["chrome.exe", "firefox.exe"],
+     "Allow": ["opera.exe"]
+ }
+ ```
+
+### Hosts
+- Manage hosts entries:
+- Entries in the `Block` list route to `0.0.0.0`, effectively blocking access.
+- Entries in the `Add` list are added. Example:
+
+ ```
+ "HostsEditor": {
+     "Block": ["youtube.com", "google.com"],
+     "Add": [
+         {
+             "Domain": "test.com",
+             "IPAddress": "192.168.1.5",
+             "Comment": "comment is optional"
+         },
+         {
+             "Domain": "test2.com",
+             "IPAddress": "192.168.1.9",
+             "Comment": ""
+         }
+     ]
+ }
+ ```
+
+### RegistryFix
+- Enable core Windows components by marking them as `true`. Use for repairing computers from malicious actions.
+
+### Integrator
+- `TakeOwnership`: Add or remove "Take Ownership" option in right-click menu. (`false`)
+- `OpenWithCMD`: Add or remove "Open CMD here" option in right-click menu. (`false`)
+
+### AdvancedTweaks
+- Caution: These tweaks are technical, avoid unless you understand them.
+- `UnlockAllCores`: Leave `null` or `false`.
+- `DisableHPET`: Enable or disable High Precision Event Timer.
+- `EnableLoginVerbose`: Enable or disable Detailed Login Screen.
+
+#### SvchostProcessSplitting
+- Mark `true` to reduce svchost.exe processes for optimal memory.
+- Mark `false` to enable process splitting for optimal performance.
+
+### Tweaks
+- Mark options to apply as `true`.
+- Mark options to reset as `false`.
+- Mark options to ignore as `null`.
+
+### PostAction
+- Final action after template execution:
+- Mark `Restart` as `true` to restart and apply changes.
+- Configure `RestartType` for different restart types (`Normal` or `SafeMode`).
+- Use `DisableDefender` and `EnableDefender` for automated Windows Defender control.
+
+**Note**: Review and customize the template configuration carefully before executing.

+ 1 - 1
CONFS.md

@@ -62,4 +62,4 @@
 ## How to disable/enable HPET (High Precision Event Timer) in order to gain a boost when gaming [use at your own risk!] ##
 
 - ```optimizer.exe /disablehpet```
-- ```optimizer.exe /enablehpet```
+- ```optimizer.exe /enablehpet```

+ 41 - 27
FAQ.md

@@ -1,37 +1,51 @@
-## [FAQ] Frequently Asked Questions ##
+## **Frequently Asked Questions (FAQ)**
 
-- *Do I need to restart my computer for the changes to take effect?*<br>
-Absolutely, yes.
+Welcome to our FAQ section, where we address common queries and concerns regarding our application. We're here to help you make the most out of your experience. If you have a question that isn't covered here, please feel free to reach out to our support team.
 
-- *Do I need to keep the app running in the background?*<br>
-No. You just need to enable your preferred options and restart.
+### **Do I need to restart my computer for the changes to take effect?**
+Absolutely. Restarting your computer is essential for the changes you've made through our application to be applied and fully functional.
 
-- *My Desktop files and documents got suddenly deleted! Why?*<br>
-You shouldn't **Uninstall OneDrive** on a Windows 10/11 with Microsoft-synced account setup.
-It's strongly advised to **Uninstall OneDrive** only on a fresh Windows installation, before
-setting up your Microsoft account.
+### **Do I need to keep the app running in the background?**
+No, you don't need to keep the app running in the background. Once you've enabled your preferred options, simply restart your computer to ensure the changes take effect.
 
-- *How can I disable **Windows Defender** on Windows 10/11?*<br>
-The **Disable Windows Defender** toggle is working only on Windows 7/8/8.1.
-In order to effectively disable **Windows Defender** on Windows 10/11 you need to restart in safe-mode.
-You may easily do this just by executing the app with ```/restart=disabledefender```. This command
-will automatically restart in safe-mode, disable **Windows Defender** and restart in normal-mode_ again.
-You may enable **Windows Defender** again with ```/restart=enabledefender``` at any time.
+### **My Desktop files and documents got suddenly deleted! Why?**
+If you've experienced unexpected file and document deletions on your Desktop, it's possible that these deletions are related to uninstalling OneDrive. It's crucial to avoid uninstalling OneDrive on a Windows 10/11 system with a Microsoft-synced account setup. It's recommended to uninstall OneDrive only on a fresh Windows installation, before setting up your Microsoft account.
 
-- *Should I disable **System Restore**?*<br>
-It's up to you, but keep in mind that by disabling it your current backups will get deleted.
+### **How can I disable Windows Defender on Windows 10/11?**
+Please note that the "Disable Windows Defender" toggle is only functional on Windows 7/8/8.1 systems. To effectively disable Windows Defender on Windows 10/11, follow these steps:
 
-- *Should I disable **Print Service** or **Fax Service**?*<br>
-In case you are actively using printer and/or fax devices, you shouldn't disable them.
+1. Execute the app with the command `/restart=disabledefender`.
+2. This will initiate a restart in safe mode, during which Windows Defender will be disabled.
+3. After the safe mode restart, your system will restart in normal mode with Windows Defender disabled.
+4. You can re-enable Windows Defender at any time using the command `/restart=enabledefender`.
 
-- *I cannot login into **Xbox Live**! Why?*<br>
-Try resetting both **Disable Xbox Live** and **Disable Game Bar**, then restart your computer.
+### **Should I disable System Restore?**
+The decision to disable System Restore is up to you. Keep in mind that disabling it will result in the deletion of your existing backups. Consider the implications and potential risks before making this choice.
 
-- *My digital pen is not working, why?*<br>
-Reset **Disable Windows Ink**, restart your computer and your pen should be functional again.
+### **Should I disable Print Service or Fax Service?**
+If you actively use printer and/or fax devices, it's advisable not to disable these services. Disabling them might hinder your ability to use these devices effectively.
 
-- *My **clipboard history** stopped working, why?*<br>
-Reset **Disable Cloud Clipboard** and it's should be working normally.
+### **I cannot log in to Xbox Live! Why?**
+If you're facing login issues with Xbox Live, follow these steps to troubleshoot:
 
-- *Should I disable **Sensor Services**?*<br>
-If your device is a tablet, has various sensors (proximity, auto-brightness, etc.) or a touch-screen, you shouldn't disable it.
+1. Reset both the "Disable Xbox Live" and "Disable Game Bar" options within our application.
+2. Restart your computer to ensure the changes take effect.
+3. Attempt to log in to Xbox Live again.
+
+### **My digital pen is not working, why?**
+If your digital pen is not functioning, it might be related to the "Disable Windows Ink" setting. To resolve this:
+
+1. Reset the "Disable Windows Ink" option in our application.
+2. Restart your computer.
+3. Your digital pen should now be functional again.
+
+### **My clipboard history stopped working, why?**
+If your clipboard history has stopped working, try these steps:
+
+1. Reset the "Disable Cloud Clipboard" setting in our application.
+2. Verify if the clipboard history is now functioning as expected.
+
+### **Should I disable Sensor Services?**
+If your device is a tablet, has various sensors (proximity, auto-brightness, etc.), or features a touch screen, it's recommended not to disable Sensor Services. These services likely contribute to the functionality of these features on your device.
+
+We hope these answers have provided clarity on common questions. If you require further assistance, please don't hesitate to reach out to our support team for personalized help.

+ 22 - 13
FEED.md

@@ -1,19 +1,29 @@
-## How to include an app in Common Apps using feed.json: ##
+# Including an App in Common Apps using feed.json
 
-* You will need direct links for both x64 and x86 variants (if x64 or x86 is unavailable, just use either one)
-* Official app title
-* A tag, usually the app title - without spaces - preceded by a 'c'
-* A PNG image - needs to be up to 256x256, should not exceed 50kb in size and must be with transparent background
-* The group in which the app will be included to
+To include an app in Common Apps using the `feed.json` file, follow these steps:
 
-## Available groups: ##
+## Prerequisites
 
-* SystemTools
-* Internet
-* Coding
-* GraphicsSound
+You will need the following information:
 
-## Example: ##
+- Direct download links for both x64 and x86 variants of the app (if one variant is unavailable, provide the available variant).
+- Official app title.
+- A tag, usually the app title without spaces, preceded by a 'c'.
+- A PNG image with a transparent background, up to 256x256 pixels in size and not exceeding 50KB.
+- The group in which the app will be categorized.
+
+## Available Groups
+
+Choose one of the available groups to categorize your app:
+
+- SystemTools
+- Internet
+- Coding
+- GraphicsSound
+
+## Example
+
+Here's an example of how to structure your entry in the `feed.json` file:
 
 ```json
 {
@@ -24,4 +34,3 @@
   "Image": "<link_to_png>",
   "Group": "Internet"
 }
-```

+ 69 - 101
README.md

@@ -10,145 +10,113 @@
 	</a>
 </p>
 
-### ℹ️ Summary:
+# ℹ️ Optimizer: Advanced Privacy and Security Configuration Utility
 
-Advanced configuration utility that helps you restore your privacy and increase your security.<br>
-Optimizer is recommended after a fresh, clean installation of Windows to achieve maximum privacy and security.<br>
-Depending on your version of Windows, Optimizer will also allow you to perform some specific tweaks.
+Welcome to Optimizer, an advanced configuration utility designed to enhance your privacy and security on Windows. This tool is highly recommended for use after a fresh installation of Windows to achieve maximum privacy and security benefits. Depending on your Windows version, Optimizer can also help you apply specific system tweaks.
+
+## 🏗️ Key Features:
 
 - Full multilingual support (22 languages available)
-- Speed up your system and network performance
+- Enhance system and network performance
 - Disable unnecessary Windows services
-- Disable Windows telemetry, Cortana and many more
-- Disable Office telemetry (works only with Office 2016)
-- Disable Windows 10 automatic updates
-- Download useful apps quickly at once
+- Turn off Windows telemetry, Cortana, and more
+- Disable Office telemetry (works with Office 2016)
+- Stop automatic Windows 10 updates
+- Download multiple useful apps quickly
 - Uninstall UWP apps
-- Clean your system drive and major browsers' profile data
+- Clean system drive and browser profiles
 - Fix common registry issues
-- Ping IPs and assess your latency
+- Ping IPs and assess latency
 - Search IPs on SHODAN.io
-- Rapidly change DNS server (from a pre-made list)
+- Quickly change DNS server (from a pre-made list)
 - Flush DNS cache
-- Remove unwanted programs running at startup
+- Remove unwanted startup programs
 - Edit your HOSTS file
-- Find file lock handles and kill associated processes
+- Identify and terminate file lock handles
 - Hardware inspection tool
-- Add items in desktop on right-click menu
-- Define custom commands for run dialog
-- Silent run support using a configuration file
-
-<hr>
-
-### ⬇️ Downloads:
-
-https://github.com/hellzerg/optimizer/releases
-
-<hr>
-
-### 🖼️ Screenshots:
-
-https://github.com/hellzerg/optimizer/blob/master/IMAGES.md
-
-<hr>
+- Add items to the desktop right-click menu
+- Define custom commands for the run dialog
+- Support silent runs using a configuration file
 
-### 🆘 How to effectively disable Defender in Windows 10 1903 and later
+## ⬇️ Downloads
 
-Restart in SAFE-MODE and run Optimizer with `/disabledefender` switch
-<br>-OR-<br>
-Execute Optimizer with `/restart=disabledefender` switch and let it do the rest automatically
+Find the latest release of Optimizer on the [Releases](https://github.com/hellzerg/optimizer/releases) page.
 
-<hr>
+## 🖼️ Screenshots
 
-### 🔨 Automation using templating:
+View Optimizer in action through our [Screenshots](https://github.com/hellzerg/optimizer/blob/master/IMAGES.md) collection.
 
-https://github.com/hellzerg/optimizer/blob/master/AUTOMATION.md
+## 🆘 How to Disable Defender in Windows 10 1903 and Later
 
-<hr>
+- Restart in SAFE-MODE and run Optimizer with `/disabledefender` switch
+- OR -
+- Execute Optimizer with `/restart=disabledefender` switch for automated disabling
 
-### 🔨 Command-line options:
+## 🔨 Automation using Templating
 
-https://github.com/hellzerg/optimizer/blob/master/CONFS.md
+Explore the possibilities of automation with Optimizer through our [Automation Guide](https://github.com/hellzerg/optimizer/blob/master/AUTOMATION.md).
 
-<hr>
+## 🔨 Command-line Options
 
-### ❓ Frequently asked questions section:
+Check out the [Command-line Options](https://github.com/hellzerg/optimizer/blob/master/CONFS.md) available for Optimizer.
 
-https://github.com/hellzerg/optimizer/blob/master/FAQ.md
+## ❓ Frequently Asked Questions
 
-<hr>
+Find answers to common queries in the [FAQ Section](https://github.com/hellzerg/optimizer/blob/master/FAQ.md).
 
-### 📜 Changelog:
+## 📰 Changelog
 
-https://github.com/hellzerg/optimizer/blob/master/CHANGELOG.md
+Stay updated with the latest changes through the [Changelog](https://github.com/hellzerg/optimizer/blob/master/CHANGELOG.md).
 
-<hr>
+## 🛡️ Security Policy
 
-### 🛡️ Security policy:
+Learn about our security measures in the [Security Policy](https://github.com/hellzerg/optimizer/blob/master/SECURITY.md).
 
-https://github.com/hellzerg/optimizer/blob/master/SECURITY.md
+## 💻 Compatibility
 
-<hr>
-
-### 🖼️ Early development images:
-
-https://github.com/hellzerg/optimizer/blob/master/LEGACY.md
-
-<hr>
-
-### 💻 Compatibility:
-
-- .NET Framework 4.8.1
+- Requires .NET Framework 4.8.1
 - Compatible with Windows 7, 8, 8.1, 10, 11
-- Can run under Windows Server 2008, 2012, 2016, 2019, 2022 using `/unsafe` switch
-
-<hr>
+- Can run on Windows Server 2008, 2012, 2016, 2019, 2022 using `/unsafe` switch
 
-### 📊 Details:
+## 📊 Details
 
-- Latest version: 15.6
-- Released: July 22, 2023
+- Latest version: 15.6 (Released: July 22, 2023)
 - SHA256: 147FF45704BF458F93E2132AC0EE648AA89DFE44FCDC73C6C880153A948E360A
 
-<hr>
-
-### ☕ Buy me a delicious espresso
-
-Support my hard work by donating me through [PayPal](https://www.paypal.com/paypalme/supportoptimizer)
+## ☕ Support the Developer
 
-<hr>
+If you find this tool useful, consider showing your support by [donating through PayPal](https://www.paypal.com/paypalme/supportoptimizer).
 
-### 🌐 Join our [Discord](https://discord.gg/rZh8BhmmQv) community
+## 🌐 Join our Community
 
-<hr>
+Be a part of our [Discord](https://discord.gg/rZh8BhmmQv) community.
 
-### ❤️ Tools used:
+## ❤️ Credits and Acknowledgments
 
-- [ByteSize](https://github.com/omar/ByteSize) | Thanks for this really tiny, yet extremely useful library
-- ColorPicker | Thanks to cat - https://github.com/vadiscode for the new theme engine
+- [ByteSize](https://github.com/omar/ByteSize) - A useful library by Omar Rahman
+- ColorPicker - Theme engine courtesy of cat ([GitHub Profile](https://github.com/vadiscode))
 
-<hr>
+## ❤️ Translations
 
-### ❤️ Credits for translating:
+We'd like to extend our gratitude to the following contributors for their translations:
 
-- https://github.com/mrkaban - mrkaban for Russian translation
-- https://github.com/theflamehd - theflamehd for German translation
-- https://github.com/Kheasyque - Kheasyque for Turkish translation
-- https://github.com/danielcshn - danielcshn for Spanish translation
-- https://github.com/cassiompf - Cassio for Portuguese translation
-- https://github.com/RAFF47 - RAFF for French translation
-- https://github.com/Ziocash - Ziocash for Italian translation
-- https://github.com/btwise - btwise for Chinese translation
-- https://github.com/tomlonghorn - Tom Longhorn for Czech translation
-- https://github.com/H3XDaemon - H3XDaemon for Taiwanese translation
-- https://github.com/VenusGirl - VenusGirl for Korean translation
-- https://github.com/Wilamaxin - Wilamaxin for Polish translation
-- https://github.com/MesterPerfect - MesterPerfect for Arabic translation
-- https://github.com/BeamingNG - BeamingNG, DefaultUser9148 for Romanian translation
-- https://github.com/svanlaere - svanlaere for Dutch translation
-- https://github.com/kirill0ermakov - Kirill Ermakov for Ukrainian translation
-- https://github.com/Hayao0819 - Yamada Hayao for Japanese translation
-- https://github.com/creeper-0910 - creeper-0910 for Correction of Japanese translation
-- Parwar Andam for Kurdish translation
-- Zan for Hungarian translation
--  https://github.com/MjavadH - MjavadH for Farsi translation
+- Russian: mrkaban
+- German: theflamehd
+- Turkish: Kheasyque
+- Spanish: danielcshn
+- Portuguese: Cassio
+- French: RAFF47
+- Italian: Ziocash
+- Chinese: btwise
+- Czech: Tom Longhorn
+- Taiwanese: H3XDaemon
+- Korean: VenusGirl
+- Polish: Wilamaxin
+- Arabic: MesterPerfect
+- Romanian: BeamingNG, DefaultUser9148
+- Dutch: svanlaere
+- Ukrainian: Kirill Ermakov
+- Japanese: Yamada Hayao, creeper-0910 (Japanese correction)
+- Kurdish: Parwar Andam
+- Hungarian: Zan
+- Farsi: MjavadH

+ 17 - 16
SECURITY.md

@@ -1,30 +1,31 @@
 # Security Policy
 
+Thank you for choosing the Optimizer! We take security seriously and are committed to providing a safe and reliable product. Please read through the following information to ensure you are using the Optimizer to its fullest potential while maintaining a secure environment.
+
 ## Supported Versions
 
+We actively support the following version of the Optimizer:
+
 | Version | Supported          |
 | ------- | ------------------ |
-| 15.x   | :white_check_mark: |
-| < 15.x   | :x:                |
+| 15.x   | ✅                |
+
+If you are using a version older than 15.x, we highly recommend upgrading to the latest version to benefit from the latest security enhancements and features.
+
+## Staying Up to Date
 
-## Best Practice
+To ensure you are benefiting from the latest improvements and security fixes, we strongly advise using the most recent version of the Optimizer. You can easily download the latest version from our official GitHub repository or directly within the app.
 
-it's always recommended to use the latest version of the Optimizer.
-You can always download the new version by the official GitHub of the project
-or inside the app.
+The app is designed to automatically check for updates each time you run it. If an update is available, an icon will be displayed, alerting you to the new version. Before updating, you'll have the opportunity to review the upcoming changes to make an informed decision.
 
-The app will always check for new versions upon each run and an icon will be
-visible in case of an available update.
+## Authenticity Verification
 
-You can review the upcoming changes before you update it.
+It's important to ensure that you are using the official version of the Optimizer. To verify the authenticity of the application, please refer to the SHA256 hash provided on the main page of our GitHub repository. This hash acts as a fingerprint and guarantees that the application has not been tampered with.
 
-Also, ensure that your Optimizer is the original using the latest SHA256 hash
-in the main page of this GitHub.
+## Reporting Security Vulnerabilities
 
-## Reporting a Vulnerability
+If you discover a vulnerability or have security concerns, we encourage you to report them promptly. You can do so by opening an issue on our GitHub repository and providing all the necessary details. We take security-related matters seriously and will promptly address your concerns.
 
-You can always report a vulnerability or a security concern by opening
-an issue and providing all the required details.
+**Note:** We prioritize the security of our users. Therefore, security-related issues reported within the first 24 hours will receive immediate attention. Our dedicated team will work to provide an update as swiftly as possible, typically within 7-10 days.
 
-All security-related issues will be accepted in the first 24 hours
-and an update will be provided as soon as possible (usually 7-10 days).
+Thank you for choosing the Optimizer and being proactive about security. Your collaboration helps us maintain a secure environment for all users.