Last active
November 18, 2016 12:44
-
-
Save KalleDK/f62b294e47c29781b5dd68af92393bba to your computer and use it in GitHub Desktop.
ITIFN RFC868 Server
This file contains hidden or 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
#!/bin/sh | |
# Loop Forever | |
while true; do netcat -l -u -p 4444 -c -e "epoch=\$(date +'%s'); rfc868=\$((\$epoch + 2208988800)); hex=\$(printf '0: %.8x' \$rfc868); echo \$hex | xxd -r -g0"; done |
This file contains hidden or 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
#!/bin/sh | |
# Loop Forever | |
while true; do netcat -l -p 4444 -c -e "epoch=\$(date +'%s'); rfc868=\$((\$epoch + 2208988800)); hex=\$(printf '0: %.8x' \$rfc868); echo \$hex | xxd -r -g0"; done |
This file contains hidden or 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
#!/bin/sh | |
# Single shot | |
netcat -l -p 4444 -c -e "epoch=\$(date +'%s'); rfc868=\$((\$epoch + 2208988800)); hex=\$(printf '0: %.8x' \$rfc868); echo \$hex | xxd -r -g0" |
This file contains hidden or 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
#!/bin/sh | |
# Single Shot | |
netcat -l -u -p 4444 -c -e "epoch=\$(date +'%s'); rfc868=\$((\$epoch + 2208988800)); hex=\$(printf '0: %.8x' \$rfc868); echo \$hex | xxd -r -g0" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment