Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
KIT-CERT
Linux-Forensic-Checklist
Commits
f1c7a0e3
Commit
f1c7a0e3
authored
Sep 22, 2015
by
Heiko Reese
Browse files
…
parent
976a5733
Changes
1
Hide whitespace changes
Inline
Side-by-side
Linux-Forensics-Checklist.md
View file @
f1c7a0e3
...
...
@@ -31,4 +31,15 @@ To send the standard output of a command, simply add this
| nc
-w
2 name_or_ip_of_server 6789
```
Encrypt all data in transition to prevent eavesdropping. Simply insert
`openssl`
into the toolchain:
```
bash
nc
-l
6789 | openssl enc
-aes128
-d
-k
supersecretpw
>>
log.txt
```
```
bash
| openssl enc
-aes128
-e
-k
supersecretpw | nc
-w
2 name_or_ip_of_server 6789
```
Use
[
cryptcat
](
http://cryptcat.sourceforge.net
)
if it's already available on
the target machine.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment