posted in Info on Oct 1st, 2012
I’ve found 2 minor bugs in WiFiDump that are fixed in version 0.2. Nothing special and under normal circumstances you won’t see the difference. Just for the sake of beauty and completeness… You can download the latest version here.
read full post »
posted in Tools & sources on Sep 26th, 2012
Tool name : WiFiDump Description : WiFiDump is a tool to recover all locally stored WiFi account information. It loops through a WiFi profile catalogue and extracts all the relevant profile information. WiFiDump first has to decrypt the password before printing it because Windows keeps sensitive information encrypted. To run WiFiDump properly you need [...]
read full post »
posted in C, Coders corner on Sep 19th, 2010
#define WLAN_MAX_NAME_LENGTH 256 #define MAX_BUF_LEN 1024 #include <windows.h> #include <stdio.h> #include <wlanapi.h> #pragma comment(lib, "Wlanapi.lib") #pragma comment(lib, "Rpcrt4.lib") /* * Functions forward declarations. * */ int StringToSsid(char *pSSIDName, PDOT11_SSID pSSID); /* * Program entry point. * * * Usage : ProgName.exe GUID */ int main(int argc, [...]
read full post »
posted in C, Coders corner on Sep 17th, 2010
#define WLAN_MAX_NAME_LENGTH 256 #define MAX_BUF_LEN 1024 #include <windows.h> #include <stdio.h> #include <wlanapi.h> #pragma comment(lib, "Wlanapi.lib") #pragma comment(lib, "Rpcrt4.lib") /* * Functions forward declarations. * */ int StringToSsid(char *pSSIDName, PDOT11_SSID pSSID); /* * Program entry point. * * * Usage : ProgName.exe GUID SSID adhoc|infrastructure profilename */ [...]
read full post »
posted in C, Coders corner on Sep 15th, 2010
#define WLAN_MAX_NAME_LENGTH 256 #define MAX_BUF_LEN 1024 #include <windows.h> #include <stdio.h> #include <wlanapi.h> #pragma comment(lib, "Wlanapi.lib") #pragma comment(lib, "Rpcrt4.lib") /* * Program entry point. * * * Usage : ProgName.exe GUID ProfileName */ int main(int argc, char **argv) { int lRetVal = 0; int lFuncRetVal = 0; DWORD dwServiceVersion [...]
read full post »