Guest User

Untitled

a guest
Apr 21st, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. #!/bin/sh
  2. #
  3. # Encryption algorithms: DES, Triple-DES, AES/128, AES/192 and AES/256
  4. ENCLIST="1 5 7/128 7/192 7/256"
  5. # Hash algorithms: MD5 and SHA1
  6. HASHLIST="1 2"
  7. # Authentication methods: Pre-Shared Key, RSA Signatures, Hybrid Mode and XAUTH
  8. AUTHLIST="1 3 64221 65001"
  9. # Diffie-Hellman groups: 1, 2 and 5
  10. GROUPLIST="1 2 5"
  11. #
  12. for ENC in $ENCLIST; do
  13. for HASH in $HASHLIST; do
  14. for AUTH in $AUTHLIST; do
  15. for GROUP in $GROUPLIST; do
  16. echo "--trans=$ENC,$HASH,$AUTH,$GROUP"
  17. done
  18. done
  19. done
  20. done
  21.  
  22. generate-transforms.sh | xargs --max-lines=8 ike-scan 10.0.0.0/24
  23.  
  24.  
  25. making good progress with 127.0.0.1
Add Comment
Please, Sign In to add comment