Guest User

Untitled

a guest
Apr 20th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. require 'rubygems'
  2. require 'sinatra'
  3.  
  4. get '/whois/:domain' do |domain|
  5. %x{ whois #{domain} }.gsub("\n", "<br />")
  6. end
Add Comment
Please, Sign In to add comment