~ubuntu-branches/ubuntu/breezy/ntfsdoc/breezy

« back to all changes in this revision

Viewing changes to attributes/security_descriptor.html

  • Committer: Bazaar Package Importer
  • Author(s): David Martínez Moreno
  • Date: 2004-08-12 11:42:27 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040812114227-xekl5gb20c6gvqci
Tags: 0.5-1
* New upstream release.
* Converted debian/changelog to UTF-8.
* Created debian/compat.
* debian/control:
  - Updated Standards-Version to 3.6.1 (no changes).
  - Converted to UTF-8.
  - Updated Build-Depends to debhelper v4.
  - Fixed short Description to comply with Developers Reference advice.
* debian/copyright:
  - Removed rests of dh_make in upstream's names.
  - Converted to UTF-8.
* debian/rules:
  - Cleaned old comments.
  - Uncommented dh_compress. That was giving lintian errors due to the
    changelog not being compressed.
  - Removed DH_COMPAT.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
7
7
    <meta name="description" content="NTFS Documentation">
8
8
    <link rel="stylesheet" type="text/css" href="../style/ntfsdoc.css">
 
9
    <link rel="icon" href="../style/ntfsicon.png" type="image/png">
9
10
    <link rel="start" type="text/html" href="../index.html" title="NTFS Documentation">
 
11
    <link rel="next" href="volume_name.html">
 
12
    <link rel="previous" href="object_id.html">
 
13
    <link rel="contents" href="../index.html">
10
14
    <title>$SECURITY_DESCRIPTOR (0x50) - Attribute - NTFS Documentation</title>
11
15
  </head>
12
16
 
13
17
  <body>
14
18
    <table border="0" class="toolbar" summary="" cellspacing="0">
15
19
      <tr>
16
 
        <td class="toolbar"><a accesskey="1" class="toolbar" href="../index.html">Home</a></td>
17
 
        <td class="toolbar">&nbsp;</td>
18
 
        <td class="toolbar"><a accesskey="2" class="toolbar" href="../files/index.html">Files</a></td>
19
 
        <td class="toolbar">&nbsp;</td>
20
 
        <td class="toolbar"><a accesskey="3" class="toolbar" href="../attributes/index.html">Attributes</a></td>
21
 
        <td class="toolbar">&nbsp;</td>
22
 
        <td class="toolbar"><a accesskey="4" class="toolbar" href="../concepts/index.html">Concepts</a></td>
23
 
        <td class="toolbar">&nbsp;</td>
 
20
        <td class="toolbar"><div class="toolbar"><a accesskey="1" class="toolbar" href="../index.html">Home</a></div></td>
 
21
        <td class="toolbar"><div class="toolbar"><a accesskey="2" class="toolbar" href="../files/index.html">Files</a></div></td>
 
22
        <td class="toolbar"><div class="toolbar"><a accesskey="3" class="toolbar" href="../attributes/index.html">Attributes</a></div></td>
 
23
        <td class="toolbar"><div class="toolbar"><a accesskey="4" class="toolbar" href="../concepts/index.html">Concepts</a></div></td>
24
24
        <td class="toolbar"><a accesskey="5" class="toolbar" href="../help/glossary.html">Glossary</a></td>
25
 
        <td class="toolbar">&nbsp;</td>
26
 
        <td class="toolbar"><a accesskey="6" class="toolbar" href="../help/index.html">Help</a></td>
27
25
      </tr>
28
26
    </table>
29
27
 
148
146
      <tr>
149
147
        <td class="numeric">0x00</td>
150
148
        <td class="numeric">1</td>
151
 
        <td>Header 1</td>
 
149
        <td>Revision (a)</td>
152
150
      </tr>
153
151
      <tr>
154
152
        <td class="numeric">0x01</td>
155
153
        <td class="numeric">1</td>
156
 
        <td>Header 2</td>
 
154
        <td>Padding</td>
157
155
      </tr>
158
156
      <tr>
159
157
        <td class="numeric">0x02</td>
160
 
        <td class="numeric">1</td>
161
 
        <td>Header 3</td>
162
 
      </tr>
163
 
      <tr>
164
 
        <td class="numeric">0x03</td>
165
 
        <td class="numeric">1</td>
166
 
        <td>Header 4</td>
 
158
        <td class="numeric">2</td>
 
159
        <td>Control Flags (b)</td>
167
160
      </tr>
168
161
      <tr>
169
162
        <td class="numeric">0x04</td>
178
171
      <tr>
179
172
        <td class="numeric">0x0C</td>
180
173
        <td class="numeric">4</td>
181
 
        <td>ACL Audit</td>
 
174
        <td>Offset to SACL</td>
182
175
      </tr>
183
176
      <tr>
184
177
        <td class="numeric">0x10</td>
185
178
        <td class="numeric">4</td>
186
 
        <td>ACL Permissions</td>
 
179
        <td>Offset to DACL</td>
187
180
      </tr>
188
181
    </table>
189
182
 
190
 
    <p>The header field is probably some flags, but I can't find any reference to
191
 
    them.<br>
192
 
     Header 1 always seems to be 0x01<br>
193
 
     Header 2 always seems to be 0x00<br>
194
 
     Header 3 is either 0x04 or 0x14. If it's 0x04 then there will be no auditing
195
 
    information; if it is 0x14, there will.<br>
196
 
     Header 4 always seems to be 0x80<br>
197
 
     There are four offset fields. If there are four bits set in the header field,
198
 
    then all four offsets are in use.<br>
199
 
     If there are three bits set, then three offsets are in use. Coincidence?</p>
 
183
    <p>
 
184
    (a) 0x1 for now<br>
 
185
    (b) Usually 0x4 (DACL Present), or 0x14 (DACL Present + SACL Present).  See Flags below.<br>
 
186
    (c) This refers to the Auditing ACL<br>
 
187
    (d) This refers to the Permissions ACL 
 
188
    </p>
200
189
 
201
190
    <h2>ACL</h2>
202
191
    <table border="1" summary="" cellspacing="0">
783
772
   </pre>
784
773
 
785
774
    <br>
786
 
    <a class="contact" href="http://linux-ntfs.sourceforge.net/ntfs/attributes/security_descriptor.html">Online</a>
787
 
    <!-- The two validators will only work if this page is visible on the web -->
788
 
    <a class="contact" href="http://validator.w3.org/check/referer">Validate HTML</a>
789
 
    <a class="contact" href="http://jigsaw.w3.org/css-validator/check/referer">Validate CSS</a>
790
 
    <a class="contact" href="mailto:webmaster@flatcap.org">$Id: security_descriptor.html,v 1.9 2001/07/11 11:04:05 flatcap Exp $</a>
 
775
    <a class="contact" href="../help/license.html">Copyright (C)</a>
 
776
    <a class="contact" href="http://validator.w3.org/check?uri=http://linux-ntfs.sourceforge.net/ntfs/attributes/security_descriptor.html">Validate HTML</a>
 
777
    <a class="contact" href="http://jigsaw.w3.org/css-validator/validator?uri=http://linux-ntfs.sourceforge.net/ntfs/attributes/security_descriptor.html">Validate CSS</a>
 
778
    <img src="http://sourceforge.net/sflogo.php?group_id=13956" width="1" height="1" border="0" alt="SourceForge">
791
779
  </body>
792
780
</html>
793
781