» tagged pages
» logout

(Feed found, click Add Page to syndicate.) Error finding feed, please try again » Find feed title

A Blog Page allows you to add entries, for news or other time sensitive postings

(Login required to save to your tagged pages.)
(or Cancel)

Recent Edits

edit by 62.38.144.45

json

August 4

telenavis.ServerProxy.serverResponse JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy...

» complete change

telenavis.ServerProxy.serverResponse JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.

Example of using JSON in [[JavaScript]]:

<pre><code>

var object = {};

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from a json serialized object

function deserializeObject

{

object = "{\"id\":534,\"nostype\":\"01\",\"name\":\"ΓΕΝΙΚΟ ΝΟΣΟΚΟΜΕΙΟ ΛΗΞΟΥΡΙΟΥ \\"ΜΑΝΤΖΑΒΙΝΑΤΕΙΟ\\"\",\"road\":\"Στυλιανού Τυπάλδου \",\"number\":\"91\",\"city\":\"ΚΕΦΑΛΛΟΝΙΑ\",\"phone\":\"26710-92222, 91194\",\"x\":20.4371750974,\"y\":38.201297048,\"err\":null,\"typename\":\"Νοσοκομείο\"}"; eval("(" + serializedObject + ")");

}

function serializeObject

{

return object.toSource(); //It wont work in IE.

}

</code></pre>

Undo this change because:

JSON CSRF Security

July 25

The exploit works by having you visit a page with an embedded reference to a third party website that uses a cookie to verify...

» complete change

As seen in a "GMail vulnerability":http://blogs.zdnet.com/Google/?p=434, CSRF (Cross Site Request Forgeries) can cause security issues for sites that utilize [[JSON]] heavily.

The exploit works by having you visit a page with an embedded reference to a third party website that uses a cookie to verify your identity. In some major browsers, cookies will be sent to the third party site and you may unwittingly be giving away access to private data.

Here are some ways to make the use of JSON secure in web applications:

* Unguessable values.

Either encoded in the urls, or encoded in the parameters to a JSON request, embed dynamic values that cannot be guessed by a third party - reject requests that do not have these elements.

cccc

If the third party cannot guess your value, they cannot embed a request with it.

* [[XMLHttpRequest]]

The domain security on XMLHttpRequest is more stringent than simple script embeds. XMLHttpRequest cannot access outside domains, so if you can verify the request came from an XMLHttpRequest - you can be sure it came from a first party script. The way to verify this is to alter the headers on the XMLHttpRequest - a @<script>@ embed does not have this capability and thus cannot spoof the request.

Undo this change because:

json

July 16

Example of using JSON in [[JavaScript]]:

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from

» complete change

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.

Example of using JSON in [[JavaScript]]:

<pre><code>

var object = {};

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from a json serialized object

function deserializeObject

{

object = eval("(" + serializedObject + ")");

}

function serializeObject

{

return object.toSource(); //It wont work in IE.

}

</code></pre>

json

July 12

Example of using JSON in [[JavaScript]]:

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from

» complete change

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.

Example of using JSON in [[JavaScript]]:

<pre><code>

var object = {};

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from a json serialized object

function deserializeObject

{

object = eval("(" + serializedObject + ")");

}

function serializeObject

{

return object.toSource(); //It wont work in IE.

}

</code></pre>

editing re-applied 87.206.244.102

JSON CSRF Security

May 22

The exploit works by having you visit a page with an embedded reference to a third party website that uses a cookie to verify...

» complete change

As seen in a "GMail vulnerability":http://blogs.zdnet.com/Google/?p=434, CSRF (Cross Site Request Forgeries) can cause security issues for sites that utilize [[JSON]] heavily.

The exploit works by having you visit a page with an embedded reference to a third party website that uses a cookie to verify your identity. In some major browsers, cookies will be sent to the third party site and you may unwittingly be giving away access to private data.

Here are some ways to make the use of JSON secure in web applications:

* Unguessable values.

Either encoded in the urls, or encoded in the parameters to a JSON request, embed dynamic values that cannot be guessed by a third party - reject requests that do not have these elements.

