Skip to content

Commit 11fb4e3

Browse files
committed
Updated interfaces and manpages
1 parent 99ceb88 commit 11fb4e3

File tree

13 files changed

+56
-52
lines changed

13 files changed

+56
-52
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

app/napp.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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
55
napp \- Narthex appender
66
.SH SYNOPSIS

app/napp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
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

2626
static void
@@ -35,7 +35,7 @@ static void
3535
help(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"

clean/nclean.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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
55
nclean \- Narthex cleaner
66
.SH SYNOPSIS

clean/nclean.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
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

2727
static void
@@ -36,14 +36,14 @@ static void
3636
help(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);

com/ncom.c

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,24 +28,24 @@
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

3434
static void
3535
help(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
}

enhance/nhan.c

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,22 @@
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

2828
static void
2929
help(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
}

enhance/nhance.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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
55
ninc \- Narthex enhancer
66
.SH SYNOPSIS

inc/nin.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@
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

2929
static void
3030
help(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
}

leet/nleet.1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
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
55
nleet \- 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
1010
nleet reads from standard input or a file and appends to it the lines leetified (hello -> h3ll0). It prints to standard output.
1111

0 commit comments

Comments
 (0)