|
Bruteforcing
|
|
04-01-2010, 12:24 AM
Post: #1
|
|||
|
|||
|
Bruteforcing
I think all know what is it, in case you dont, you can check wiki.
And here is simple algorithm from book of algorithms in pascal : Code: function search( pat: PATTERN; text: TEXT ): integer; var i, j, m, n: integer;More about it, after i get back from doctor, I have pretty bad pneumonia
Read rules ![]()
|
|||
|
04-01-2010, 03:01 AM
Post: #2
|
|||
|
|||
|
RE: Bruteforcing
Very good i can see that you avoided using "begin/end" statements and you used "goto".
Basically it can be made faster. Just treat it as a sub-string search. Look if length of sub-string matches the string and if first letter match than go to end check of all. I think that is clear enough. But overall THX for sharing ! There's a fine line between genius and insanity. I have erased this line. Oscar Levant There's a fine line between an administrator and black hat hacker. I have erased this line. Dr DEBCOL |
|||
|
04-01-2010, 05:01 AM
Post: #3
|
|||
|
|||
|
RE: Bruteforcing
Basicly, bruteforcing, searching a string, char by char, and asking if char is on right place... Bruteforcing in computing became of same named process in math (as the most things in programing)... The most common use is for braking cryptographic values (passwords, DB hashes...) but math formula of bruteforcing is a wider used in the real life for solving practical problems.
Read rules ![]()
|
|||
|
« Next Oldest | Next Newest »
|







