-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ def _version(cls) -> str: | |
from trueseeing import __version__ | ||
# ..............................................................................80 | ||
return ( | ||
f'Trueseeing {__version__}, an non-decompiling Android app vulnerability scanner\n' | ||
f'Trueseeing {__version__}, an non-decompiling iOS/Android app vulnerability scanner\n' | ||
'Copyright (C) Takahiro Yoshimura <[email protected]> et al.\n' # noqa: E131 | ||
'All rights reserved. Licensed under the terms of GNU General Public License Version 3 or later.\n' | ||
) | ||
|
@@ -34,7 +34,7 @@ def invoke(self) -> int: | |
log_level = ui.INFO | ||
cmdlines = [] | ||
|
||
parser = ArgumentParser(description='Non-decompiling Android app vulnerability scanner') | ||
parser = ArgumentParser(description='Non-decompiling iOS/Android app vulnerability scanner') | ||
args_mut0 = parser.add_mutually_exclusive_group() | ||
args_mut1 = parser.add_mutually_exclusive_group() | ||
parser.add_argument('fn', nargs='?', metavar='FILE', help='Target APK file') | ||
|