From 90e451c0bdd5844aa8ea6b0c767a1d1c3336ebbc Mon Sep 17 00:00:00 2001
From: Omar Santos <santosomar@gmail.com>
Date: Wed, 31 May 2023 22:02:57 -0400
Subject: [PATCH] Update subdomain_finder_in_python.md

---
 .../recon_scripts/dns_recon/subdomain_finder_in_python.md       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/programming_and_scripting_for_cybersecurity/recon_scripts/dns_recon/subdomain_finder_in_python.md b/programming_and_scripting_for_cybersecurity/recon_scripts/dns_recon/subdomain_finder_in_python.md
index 439dfc3..7798361 100644
--- a/programming_and_scripting_for_cybersecurity/recon_scripts/dns_recon/subdomain_finder_in_python.md
+++ b/programming_and_scripting_for_cybersecurity/recon_scripts/dns_recon/subdomain_finder_in_python.md
@@ -3,7 +3,7 @@
 The following is a sample Python script to find subdomains using DNS. This script is using the `dns.resolver` module from the `dnspython` library. If you don't have the library installed, you can install it using pip:
 
 ```
-pip install dnspython
+pip3 install dnspython
 ```
 
 The following is the Python script that can be used to find subdomains for a given domain using a provided wordlist file: