Questions about this topic? Sign up to ask in the talk tab.
Difference between revisions of "Boolean enumeration"
From NetSec
(3 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | Boolean enumeration is used to discover data when you can only ask the an information system yes or no questions about | + | '''Boolean enumeration''' is used to discover data when you can only ask the an information system yes or no questions about a value. |
This is especially useful in [[SQL injection]]. | This is especially useful in [[SQL injection]]. | ||
Line 15: | Line 15: | ||
Let there be a number N we know to be between bounds A and B | Let there be a number N we know to be between bounds A and B | ||
Our guess is G | Our guess is G | ||
− | + | {{code|text= | |
* IS G == N? | * IS G == N? | ||
** if yes finish | ** if yes finish | ||
Line 28: | Line 28: | ||
**** IF NO THEN A = G | **** IF NO THEN A = G | ||
**** G = (A + B) / 2 | **** G = (A + B) / 2 | ||
− | *** START AGAIN | + | *** START AGAIN}} |
− | [[Category: | + | |
+ | [[Category:Programming]] |
Latest revision as of 20:06, 7 August 2012
Boolean enumeration is used to discover data when you can only ask the an information system yes or no questions about a value.
This is especially useful in SQL injection.
As we know because of hexadecimal, the largest value any byte can hold is 255. So, we can ask the question:
Is the value of our one byte at this position greater than 128?
If so, we can add 64 to 128 and ask if its greater than that. Otherwise, we can ask if its greater than 64.
Eventually you will have to use less than and equal to as questions. Once you get the value, you can move onto the next byte.
Guess a number algorithm
Let there be a number N we know to be between bounds A and B Our guess is G
|