Helping companies communicate better with their customers through the use of weblogs and smart user interface design.

Google Code Search Is Live, Find Serial Number Generation Algorithms!

Thursday, October 5th, 2006 by Mike Rundle

Google Code Search was just pushed live (check it out) and already the entrepreneurial minds at Digg have found a cool and unintended use for it: find serial number algorithms!

The poster (I think it was Ryan) says that by just using simple queries using “keygen”, “serial”, or “name” produce some fun results like keygen code for WinZip, Photoshop, mIRC, and a bunch more. Oh and if you know Java, here’s the function for WinZip that takes in a username and returns a String which needs to be then converted to hex:

    public String computeSerial(String userName) {
	IntBits ib;
	int len;
	int L4;
	int F4;
	int i;
	int c;
	int counter;
	int temp;
	int serial; //This will hold the value of the serial
	if (userName == null) return "";
	len = userName.length();

	L4 = 0; //Last 4 ascii digits of serial
	F4 = 0; //first 4 ascii digits of serial
	ib = new IntBits();
	ib.init();

	for (i = 0; i

UPDATE: Find database login information courtesy WordPress WP-CONFIG files.

Reader Comments

One Response to “Google Code Search Is Live, Find Serial Number Generation Algorithms!”

Ryan Irelan Says:

You can also get some nice WordPress info, too:

http://www.techcrunch.com/2006/10/05/google-presents-code-search/#comment-243379

Add Your Comment

Comments are moderated because spam's not tolerated.

©2004-2008 Business Logs. All rights reserved.