Skip to content

Commit 08a630d

Browse files
committed
Changed args string
1 parent 8e4e66d commit 08a630d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ int main(int argc, char** argv) {
1919
help = arg_litn("h", "help", 0, 1, "Display this help and exit"),
2020
version = arg_litn("V", "version", 0, 1, "Display version info and exit"),
2121
verbose = arg_litn("v", "verbose", 0, 1, "Verbose output"),
22-
all = arg_litn("a", "all", 0, 1, "Harvest all browsers credentials"),
22+
all = arg_litn("a", "all", 0, 1, "Harvest all softwares credentials"),
2323
firefox = arg_litn("f", "firefox", 0, 1, "Harvest Firefox credentials"),
2424
chrome = arg_litn("c", "chrome", 0, 1, "Harvest Chrome-like credentials"),
25-
specific = arg_litn("s", "specific", 0, 1, "Harvest OS Specific browsers credentials"),
25+
specific = arg_litn("s", "specific", 0, 1, "Harvest OS Specific browsers credentials (e.g: IE for Windows)"),
2626
filezilla = arg_litn("F", "filezilla", 0, 1, "Harvest FileZilla credentials"),
2727
master_firefox = arg_strn(NULL, "master-firefox", "password", 0, 1, "Master password to decrypt passwords for Firefox"),
2828
master_filezilla = arg_strn(NULL, "master-filezilla", "password", 0, 1, "Master password to decrypt passwords for FileZilla"),
@@ -31,7 +31,7 @@ int main(int argc, char** argv) {
3131
};
3232

3333
char *progname = "Silent_Pass";
34-
char *progversion = "0.1";
34+
char *progversion = "0.2";
3535
char *progdate = "2020";
3636
char *author_name = "SilentVoid";
3737

0 commit comments

Comments
 (0)