mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
7cd400a26f
17977 [DOGFOOD] Reading documents using document.body 17538 document.lastModified is exposed 17537 document.images vulnerabilities 16036 [DOGFOOD] document.Element exposes the DOM of documents from 15757 [DOGFOOD] Injecting JS code using setAttribute and getElemen 15550 Injecting text in documents from any domain using createText 15067 [DOGFOOD] getElementsByTagName() allows reading of arbitrary * Create an array of dom property policy types and initialize it when the script security manager is created. * Move some implementation code to a new shared implementation base class. * Implement privilege enabling, disabling and reverting * Implement stack walking for checking privileges. r=mstoltz@netscape.com * Modify nsIPref to support security policy work. r=neeti@netscape.com
63 lines
1.8 KiB
Plaintext
63 lines
1.8 KiB
Plaintext
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1999 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
/* Defines the abstract interface for a principal. */
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
%{C++
|
|
struct JSPrincipals;
|
|
%}
|
|
|
|
[ptr] native JSPrincipals(JSPrincipals);
|
|
|
|
[uuid(ff9313d0-25e1-11d2-8160-006008119d7a)]
|
|
interface nsIPrincipal : nsISupports {
|
|
|
|
const short ENABLE_UNKNOWN = 0;
|
|
const short ENABLE_GRANTED = 1;
|
|
const short ENABLE_DENIED = 2;
|
|
const short ENABLE_WITH_USER_PERMISSION = 3;
|
|
|
|
void ToString(out string result);
|
|
|
|
void Equals(in nsIPrincipal other, out boolean result);
|
|
|
|
unsigned long HashValue();
|
|
|
|
void GetJSPrincipals(out JSPrincipals jsprin);
|
|
|
|
short CanEnableCapability(in string capability);
|
|
|
|
void SetCanEnableCapability(in string capability, in short canEnable);
|
|
|
|
boolean IsCapabilityEnabled(in string capability, in voidStar annotation);
|
|
|
|
void EnableCapability(in string capability, inout voidStar annotation);
|
|
|
|
void RevertCapability(in string capability, inout voidStar annotation);
|
|
|
|
void DisableCapability(in string capability, inout voidStar annotation);
|
|
};
|
|
|
|
|