Another option is cookies: although the browser will allow a third party site to cause you to send over your domain cookies to a third party domain, pretty much all browsers won't allow one domain to access another's cookies.

cccc

If the third party cannot guess your value, they cannot embed a request with it.

* [[XMLHttpRequest]]

The domain security on XMLHttpRequest is more stringent than simple script embeds. XMLHttpRequest cannot access outside domains, so if you can verify the request came from an XMLHttpRequest - you can be sure it came from a first party script. The way to verify this is to alter the headers on the XMLHttpRequest - a @<script>@ embed does not have this capability and thus cannot spoof the request.

editing re-applied 58.10.102.182

json

May 7
“n”

Example of using JSON in [[JavaScript]]:

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from

» complete change

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.

Example of using JSON in [[JavaScript]]:

<pre><code>

var object = {};

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from a json serialized object

function deserializeObject

{

object = eval("(" + serializedObject + ")");

}

function serializeObject

{

return object.toSource(); //It wont work in IE.

}

</code></pre>

editing undone by 65.15.0.77

JSON CSRF Security

April 4

The exploit works by having you visit a page with an embedded reference to a third party website that uses a cookie to verify...

» complete change

As seen in a "GMail vulnerability":http://blogs.zdnet.com/Google/?p=434, CSRF (Cross Site Request Forgeries) can cause security issues for sites that utilize [[JSON]] heavily.

The exploit works by having you visit a page with an embedded reference to a third party website that uses a cookie to verify your identity. In some major browsers, cookies will be sent to the third party site and you may unwittingly be giving away access to private data.

Here are some ways to make the use of JSON secure in web applications:

* Unguessable values.

Either encoded in the urls, or encoded in the parameters to a JSON request, embed dynamic values that cannot be guessed by a third party - reject requests that do not have these elements.

Another option is cookies: although the browser will allow a third party site to cause you to send over your domain cookies to a third party domain, pretty much all browsers won't allow one domain to access another's cookies.

cccc

If the third party cannot guess your value, they cannot embed a request with it.

* [[XMLHttpRequest]]

The domain security on XMLHttpRequest is more stringent than simple script embeds. XMLHttpRequest cannot access outside domains, so if you can verify the request came from an XMLHttpRequest - you can be sure it came from a first party script. The way to verify this is to alter the headers on the XMLHttpRequest - a @<script>@ embed does not have this capability and thus cannot spoof the request.

edit by 206.83.76.35

json

January 4
“restored original content deleted by idiot prathap. don't delete it if you don't like it. fix it instead.”

