#Coded by cl@rity533k@ #!/usr/bin/ruby require 'rexml/document' include REXML if ARGV.length < 1 $stderr.puts("Usage: #{File.basename($0)}") exit end if File.file?("#{ARGV[0]}") == false then $stderr.puts("ERROR: xml file not found: #{ARGV[0]}.") exit end file = File.new("#{ARGV[0]}") Prod_array = Array.new doc = Document.new(file) root = doc.root for prt in root.elements.to_a("//attack/code") p prt.text end
Wednesday, October 21, 2009
Using REXML for parsing XSS Cheat Sheet
A small ruby snippets for parsing Xss cheat sheet at http://ha.ckers.org/xssAttacks.xml
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment