ReactOS
0.4.16-dev-942-g91fadeb
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
m
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
printf_count_output.cpp
Go to the documentation of this file.
1
//
2
// printf_count_output.cpp
3
//
4
// Copyright (c) Microsoft Corporation. All rights reserved.
5
//
6
// Defines the functions that control the enable state of %n.
7
//
8
#include <
corecrt_internal_stdio.h
>
9
10
11
12
static
UINT_PTR
enable_percent_n
= 0;
13
14
15
16
// Enables or disables the %n format specifier for the printf family of functions.
17
// Note the use of the __security_cookie: if the static variable was set to a
18
// known value, an attacker could potentially modify that value and then provide
19
// a malicious %n specifier. The cookie is or'ed with 1 becuase a cookie with a
20
// value of zero is possible.
21
extern
"C"
int
__cdecl
_set_printf_count_output
(
int
const
value
)
22
{
23
int
const
old = (
enable_percent_n
== (
__security_cookie
| 1));
24
enable_percent_n
= (
value
? (
__security_cookie
| 1) : 0);
25
return
old;
26
}
27
28
29
30
// Tests whether the %n format specifier for the printf family of functions is
31
// enabled.
32
extern
"C"
int
__cdecl
_get_printf_count_output
()
33
{
34
return
enable_percent_n
== (
__security_cookie
| 1);
35
}
__cdecl
#define __cdecl
Definition:
accygwin.h:79
corecrt_internal_stdio.h
UINT_PTR
unsigned __int3264 UINT_PTR
Definition:
mstsclib_h.h:274
_set_printf_count_output
int __cdecl _set_printf_count_output(int const value)
Definition:
printf_count_output.cpp:21
enable_percent_n
static UINT_PTR enable_percent_n
Definition:
printf_count_output.cpp:12
_get_printf_count_output
int __cdecl _get_printf_count_output()
Definition:
printf_count_output.cpp:32
__security_cookie
uintptr_t __security_cookie
Definition:
gs_support.c:49
value
Definition:
pdh_main.c:96
sdk
lib
ucrt
stdio
printf_count_output.cpp
Generated on Thu Apr 3 2025 06:14:59 for ReactOS by
1.9.6