Fastest way to bruteforce a string using a DOS wildcard - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T08:45:02Z http://stackoverflow.com/feeds/question/865107 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/865107/fastest-way-to-bruteforce-a-string-using-a-dos-wildcard 4 Fastest way to bruteforce a string using a DOS wildcard CyberShadow 2009-05-14T19:01:47Z 2009-05-14T20:50:15Z <p>This problem is similar to blind SQL injections. The goal is to determine the exact value of a string, and the only test you can do is to see if a DOS-style wildcard (? = any character, * = any number of any characters) you specify is matched by the string. (So practically you only have access to a <code>bool DoesWildcardMatch(string wildcard)</code> function). </p> <p>The straight-forward way is to test against <code>a*, b*, c*...</code> until you find the first letter, then repeat. Some optimizations I can think of:</p> <ul> <li>search for <code>*a*, *b*</code> etc. to determine the character set</li> <li>when a match on <code>*x*</code> is found, perform divide-et-impera (<code>*a*x*, *b*x*, ...</code>)</li> </ul> http://stackoverflow.com/questions/865107/fastest-way-to-bruteforce-a-string-using-a-dos-wildcard/865182#865182 1 Answer by schnaader for Fastest way to bruteforce a string using a DOS wildcard schnaader 2009-05-14T19:20:03Z 2009-05-14T19:38:04Z <p>If a specific number of ? works, you can also check "?", "??", "???" etc. to get the length of the string, but I doubt this will help much as you can also check if you've got the right length with just one additional check without any wildcards after each round.</p> <p>I think the divide method with a character set check before is almost optimal, there are some additional details, for example if you matched <code>*a*b*</code>, you should check <code>*ab*</code> afterwards to know if there are letters in between and of course as stated above, check <code>*ab</code> and "ab" after this to know if you've finished on the right side or completely.</p> http://stackoverflow.com/questions/865107/fastest-way-to-bruteforce-a-string-using-a-dos-wildcard/865192#865192 0 Answer by Matt Huggins for Fastest way to bruteforce a string using a DOS wildcard Matt Huggins 2009-05-14T19:23:20Z 2009-05-14T19:23:20Z <p>Why not convert your DOS style wildcard string into a regular expression? e.g.:</p> <p>?a*</p> <p>becomes:</p> <p>.a.*</p> <p>Then just perform a simple regular expression match comparing that to your test string.</p> http://stackoverflow.com/questions/865107/fastest-way-to-bruteforce-a-string-using-a-dos-wildcard/865235#865235 2 Answer by BCS for Fastest way to bruteforce a string using a DOS wildcard BCS 2009-05-14T19:34:17Z 2009-05-14T20:50:15Z <p>As for the divide-et-impera, be sure to keep track of value that you known are not present. Also I'd not go with <code>a, b, c</code>, but with frequency order. Some sort of markov chain from that might make it even faster.</p> <p>One thing to watch out for is that you can't assume that a given literal will always match the same location in the input. This will be of particular interest regarding removing the wild cards at the end.</p> <pre><code>c a b a -------- * a * match * b*a* woops! </code></pre> http://stackoverflow.com/questions/865107/fastest-way-to-bruteforce-a-string-using-a-dos-wildcard/865268#865268 2 Answer by Daniel Brückner for Fastest way to bruteforce a string using a DOS wildcard Daniel Brückner 2009-05-14T19:39:04Z 2009-05-14T20:32:26Z <p>A first thought. You can determin the length <code>n</code> of the string in <code>O(log2(n))</code>.</p> <ul> <li>Check <code>Z*</code> where <code>Z</code> represents <code>k</code> question marks starting with 0, then 1, and then doubling the number of question marks with every check until no match occurs. <code>n</code> must be between <code>k / 2</code> and <code>k</code></li> <li>Find the exact length using the same pattern changing <code>k</code> in the same way as binary search does.</li> </ul> <p>Knowing the exact length might help to perform a kind of divide-et-impera in the spatial domain.</p> <p><strong>UPDATE</strong></p> <p>If you know the length, you can use the same pattern to correctly locate a symbol.</p> <p>Example:</p> <pre> ..X. ..XX (spaces added for readability) + symbol may be X - symbol is not X X symbol is X *X* => MATCH ++++ ++++ *X* ???? => MATCH ++++ ++++ *X*?? ???? => NO MATCH --++ ++++ ??X? ???? => MATCH --X+ ++++ ??XX ???? => NO MATCH --X- ++++ ??X? *X*?? => NO MATCH --X- --++ ??X? ??X? => MATCH --X- --X+ ??X? ??XX => MATCH --X- --XX </pre> <p>For string length <code>n</code> and alphabet size <code>m</code> this will take about <code>O(log2(n))</code> to find the length of the string, about <code>O(n • log2(n))</code> to correctly place <code>n</code> symbols, and <code>O(m)</code> to find the used symbols - summing all together yields <code>O(n • log2(n) + m)</code>.</p> <p>I could imagine that it is possible to speed this up by merging several steps - maybe test for used symbols while determining the string length or simultaneously locating two (or even more?) symbols in the first and second half of the string. This will require to recheck the merged steps in isolation if the check fails in order to determine which check faild. But as long as the merged check succeeds, you gain information on both.</p> <p>Maybe I will calculate that tomorrow in order to see if it will really speed the thing up.</p>