Sha256: f80b569a7b4daff6dd6a16ecc183694a7ca3963d4e9b3189cc22308bfdba95bb

Contents?: true

Size: 641 Bytes

Versions: 7

Compression:

Stored size: 641 Bytes

Contents

# -*- mode: ruby -*-
# vi: set ft=ruby :

# Vulnerable SSH Server in'a Can ( well, a VM ).
Vagrant.configure("2") do |config|
  # For a complete reference, please see the online documentation at
  # https://docs.vagrantup.com.

  config.vm.box = "debian/jessie64"
  config.vm.network "private_network", ip: "192.168.33.10"
  config.vm.synced_folder ".", "/vagrant", disabled: true
  
  # Enable provisioning with a shell script.
  config.vm.provision "shell", inline: <<-SHELL
    sudo su root
    # for fun
    sed -i -e 's/#PasswordAuthentication yes/PasswordAuthentication yes/g' /etc/ssh/sshd_config
    service sshd restart
  SHELL
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
violent_ruby-1.0.6 lib/violent_ruby/ssh_brute_forcer/Vagrantfile
violent_ruby-1.0.5 lib/violent_ruby/ssh_brute_forcer/Vagrantfile
violent_ruby-1.0.4 lib/violent_ruby/ssh_brute_forcer/Vagrantfile
violent_ruby-1.0.3 lib/violent_ruby/ssh_brute_forcer/Vagrantfile
violent_ruby-1.0.2 lib/violent_ruby/ssh_brute_forcer/Vagrantfile
violent_ruby-1.0.1 lib/violent_ruby/ssh_brute_forcer/Vagrantfile
violent_ruby-1.0.0 lib/violent_ruby/ssh_brute_forcer/Vagrantfile