{"id":16271097,"url":"https://github.com/morpheuslord/winfihack","last_synced_at":"2025-10-04T19:31:53.014Z","repository":{"id":225840970,"uuid":"767007647","full_name":"morpheuslord/WinFiHack","owner":"morpheuslord","description":"A windows Wifi Brute forcing utility which is an extremely old method but still works without the requirement of external dependencies.","archived":false,"fork":false,"pushed_at":"2024-07-13T06:01:01.000Z","size":72,"stargazers_count":74,"open_issues_count":0,"forks_count":16,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-10T21:20:02.774Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/morpheuslord.png","metadata":{"files":{"readme":".github/README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-04T14:39:12.000Z","updated_at":"2025-01-06T23:55:46.000Z","dependencies_parsed_at":"2024-03-04T16:37:15.374Z","dependency_job_id":"d7808c93-9356-4e37-8718-fac216635b0f","html_url":"https://github.com/morpheuslord/WinFiHack","commit_stats":null,"previous_names":["morpheuslord/winfihack"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morpheuslord%2FWinFiHack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morpheuslord%2FWinFiHack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morpheuslord%2FWinFiHack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morpheuslord%2FWinFiHack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/morpheuslord","download_url":"https://codeload.github.com/morpheuslord/WinFiHack/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235300327,"owners_count":18967736,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-10T18:12:26.196Z","updated_at":"2025-10-04T19:31:47.638Z","avatar_url":"https://github.com/morpheuslord.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WinFiHack\n\n```bash\n__        ___       _____ _ _   _            _\n\\ \\      / (_)_ __ |  ___(_) | | | __ _  ___| | __\n \\ \\ /\\ / /| | '_ \\| |_  | | |_| |/ _` |/ __| |/ /\n  \\ V  V / | | | | |  _| | |  _  | (_| | (__|   \u003c\n   \\_/\\_/  |_|_| |_|_|   |_|_| |_|\\__,_|\\___|_|\\_\\\n```\n\nWinFiHack is a recreational attempt by me to rewrite my previous project [Brute-Hacking-Framework's](https://github.com/morpheuslord/Brute-Hacking-Framework-SourceCode) main wifi hacking script that uses netsh and native Windows scripts to create a wifi bruteforcer. This is in no way a fast script nor a superior way of doing the same hack but it needs no external libraries and just Python and python scripts.\n\n## Installation\n\nThe packages are minimal or nearly none 😅. The package install command is:\n\n```bash\npip install rich pyfiglet\n```\n\nThats it.\n\n## Features\n\nSo listing the features:\n\n- _Overall Features:_\n  - We can use custom interfaces or non-default interfaces to run the attack.\n  - Well-defined way of using netsh and listing and utilizing targets.\n  - Upgradeability\n- _Code-Wise Features:_\n  - Interactive menu-driven system with `rich`.\n  - versatility in using interface, targets, and password files.\n\n## How it works\n\nSo this is how the bruteforcer works:\n\n```mermaid\nsequenceDiagram\n    participant User\n    participant Tool\n    participant Interface\n    participant Network\n    participant File\n    participant Attack\n\n    User-\u003e\u003eTool: Provide interface (default: Wi-Fi)\n    Tool-\u003e\u003eInterface: Disconnect all active network connections\n    Interface-\u003e\u003eNetwork: Search for all available networks\n    User-\u003e\u003eTool: Set target network\n    User-\u003e\u003eTool: Input password file (default: ./wordlist/default.txt)\n    Note over Tool: Ready to run the attack\n    Tool-\u003e\u003eAttack: Begin password loop\n    loop For each password\n        Attack-\u003e\u003eFile: Generate and store custom XML\n        Attack-\u003e\u003eNetwork: Attempt connection\n        Network-\u003e\u003eAttack: Verify connection (1 packet ping to Google)\n        alt Ping successful\n            Attack-\u003e\u003eUser: Connection established (Success)\n        else Ping failed\n            Attack-\u003e\u003eUser: Output failed\n        end\n    end\n```\n\n- _Provide Interface:_\n\n  - The user is required to provide the network interface for the tool to use.\n  - By default, the interface is set to `Wi-Fi`.\n\n- _Search and Set Target:_\n\n  - The user must search for and select the target network.\n  - During this process, the tool performs the following sub-steps:\n    - Disconnects all active network connections for the selected interface.\n    - Searches for all available networks within range.\n\n- _Input Password File:_\n\n  - The user inputs the path to the password file.\n  - The default path for the password file is `./wordlist/default.txt`.\n\n- _Run the Attack:_\n\n  - With the target set and the password file ready, the tool is now prepared to initiate the attack.\n\n- _Attack Procedure:_\n  - The attack involves iterating through each password in the provided file.\n  - For each password, the following steps are taken:\n    - A custom XML configuration for the connection attempt is generated and stored.\n    - The tool attempts to connect to the target network using the generated XML and the current password.\n    - To verify the success of the connection attempt, the tool performs a \"1 packet ping\" to Google.\n    - If the ping is unsuccessful, the connection attempt is considered failed, and the tool proceeds to the next password in the list.\n    - This loop continues until a successful ping response is received, indicating a successful connection attempt.\n\n## How to run this\n\nAfter installing all the packages just run `python main.py` rest is history 👍 make sure you run this on Windows cause this won't work on any other OS.\nThe interface looks like this:\n![image](https://github.com/morpheuslord/WinFiHack/assets/70637311/4f0fd195-7729-47fd-888c-0f1a64f90dce)\n\n\n## Contributions\n\nFor contributions:\n- *First Clone:* First Clone the repo into your dev env and do the edits.\n- *Comments:* I would apprtiate if you could add comments explaining your POV and also explaining the upgrade.\n- *Submit:* Submit a PR for me to verify the changes and apprive it if necessary.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorpheuslord%2Fwinfihack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmorpheuslord%2Fwinfihack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorpheuslord%2Fwinfihack/lists"}