Tagged Questions
The format-string tag has no wiki summary.
10
votes
5answers
284 views
How can a Format-String vulnerability be exploited?
I was reading about vulnerabilities in code and came across this Format-String Vulnerability.
Wikipedia says:
Format string bugs most commonly appear when a programmer wishes to
print a string ...
9
votes
10answers
2k views
How to escape the % sign in C's printf?
How do you escape the % sign when using printf in C?
printf("hello\%"); /* not like this */
5
votes
1answer
308 views
How to write value into an address in format string attack
I'm taking a security course which needs us to do format string attack on an unix virtual machine. The vulnerability is a format string using command line argument.
My question is how can I write ...
5
votes
3answers
445 views
size limit of printf conversion specification
printf conversion specifications are % followed by flags, width, precision, length modifier and conversion specifier. Is there practical limit to size of a conversion specification?
I.e. %s is 2 ...
5
votes
1answer
2k views
Platform independent size_t Format specifiers in c?
I want to print out a variable for type size_t in c but it appears that size_t is aliased to different variable types on different architextures. For example on one machine (64-bit) the following code ...
4
votes
4answers
94 views
C scanf format string warning
I'm working on Euler #3 (http://projecteuler.net/problem=3). I think I've got the logic right, but I'm getting an error when trying to use scanf (and printf) with a long. I'm current trying to use %li ...
4
votes
4answers
98 views
Way to format strings with “?” parameters to full string in java?
For example I want to implement class with method
public class Logger {
public void info(String message, String[] params) {
}
}
If input is
new Logger().info("Info: param1 is ? , param2 ...
4
votes
2answers
338 views
How can I use a percent % in FormatString without it multiplying by 100?
I would like to format an integer as a percent without it multiplying by 100 as shown here. Because my source is an int, dividing it first by 100 is not a valid option. Is this possible?
...
4
votes
1answer
54 views
Approaches for reversing sprintf/format
I have to heuristically determine the format pattern strings by analyzing the formatted results.
For example I have these strings:
You have 3 unread messages.
You have 10 unread messages.
...
3
votes
3answers
745 views
Do you know about %#x, in C language format string
KdPrint((
"Unknown IoControlCode %#x\n",
io_stack->Parameters.DeviceIoControl.IoControlCode
));
It's weird. What does sharp mean?
2
votes
2answers
286 views
What does an 'F' in the Format specifier of printf mean?
What does %.8Ff format specifier in printf do?What does F mean?
2
votes
3answers
679 views
Is it possible to use format strings to align NSStrings like numbers can be?
I'm using NSLog() to print some tabular data consisting of an NSString and an associated integer.
Assume I know the length of the longest word.
Is there a way using format strings to get this ...
1
vote
2answers
73 views
Easy way to check FormatString is valid?
Is there an easy way to check if a format string is valid? For example the following is code that we use to test a number format string;
public static bool IsValidFormatStringNumber(string ...
1
vote
1answer
180 views
I am trying to format my label text
I want my Label use the {0:c2} format; however, it doesn't seem to work when I do it the following way:
Client code:
<asp:Label ID="Label4" runat="server" Text="Label" ...
1
vote
4answers
263 views
Escape from html %20
I'm working on something in Python and I need to escape from %20, the space in a URL. For example:
"%20space%20in%20%d--" % ordnum
So I need to use %20 for a URL but then %d for a number. But I get ...
1
vote
2answers
100 views
call printf() editing the executable
I'm trying to "crack" a console program, forcing it to display something. The problem is I can't print a newline (\r\n).
With a disassebler I found the place and edited the binary:
push 4ad0eb46 ...
1
vote
2answers
386 views
1
vote
1answer
128 views
Is there a standard format string in ASP.NET to convert 1/2/3/… to 1st/2nd/3rd…?
I have an integer in an Access database, which is being displayed in ASP.NET. The integer represents the position achieved by a competitor in a sporting event (1st, 2nd, 3rd, etc.), and I'd like to ...
1
vote
1answer
809 views
MDX format_string for % doesn't multiply by 100 when % sign is at the front
For the following query:
with
member testVal as 0.1234
member testNormal as testVal
member testPrepend as testVal, format_string="%##.00"
member testMidpend as testVal, format_string="##%.00"
member ...
1
vote
6answers
259 views
“Intelligent” cast of double to two differently formatted strings?
I'm working with a database that has the limit that the only (numeric) datatype it can store is a double. What I want to do is pick the number for a certain row and put it into an HTTP request. The ...
0
votes
6answers
83 views
Parse date exact in c# with variable year length
I'm trying to find the appropriate format string to parse (exact) the following types of dates:
1-01-01T00:00:00+00:00 - 1 January of 0001
2011-12-14T15:53:40+00:00 - 14 December of 2011
So the ...
0
votes
5answers
51 views
Is there a .Net FormatString for 1 to 2 decimal places?
I have a requirement to format a given number to at least 1 decimal place and up to 2 decimal places as in:
4 -> 4.0
4.1 -> 4.1
4.25 -> 4.25
4.3333 -> 4.33
4.5 -> 4.5
5 ...
0
votes
1answer
65 views
What does data=“@/some/path” mean in Python?
This is from some code I'm looking at... I think it's some sort of special format string that loads the file at the path into a binary string assigned to data, but I'm not sure as when I try to ...
0
votes
2answers
394 views
lua string printing
In C, I have format strings, something like:
char *msg = "wlll you marry me"
fprintf(stderr, "%s, %s?", name, msg);
Now, can I do something similar in lua with format strings? I.e. I want something ...
0
votes
1answer
364 views
User selects something in combobox, something else is sent to dependency property
In my application the user can select how a date is displayed. Most of the standard datetime format strings can be selected. My problem now is that the average user doesnt understand the difference ...
0
votes
3answers
207 views
Is %dn a format string?
I recently came across this line in a code -
fprintf(logfile," |-IP Version : %dn",(unsigned int)iph->version);
Is "%dn" here a format string ? If so , what does it signify ?