JSON (JavaScript stands for JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read...

» complete change

JSON (JavaScript stands for JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.

Example of using JSON in [[JavaScript]]:

<pre><code>

var object = {};

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from a json serialized object

function deserializeObject

{

object = eval("(" + serializedObject + ")");

}

function serializeObject

{

return object.toSource(); //It wont work in IE.

}

</code></pre> Notation

edit by 206.83.76.35

json

January 4
“at least provided a straight out definition”

JSON stands for JavaScript Object Notation WELCOME THIS EXAMPLE IS NOT CLEAR SO I DELETED BY PRATHAP

editing re-applied 60.63.43.28

JSON CSRF Security

December 22, 2007

The exploit works by having you visit a page with an embedded reference to a third party website that uses a cookie to verify...

» complete change

As seen in a "GMail vulnerability":http://blogs.zdnet.com/Google/?p=434, CSRF (Cross Site Request Forgeries) can cause security issues for sites that utilize [[JSON]] heavily.

The exploit works by having you visit a page with an embedded reference to a third party website that uses a cookie to verify your identity. In some major browsers, cookies will be sent to the third party site and you may unwittingly be giving away access to private data.

Here are some ways to make the use of JSON secure in web applications:

* Unguessable values.

Either encoded in the urls, or encoded in the parameters to a JSON request, embed dynamic values that cannot be guessed by a third party - reject requests that do not have these elements.

Another option is cookies: although the browser will allow a third party site to cause you to send over your domain cookies to a third party domain, pretty much all browsers won't allow one domain to access another's cookies.

cccc

If the third party cannot guess your value, they cannot embed a request with it.

* [[XMLHttpRequest]]

The domain security on XMLHttpRequest is more stringent than simple script embeds. XMLHttpRequest cannot access outside domains, so if you can verify the request came from an XMLHttpRequest - you can be sure it came from a first party script. The way to verify this is to alter the headers on the XMLHttpRequest - a @<script>@ embed does not have this capability and thus cannot spoof the request.

json

November 15, 2007

WELCOME THIS EXAMPLE IS NOT CLEAR SO I DELETED BY PRATHAP

json

November 15, 2007

WELCOME THIS EXAMPLE IS NOT CLEAR SO I DELETED <pre><code>

var object = {};

var serializedObject = '{"helloworld" : "hi"}';...

» complete change

WELCOME THIS EXAMPLE IS NOT CLEAR SO I DELETED

<pre><code>

var object = {};

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from a json serialized object

function deserializeObject

{

object = eval("(" + serializedObject + ")");

}

function serializeObject

{

return object.toSource(); //It wont work in IE.

}

</code></pre>

json

November 15, 2007

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is...

» complete change

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.

Example of using JSON in [[JavaScript]]:

<pre><code>

var object = {};

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from a json serialized object

function deserializeObject

{

object = eval("(" + serializedObject + ")");

}

function serializeObject

{

return object.toSource(); //It wont work in IE.

}

</code></pre>

editing re-applied 61.73.63.250

json

October 28, 2007
“11”

Example of using JSON in [[JavaScript]]:

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from

» complete change

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.

Example of using JSON in [[JavaScript]]:

<pre><code>

var object = {};

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from a json serialized object

function deserializeObject

{

object = eval("(" + serializedObject + ")");

}

function serializeObject

{

return object.toSource(); //It wont work in IE.

}

</code></pre>

editing undone by foobar

json

October 22, 2007

Example of using JSON in [[JavaScript]]:

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from

» complete change

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.

Example of using JSON in [[JavaScript]]:

<pre><code>

var object = {};

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from a json serialized object

function deserializeObject

{

object = eval("(" + serializedObject + ")");

}

function serializeObject

{

return object.toSource(); //It wont work in IE.

}

</code></pre>

edit by 58.60.77.207

json

October 20, 2007

Example of using JSON in [[JavaScript]]:

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from

» complete change

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.

Example of using JSON in [[JavaScript]]:

<pre><code>

var object = {};

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from a json serialized object

function deserializeObject

{

object = eval("(" + serializedObject + ")");

}

function serializeObject

{

return object.toSource(); //It wont work in IE.

}

</code></pre>

editing undone by foobar

JSON CSRF Security

October 18, 2007

The exploit works by having you visit a page with an embedded reference to a third party website that uses a cookie to verify...

» complete change

As seen in a "GMail vulnerability":http://blogs.zdnet.com/Google/?p=434, CSRF (Cross Site Request Forgeries) can cause security issues for sites that utilize [[JSON]] heavily.

The exploit works by having you visit a page with an embedded reference to a third party website that uses a cookie to verify your identity. In some major browsers, cookies will be sent to the third party site and you may unwittingly be giving away access to private data.

Here are some ways to make the use of JSON secure in web applications:

* Unguessable values.

Either encoded in the urls, or encoded in the parameters to a JSON request, embed dynamic values that cannot be guessed by a third party - reject requests that do not have these elements.

Another option is cookies: although the browser will allow a third party site to cause you to send over your domain cookies to a third party domain, pretty much all browsers won't allow one domain to access another's cookies.

cccc

If the third party cannot guess your value, they cannot embed a request with it.

* [[XMLHttpRequest]]

The domain security on XMLHttpRequest is more stringent than simple script embeds. XMLHttpRequest cannot access outside domains, so if you can verify the request came from an XMLHttpRequest - you can be sure it came from a first party script. The way to verify this is to alter the headers on the XMLHttpRequest - a @<script>@ embed does not have this capability and thus cannot spoof the request.

edit by 24.15.185.122

JSON CSRF Security

October 17, 2007

The exploit works by having you visit a page with an embedded reference to a third party website that uses a cookie to verify...

» complete change

As seen in a "GMail vulnerability":http://blogs.zdnet.com/Google/?p=434, CSRF (Cross Site Request Forgeries) can cause security issues for sites that utilize [[JSON]] heavily.

The exploit works by having you visit a page with an embedded reference to a third party website that uses a cookie to verify your identity. In some major browsers, cookies will be sent to the third party site and you may unwittingly be giving away access to private data.

Here are some ways to make the use of JSON secure in web applications:

* Unguessable values.

Either encoded in the urls, or encoded in the parameters to a JSON request, embed dynamic values that cannot be guessed by a third party - reject requests that do not have these elements.

Another option is cookies: although the browser will allow a third party site to cause you to send over your domain cookies to a third party domain, pretty much all browsers won't allow one domain to access another's cookies.

cccc

If the third party cannot guess your value, they cannot embed a request with it.

* [[XMLHttpRequest]]

The domain security on XMLHttpRequest is more stringent than simple script embeds. XMLHttpRequest cannot access outside domains, so if you can verify the request came from an XMLHttpRequest - you can be sure it came from a first party script. The way to verify this is to alter the headers on the XMLHttpRequest - a @<script>@ embed does not have this capability and thus cannot spoof the request.

editing undone by foobar

json

October 10, 2007

Example of using JSON in [[JavaScript]]:

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from

» complete change

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.

Example of using JSON in [[JavaScript]]:

<pre><code>

var object = {};

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from a json serialized object

function deserializeObject

{

object = eval("(" + serializedObject + ")");

}

function serializeObject

{

return object.toSource(); //It wont work in IE.

}

</code></pre>

edit by 203.62.174.4

json

October 10, 2007

Example of using JSON in [[JavaScript]]:

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from

» complete change

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.

Example of using JSON in [[JavaScript]]:

<pre><code>

var object = {};

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from a json serialized object

function deserializeObject

{

object = eval("(" + serializedObject + ")");

}

function serializeObject

{

return object.toSource(); //It wont work in IE.

}

</code></pre>

json

September 14, 2007

return object.toSource(); //It wont work in IE. //d

» complete change

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.

Example of using JSON in [[JavaScript]]:

<pre><code>

var object = {};

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from a json serialized object

function deserializeObject

{

object = eval("(" + serializedObject + ")");

}

function serializeObject

{

return object.toSource(); //It wont work in IE. //d

}

</code></pre>

json

September 14, 2007

Example of using JSON in [[JavaScript]]:

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from

» complete change

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.

Example of using JSON in [[JavaScript]]:

<pre><code>

var object = {};

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from a json serialized object

function deserializeObject

{

object = eval("(" + serializedObject + ")");

}

function serializeObject

{

return object.toSource(); //d //does not work in IE

}

</code></pre>

editing undone by dland

json

August 10, 2007

Example of using JSON in [[JavaScript]]:

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from

» complete change

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.

Example of using JSON in [[JavaScript]]:

<pre><code>

var object = {};

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from a json serialized object

function deserializeObject

{

object = eval("(" + serializedObject + ")");

}

function serializeObject

{

return object.toSource(); objet.toSource(); //does not work in IE

}

</code></pre>

Undo this change because:
edit by 67.86.106.110

json

August 9, 2007

Example of using JSON in [[JavaScript]]:

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from

» complete change

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.

Example of using JSON in [[JavaScript]]:

<pre><code>

var object = {};

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from a json serialized object

function deserializeObject

{

object = eval("(" + serializedObject + ")");

}

function serializeObject

{

return objet.toSource(); object.toSource(); //does not work in IE

}

</code></pre>

edit by 61.11.73.198

json

July 26, 2007

Example of using JSON in [[JavaScript]]:

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from

» complete change

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.

Example of using JSON in [[JavaScript]]:

<pre><code>

var object = {};

var serializedObject = '{"helloworld" : "hi"}'; //json string

//set an object from a json serialized object

function deserializeObject

{

object = eval("(" + serializedObject + ")");

}

function serializeObject

{

return object.toSource(); //does not work in IE

}

</code></pre>

edit by 61.11.73.198

json

July 26, 2007
JavaScript Object Notation
Undo this change because:
Username:
Password:
(or Cancel)