Advertisement
Guest User

EC2 cudaHashcat bootstrap

a guest
May 13th, 2015
622
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.77 KB | None | 0 0
  1. # bootsandcats.sh by theRoda v0.1
  2. # Amazon EC2 g2.8xlarge cudaHashcat bootstrap
  3. # save script and scp to instance: scp -i <key.pem> /path/to/bootsandcats.sh ec2-user@<IP>:/home/ec2-user
  4. # run as root
  5. # finishes with benchmark test, CTRL-C to skip it.
  6.  
  7. #!/bin/bash
  8. yum -y update
  9. wget http://us.download.nvidia.com/XFree86/Linux-x86_64/346.35/NVIDIA-Linux-x86_64-346.35.run
  10. chmod +x NVIDIA-Linux-x86_64-346.35.run
  11. yum -y groupinstall development tools
  12. ./NVIDIA-Linux-x86_64-346.35.run
  13. sed -i '0,/enabled/{s/=0/=1/}' /etc/yum.repos.d/epel.repo
  14. yum -y install p7zip
  15. wget http://hashcat.net/files/cudaHashcat-1.36.7z
  16. 7za x cudaHashcat-1.36.7z
  17. ln -s cudaHashcat-1.36/cudaHashcat64.bin cudaHashcat-1.36/cudaHashcat
  18. PATH=$PATH:/home/ec2-user/cudaHashcat-1.36/
  19. cudaHashcat -b
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement