JavaScriptによるブラウザ上での処理量およびコード量の増加に伴い、 JavaScript上のバグが原因で発生する脆弱性も増加しています。そのような脆弱性の最も代表的なものが、 DOM-based XSSです。今回から数回に分けて、 DOM-based XSSについて説明していきます。
DOM(Document Object Model)は、Webページの構造をプログラムで操作できるようにしたインターフェースです。JavaScriptを使うことで、ページの内容やスタイルを動的に変更することができます。 DOM要素を取得するためには、以下のメソッドを使用します。 取得し ...
今回は、 動的なWebサイトやWebアプリケーションに欠かせない 「DOM」 と 「JavaScript」 という二つの技術を、 関連する仕様とともに紹介したいと思います。 さまざまなものをオブジェクトで表現するDOM DOM (Document Object Model) とは、 HTML文書にアプリケーション ...
For this post we will be discussing a little bit of Javascript, what the JS DOM is and how we can use it to create more interactive web pages and the components that goes into it. To understand the ...
DOM(Document Object Model)は、HTMLやXML文書をプログラムから操作するための仕組みです。Webページの構造や内容、スタイルをJavaScriptなどで動的に変更できる基盤となる概念を、初心者にもわかりやすく解説します。 DOM(Document Object Model)とは、WebページやXML ...
The Document Object Model (DOM) is a programming interface for web documents. In simpler terms, it's like an organized map that represents the structure and content of a webpage. Think of it as a tree ...
Have you ever thought “How do the browsers like Chrome, Firefox or Internet Explorer know what style they have to apply and where that style comes from?” So, let us take a deep perspective of how ...