Building password list
#18
So open codeblocks.

Create new console application, select C, then call it combos.

Make sure your saving the project in c:\cpp\. Click next. Click finish.

Expand the sources folder(+), to the left side and double click on main.c.

Delete the, printf("hello world\n");  line and type or copy and paste in this code.


Code:
#include <stdio.h>
#include <string.h>

int main(){

FILE *FP;
int i=0;
char buffer[20];
sprintf(buffer, "combos.text", i);
fp=fopen(buffer, "w");

for(i=0; i<100000000;i++){
strcat(buffer, "WIFI-");
fprintf(fp, buffer);

}
return 0;
}


Then select release from the drop down menu, it should say debug currently. Then go to build on the menu and select build and run.

Your built exe should be in c:\cpp\combos\bin\release
Combos.exe

And the combos.text file should be in c:\cpp\combos

Any errors let me know.
Reply


Messages In This Thread
Building password list - by Ar76 - 09-01-2019, 09:01 AM
RE: Building password list - by undeath - 09-01-2019, 11:22 AM
RE: Building password list - by os2873 - 09-02-2019, 07:39 AM
RE: Building password list - by Ar76 - 09-02-2019, 02:50 PM
RE: Building password list - by os2873 - 09-03-2019, 10:24 AM
RE: Building password list - by Ar76 - 09-03-2019, 11:25 AM
RE: Building password list - by os2873 - 09-03-2019, 09:38 PM
RE: Building password list - by differentequal - 09-04-2019, 08:58 AM
RE: Building password list - by undeath - 09-02-2019, 12:22 PM
RE: Building password list - by os2873 - 09-03-2019, 10:23 AM
RE: Building password list - by philsmd - 09-04-2019, 01:20 PM
RE: Building password list - by Ar76 - 09-04-2019, 02:44 PM
RE: Building password list - by philsmd - 09-04-2019, 03:39 PM
RE: Building password list - by Ar76 - 09-05-2019, 12:33 PM
RE: Building password list - by philsmd - 09-05-2019, 12:38 PM
RE: Building password list - by Ar76 - 09-05-2019, 01:50 PM
RE: Building password list - by philsmd - 09-05-2019, 04:01 PM
RE: Building password list - by Ar76 - 09-05-2019, 05:00 PM
RE: Building password list - by Ar76 - 09-05-2019, 05:18 PM
RE: Building password list - by Kryczek - 09-06-2019, 01:23 PM
RE: Building password list - by Ar76 - 09-06-2019, 08:53 PM
RE: Building password list - by Ar76 - 09-07-2019, 09:47 AM