Tag: ruby

0

Unstable Twin - Write-up - TryHackMe

Information Room# Name: Unstable Twin Profile: tryhackme.com Difficulty: Medium Description: A Services based room, extracting information from HTTP Services and finding the hidden messages. Write-

0

Red Stone One Carat - Write-up - TryHackMe

Information Room# Name: Red Stone One Carat Profile: tryhackme.com Difficulty: Medium Description: First room of the Red Stone series. Hack ruby using ruby. Write-up Overview# Install tools used in

0

Laboratory - Write-up - HackTheBox

Information Box# Name: Laboratory Profile: www.hackthebox.eu Difficulty: Easy OS: Linux Points: 30 Write-up Overview# Install tools used in this WU on BlackArch Linux: 1$ sudo pacman -S nmap ruby-c

0

Jewel - Write-up - HackTheBox

Information Box# Name: Jewel Profile: www.hackthebox.eu Difficulty: Medium OS: Linux Points: 30 Write-up Overview# Install tools used in this WU on BlackArch Linux: 1$ sudo pacman -S nmap oath-tool

0

Blunder - Write-up - HackTheBox

Information Box# Name: Blunder Profile: www.hackthebox.eu Difficulty: Easy OS: Linux Points: 20 Write-up Overview# Install tools used in this WU on BlackArch Linux: 1$ pacman -S nmap ffuf exploitdb

0

Generate background pattern in Ruby

We will see how to generate a SVG background with triangle patterns in ruby to have something that look likes this: At first, install the TrianglePattern gem: 1$ gem install triangle_pattern Then we

0

Ruby cheat sheet with examples

Take it easy Ruby! Basic concepts# Hello World# 1puts "Hello World!" Comments# 123456# single line comment=begin Multi-lines comment=end Variables# 12my_var = 42My_constant_var = 31337 Sho