diff options
| author | jvoisin | 2014-04-04 12:17:40 +0100 |
|---|---|---|
| committer | jvoisin | 2014-04-04 12:17:40 +0100 |
| commit | 8423a262c76f930e75953357867f81f2f200a836 (patch) | |
| tree | 54c42dae5f1ff432e443271b306b58b9837428f2 | |
| parent | 30eb0cb15a9518c9ec8982e3e46a099c717a5383 (diff) | |
s/ : /: /g
Thank you intrigeri
| -rw-r--r-- | README | 6 | ||||
| -rwxr-xr-x | mat | 12 | ||||
| -rw-r--r-- | mat.1 | 2 |
3 files changed, 10 insertions, 10 deletions
| @@ -27,8 +27,8 @@ DEPENDENCIES | |||
| 27 | 27 | ||
| 28 | OPTIONALS DEPENDENCIES | 28 | OPTIONALS DEPENDENCIES |
| 29 | ====================== | 29 | ====================== |
| 30 | * python-mutagen : for massive audio format support | 30 | * python-mutagen: for massive audio format support |
| 31 | * exiftool : for _massive_ image format support | 31 | * exiftool: for _massive_ image format support |
| 32 | 32 | ||
| 33 | USAGE | 33 | USAGE |
| 34 | ===== | 34 | ===== |
| @@ -60,7 +60,7 @@ HOW TO LAUNCH THE TESTSUITE | |||
| 60 | LINKS | 60 | LINKS |
| 61 | ===== | 61 | ===== |
| 62 | * Official website: https://mat.boum.org | 62 | * Official website: https://mat.boum.org |
| 63 | * Bugtracker : https://labs.riseup.net/code/projects/mat | 63 | * Bugtracker: https://labs.riseup.net/code/projects/mat |
| 64 | * Git repo: https://gitweb.torproject.org/user/jvoisin/mat.git | 64 | * Git repo: https://gitweb.torproject.org/user/jvoisin/mat.git |
| 65 | 65 | ||
| 66 | CONTACT | 66 | CONTACT |
| @@ -33,7 +33,7 @@ The default behaviour is to clean files given in argument') | |||
| 33 | info.add_option('--display', '-d', action='store_true', default=False, | 33 | info.add_option('--display', '-d', action='store_true', default=False, |
| 34 | help='List all the harmful metadata of a file without removing them') | 34 | help='List all the harmful metadata of a file without removing them') |
| 35 | info.add_option('--list', '-l', action='store_true', default=False, | 35 | info.add_option('--list', '-l', action='store_true', default=False, |
| 36 | help='List all supported fileformat') | 36 | help='List all supported fileformats') |
| 37 | info.add_option('--version', '-v', action='callback', | 37 | info.add_option('--version', '-v', action='callback', |
| 38 | callback=display_version, help='Display version and exit') | 38 | callback=display_version, help='Display version and exit') |
| 39 | parser.add_option_group(options) | 39 | parser.add_option_group(options) |
| @@ -108,16 +108,16 @@ def list_supported(): | |||
| 108 | ''' Print all supported fileformat, and exit ''' | 108 | ''' Print all supported fileformat, and exit ''' |
| 109 | for item in mat.list_supported_formats(): | 109 | for item in mat.list_supported_formats(): |
| 110 | print('%s (%s)' % (item['name'], item['extension'])) | 110 | print('%s (%s)' % (item['name'], item['extension'])) |
| 111 | print('\tsupport : %s' % item['support']) | 111 | print('\tsupport: %s' % item['support']) |
| 112 | print('\tmetadata : %s' % item['metadata']) | 112 | print('\tmetadata: %s' % item['metadata']) |
| 113 | print('\tmethod : %s' % item['method']) | 113 | print('\tmethod: %s' % item['method']) |
| 114 | print('\tremaining : %s' % item['remaining']) | 114 | print('\tremaining: %s' % item['remaining']) |
| 115 | print('\n') | 115 | print('\n') |
| 116 | sys.exit(0) | 116 | sys.exit(0) |
| 117 | 117 | ||
| 118 | 118 | ||
| 119 | def main(): | 119 | def main(): |
| 120 | ''' Main function : get args and launch the appropriate function ''' | 120 | ''' Main function: get args and launch the appropriate function ''' |
| 121 | args, filenames = parse() | 121 | args, filenames = parse() |
| 122 | 122 | ||
| 123 | #func receives the function corresponding to the options given as parameters | 123 | #func receives the function corresponding to the options given as parameters |
| @@ -57,7 +57,7 @@ Check all the jpg images from the current folder | |||
| 57 | .SH NOTES | 57 | .SH NOTES |
| 58 | MAT \fBonly process metadata\fR, it does \fBnot\fR handle file data. | 58 | MAT \fBonly process metadata\fR, it does \fBnot\fR handle file data. |
| 59 | Blame yourself if you are traced back because of the data of your files. | 59 | Blame yourself if you are traced back because of the data of your files. |
| 60 | MAT is not perfect : In most of the cases, a forensic expert with a lot | 60 | MAT is not perfect: In most of the cases, a forensic expert with a lot |
| 61 | of time \fBcan trace back\fR your document. | 61 | of time \fBcan trace back\fR your document. |
| 62 | If you want absolute privacy, use plain-text. | 62 | If you want absolute privacy, use plain-text. |
| 63 | 63 | ||
