File tree Expand file tree Collapse file tree 13 files changed +56
-52
lines changed
Expand file tree Collapse file tree 13 files changed +56
-52
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ https://www.youtube.com/watch?v=U0UmCeLJSkk&t=938s
1212+ nrev - A reversing tool, that appends the reserved versions of the lines at the end of the dictionary.
1313+ nleet - A leetifier. Replaces characters with Leet equivalents, such as @ instead of a, or 3 instead of e.
1414+ nclean - A tool for removing passwords that don't meet your criteria (too short, no special characters etc.)
15+ + napp - A tool that appends characters or words before or after the lines of the dictionary.
1516+ nwiz - A wizard that asks for the infromation and combines the tools together to create a final dictionary.
1617
1718## Install
Original file line number Diff line number Diff line change 11.\" Manpage for napp
22
3- .TH man 8 "10 Oct 2021" "1.0 " "napp manual page"
3+ .TH man 8 "10 Oct 2021" "1.1 " "napp manual page"
44.SH NAME
55napp \- Narthex appender
66.SH SYNOPSIS
Original file line number Diff line number Diff line change 2020#include <unistd.h>
2121#include <ctype.h>
2222
23- #define VERSION "v1.0 "
23+ #define VERSION "v1.1 "
2424#define BUFFER_SIZE 256
2525
2626static void
@@ -35,7 +35,7 @@ static void
3535help (char * exename )
3636{
3737 printf ( "napp - Narthex appender %s\n"
38- "By Michael C. Dim. <mk@mcdim.xyz>\n\n"
38+ "By Michael Constantine Dimopoulos <mk@mcdim.xyz>\n\n"
3939
4040 "-c specify charset\n"
4141 "-w specify dictionary of words\n"
Original file line number Diff line number Diff line change 1- .\" Manpage for ncom
1+ .\" Manpage for nclean
22
3- .TH man 8 "10 Oct 2021" "1.0 " "nclean manual page"
3+ .TH man 8 "10 Oct 2021" "1.1 " "nclean manual page"
44.SH NAME
55nclean \- Narthex cleaner
66.SH SYNOPSIS
Original file line number Diff line number Diff line change 2121#include <ctype.h>
2222#include <unistd.h>
2323
24- #define VERSION "v1.0 "
24+ #define VERSION "v1.1 "
2525#define BUFFER_SIZE 256
2626
2727static void
@@ -36,14 +36,14 @@ static void
3636help (char * exename )
3737{
3838 printf ( "nclean - Narthex cleaner %s\n"
39- "By Michael C. Dim. <mk@mcdim.xyz>\n\n"
40-
41- "-c Must have capital letters\n"
42- "-n Must have numbers\n"
43- "-s Must have symbols\n"
44- "-l Must have min length specified\n"
45- "-h Print this panel & exit\n"
46- "-v Print current version & exit\n\n"
39+ "By Michael Constantine Dimopoulos <mk@mcdim.xyz>\n\n"
40+
41+ "-c must have capital letters\n"
42+ "-n must have numbers\n"
43+ "-s must have symbols\n"
44+ "-l must have min length specified\n"
45+ "-h print this panel & exit\n"
46+ "-v print current version & exit\n\n"
4747
4848 "Usage: cat [FILENAME] | %s [-c] [-n] [-s] [-l] 10\n" ,
4949 VERSION , exename );
Original file line number Diff line number Diff line change 2828#include <unistd.h>
2929#include <ctype.h>
3030
31- #define VERSION "v1.0 "
31+ #define VERSION "v1.1 "
3232#define BUFFER_SIZE 256
3333
3434static void
3535help (char * exename )
3636{
3737 printf ( "ncom - Narthex combinator %s\n"
38- "By Michael C. Dim. <mk@mcdim.xyz>\n\n"
38+ "By Michael Constantine Dimopoulos <mk@mcdim.xyz>\n\n"
3939
40- "-d Use dot separator\n"
41- "-u Use underscore separator\n"
42- "-m Use hyphen separator\n"
43- "-n Exclude numerical bases\n"
44- "-b Exclude base-appended\n"
45- "-h Print this panel & exit\n"
46- "-v Print current version & exit\n\n"
40+ "-d use dot separator\n"
41+ "-u use underscore separator\n"
42+ "-m use hyphen separator\n"
43+ "-n exclude numerical bases\n"
44+ "-b exclude base-appended\n"
45+ "-h print this panel & exit\n"
46+ "-v print current version & exit\n\n"
4747
48- "Usage: cat [FILENAME] | %s [OPTIONS ]\n" ,
48+ "Usage: cat [FILENAME] | %s [-d] [-u] [-m] [-n] [-b ]\n" ,
4949 VERSION , exename );
5050 exit (EXIT_SUCCESS );
5151}
Original file line number Diff line number Diff line change 2121#include <errno.h>
2222#include <string.h>
2323
24- #define VERSION "v1.2 "
24+ #define VERSION "v1.3 "
2525#define BUFFER_SIZE 256
2626
2727
2828static void
2929help (char * exename )
3030{
3131 printf ( "nhance - Narthex enhancer %s\n"
32- "By Michael C. Dim. <mk@mcdim.xyz>\n\n"
32+ "By Michael Constantine Dimopoulos <mk@mcdim.xyz>\n\n"
3333
34- "-f Append full capitalization\n"
35- "-h Print this panel & exit\n"
36- "-v Print current version & exit\n\n"
37- "Usage: cat [FILENAME] | %s [OPTIONS]\n"
38- " %s [OPTIONS] [FILENAME]\n" ,
34+ "-f append full capitalization\n"
35+ "-h print this panel & exit\n"
36+ "-v print current version & exit\n\n"
37+
38+ "Usage: cat [FILENAME] | %s [-f]\n"
39+ " %s [-f] [FILENAME]\n" ,
3940 VERSION , exename , exename );
4041 exit (EXIT_SUCCESS );
4142}
Original file line number Diff line number Diff line change 11.\" Manpage for nhance
22
3- .TH man 8 "15 Jul 2021" "1.2 " "nhance manual page"
3+ .TH man 8 "15 Jul 2021" "1.3 " "nhance manual page"
44.SH NAME
55ninc \- Narthex enhancer
66.SH SYNOPSIS
Original file line number Diff line number Diff line change 2323#include <string.h>
2424#include <ctype.h>
2525
26- #define VERSION "v1.1 "
26+ #define VERSION "v1.2 "
2727#define BUFFER_SIZE 256
2828
2929static void
3030help (char * exename )
3131{
3232 printf ( "ninc - Narthex incrementor %s\n"
33- "By Michael C. Dim. <mk@mcdim.xyz>\n\n"
33+ "By Michael Constantine Dimopoulos <mk@mcdim.xyz>\n\n"
3434
35- "-n Increment numerical lines as well\n"
36- "-h Print this panel & exit\n"
37- "-v Print current version & exit\n\n"
35+ "-n increment numerical lines as well\n"
36+ "-h print this panel & exit\n"
37+ "-v print current version & exit\n\n"
3838
39- "Usage: cat [FILENAME] | %s [MIN] [MAX] [OPTIONS ]\n" ,
39+ "Usage: cat [FILENAME] | %s [MIN] [MAX] [-n ]\n" ,
4040 VERSION , exename );
4141 exit (EXIT_SUCCESS );
4242}
Original file line number Diff line number Diff line change 11.\" Manpage for nleet
22
3- .TH man 8 "15 Jul 2021" "1.2 " "nleet manual page"
3+ .TH man 8 "15 Jul 2021" "1.3 " "nleet manual page"
44.SH NAME
55nleet \- Narthex leetifier
66.SH SYNOPSIS
7- cat dictionary.txt | nhance [OPTIONS] > output.txt
8- nhance [OPTIONS] dictionary.txt
7+ cat dictionary.txt | nleet > output.txt
8+ nhance dictionary.txt
99.SH DESCRIPTION
1010nleet reads from standard input or a file and appends to it the lines leetified (hello -> h3ll0). It prints to standard output.
1111
You can’t perform that action at this time.
0 commit comments