.Από τις πιο διάσημες "σειρές" σε boot2root VMS είναι τα Kioptrix.
Τα περισσότερα φτιαγμένα από τον loneferret ο οποίος είναι μέλος της offensive security.
Περισσότερες πληροφορίες για τον loneferret και τα kioptrix vms εδώ
Εφόσον έχω λύσει τα προηγούμενα 4 VMS και είχα λίγο χρόνο είπα να γράψω ένα μικρό writeup...
Captcha decoding with Ruby

What we will need:
Ruby
tesseract-ocr gem
RMagick gem
The original CAPTCHA
First of all the image is too small we need to resize it! (save the image as "1.png")
require 'tesseract'
require 'RMagick'
include Magick
img_raw = ImageList.new("1.png")
img_res = img_raw.resize(600,250)
img_res.display
Here...
Εγγραφή σε:
Αναρτήσεις (Atom)