Skip to content

Instantly share code, notes, and snippets.

@koduki
Created October 30, 2010 17:34
Show Gist options
  • Save koduki/655559 to your computer and use it in GitHub Desktop.
Save koduki/655559 to your computer and use it in GitHub Desktop.
require "rubygems"
require "mechanize"
password = ''
domain = ''
agent = WWW::Mechanize.new
page = (agent.get 'http://ddo.jp/')
form = page.forms.with.name('dnsupdate').first
form.action = 'http://free.ddo.jp/dnsupdate.php'
form["dn"] = domain
form["pw"] = password
p form
p agent.submit(form)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment