Skip to content

Files

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Latest commit

35f764f · Nov 5, 2020

History

History
25 lines (20 loc) · 1.05 KB

File metadata and controls

25 lines (20 loc) · 1.05 KB

Wifi Connection Finder

Introduction

Wifi Connection finder is a python script that list all wifi connected to your device.It uses the concept of subprocess
The subprocess module present in Python(both 2.x and 3.x) is used to run new applications or programs through Python code by creating new processes. It also helps to obtain the input/output/error pipes as well as the exit codes of various commands

In order to get the information about the wifi devices system is connected to we will use the command given below

subprocess.check_output(['netsh', 'wlan', 'show', 'profiles'])

How to use the code

1. Download the given code
2. Run the wififinder.py file
3. All the devices connected to wifi will be listed as ordered list

Output

endpoint

built with love

Check out my Github profile Tejas1510!