Any Idea on how Should I analyze this Algorithm? [closed]

2024/7/5 11:03:02

I was wondering if I could get some help on how to analyze an algorithm, my teacher gave us the validation code for some strings. and out project is that we must create a keygen for this validator, and, of course, it must be true when validated. I have been trying by brute force, but I have no luck and It has been working like for 2 hrs. now, so any help, idea, or tip on how to solve this would be perfect.

Thanks in advance.

Here is the code for the validator:

function char2number(chr) {var code = chr.charCodeAt(0); if(code<65) code = code-48; else {code=code-65+10; if(code>=11) code++;if(code>=22) code++; if(code>=33) code++; } return code; 
}function checkdata(code) { var dig = 0; var test = 1; for(var i=0; i<code.length-1;i++) { dig=dig+(char2number(code.charAt(i))*test);   test*=2; } dig = mod(dig,9); if(dig==code.charAt(code.length-1)) return true; else return false; }function mod(X,Y) { var t; t = X % Y; return t < 0 ? t + Y : t; }function valida() {var codigo = document.getElementById("code").value;// Validate the codeif( code == "" || code.length < 15 ) {alert("Invalid!");return false;}if( ! checkdata(code.toUpperCase()) ) {alert("Invalid!");return false;}

This code is written in Javascript since we have to elaborate our solution in Python and, from python, call the service to validate. I don't think that making the code is hard, but I 've been thinking on a way to solve this and I just can't find a pattern to get it to work.

Thanks, all!

Answer

OK, what's going on inside checkdata? Well, whatever it's doing before the end, after dig = mod(dig, 9) it's got a number from 0 to 8, and it's comparing that to the last character (code.charAt(code.length-1))). Notice that the for loop above does i<code.length-1 rather than i<code.length, so that last character isn't included in the calculation. And (other than the check for length 15+) there's nothing else going on here.

So, you don't even have to understand what the whole for loop is doing. If you can generate 14 or more random characters, run the exact same code on them, and append the result to the end, it'll pass.

One quick and dirty way to do that is to just add an alert (or, maybe better, use console.log and run in node instead of a browser…) right before the end of checkdata that shows you what dig is:

function checkdata(code) { var dig = 0; var test = 1; for(var i=0; i<code.length-1;i++) { dig=dig+(char2number(code.charAt(i))*test);test*=2;}dig = mod(dig,9);alert(dig);if(dig==code.charAt(code.length-1)) return true; else return false;}

So now, take some random string of 15 or more characters, like "ABC123DEF456GHI789". An alert will pop up saying "2", and it'll fail because 2 and 9 aren't the same. So just use "ABC123DEF456GHI782" instead, and it'll pass.

Now all you have to do is port that checkdata function to Python, change the alert(dig) to return code[:-1] + dig, write the code to generate 15-character random strings, and of course write the code that calls the service. But that's it.

By the way, porting to Python isn't always quite as trivial as it seems; for example:

  • JS, 2 is a 64-bit floating point number; Python 2 is an unlimited-bit integer.
  • JS strings are Unicode; Python 2.x strings are not (but 3.x are).
  • JS strings in some browsers are actually UTF-16, not Unicode.
  • JS % is sign-preserving; Python % is always-positive.

Fortunately, for writing a keygen, you can generate something that doesn't stray beyond the limits of where any of these things matters, but you should think things through to make sure you do so.

I should add that your teacher may want you to understand what's going on inside the for loop, instead of treating it like a black box. Also, in real life, whoever wrote this silly algorithm would figure out how you cracked it, and make a trivial change that made at least partially understanding the loop necessary (e.g., if they change the <code.length-1 to <code.length).

https://en.xdnf.cn/q/120705.html

Related Q&A

Syntax error ; multiple statements found while

Why is there this syntax error Multiple statements found while compiling a single statement given when I run this code? Answer and help will be super appreciated for this python newbie here

No module named PyPDF2._codecs, even after already installed

I have installed PyPDF2==2.3.0, but I still get the error below when I import PyPDF2. The error message is:ModuleNotFoundError: No module named PyPDF2._codecs

rearding regex (python) [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.Want to improve this question? Add details and clarify the problem by editing this post.Closed 10 years ago.Improv…

While Loop Guessing Number Game - Python

Im trying to make a guess the number between 1-10 game but the while loops seems to keep running. I want to program to let the user guess a number then display if its too high or low etc then start aga…

Calculating distance between word/document vectors from a nested dictionary

I have a nested dictionary as such:myDict = {a: {1:2, 2:163, 3:12, 4:67, 5:84}, about: {1:27, 2:45, 3:21, 4:10, 5:15}, apple: {1:0, 2: 5, 3:0, 4:10, 5:0}, anticipate: {1:1, 2:5, 3:0, 4:8, 5:7}, an: {1:…

Is there anything wrong with the Python code itself? [closed]

Closed. This question needs debugging details. It is not currently accepting answers.Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to repro…

Python Iterate Over String

So Ive got a string e.g "AABBCCCASSDSFGDFGHDGHRTFBFIDHFDUFGHSIFUGEGFGNODN".I want to be able to loop over 16 characters starting and print it. Then move up 1 letter, loop over 16 characters a…

what does with open do in this situation [duplicate]

This question already has answers here:What is the Python "with" statement used for?(3 answers)Closed 7 years ago.sentence = "ASK NOT WHAT YOUR COUNTRY CAN DO FOR YOU ASK WHAT YOU CAN D…

How to perform HTTP GET operation in Python? [closed]

Its difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying thi…

Python Error TypeError: cannot concatenate str and float objects [duplicate]

This question already has answers here:Making a string out of a string and an integer in Python [duplicate](5 answers)Closed 7 years ago.I am new with Python programming. I keep getting the below error…