diff --git a/tools/dsh/README.md b/tools/dsh/README.md
index 3302f959193532ea061ace2f472a0e4e10ecf208..b2cbeb6c3cb3b4e6385d166bc136deebb382dfd0 100644
--- a/tools/dsh/README.md
+++ b/tools/dsh/README.md
@@ -6,8 +6,7 @@
 
 **dsh** allows you to:
 
-- Execute commands on remote peers in a DHT network.
-- Establish connections with peers and execute binaries on their side.
+- Establish connections with peers and execute binaries on their side. Default binary: **bash**
 
 
 ### Options
diff --git a/tools/dvpn/README.md b/tools/dvpn/README.md
index 15aea4fcdaba54a29b6f0d5c79fc2756b7d222d6..0d4b97bc25819cdf5f0d89cf0e39b7b5a39eda1e 100644
--- a/tools/dvpn/README.md
+++ b/tools/dvpn/README.md
@@ -10,7 +10,7 @@
 - **Client-Server Model**: Supports both server and client modes for flexible deployment.
 - **TUN Interface**: Implements a TUN interface for network communication.
 - **VPN Security**: Ensures secure communication channels using cryptography and identity verification.
-- **Configuration Flexibility** : Modify configuration settings and the setup script independently, avoiding the need to rebuild the entire project..
+- **Configuration Flexibility** : Modify configuration settings and the setup script independently, avoiding the need to rebuild the entire project.
 
 ## Configuration
 
@@ -39,12 +39,12 @@ Before using **dvpn**, follow these steps to update your configuration:
 
 To run a dvpn server, you can use the following command:
 ```shell
-sudo ./dvpn -l
+sudo ./dvpn -d <YAML_FILE> -l
 ```
 
 To connect to a dvpn server, you can use the following command:
 ```shell
-sudo ./dvpn <server_identifier>
+sudo ./dvpn -d <YAML_FILE> <server_identifier>
 ```
 
 **Note**: **dvpn** requires sudo privileges to create and configure TUN interfaces on both the client and server sides.