Care Unlock  
Your online unlock store
GSM-Forum  

Welcome to the GSM-Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   GSM-Forum > Non GSM/Mobile Related Forums > Game Consoles & Mp3/4 , HD players

Game Consoles & Mp3/4 , HD players Repairing and servicing Mp4, Mp3 devices, HD players.. you may also find here any threads related to Game Consoles devices like Wii, PlayStation, Xbox, Nintendo .. etc

Reply
 
LinkBack Thread Tools Display Modes
Old 04-22-2011, 10:41   #1 (permalink)
No Life Poster
 
RNC_EBM's Avatar
 
Join Date: Dec 2004
Location: La Union Philippines
Posts: 5,108
Member: 101860
Status: Offline
Sonork: 100.1582168 100.77603
Thanks: 1,797
Thanked 5,552 Times in 1,438 Posts
[ WII ] Parental Control Password - REQUEST

WII Parental Control Password

Just POST here the 8 DIGIT

Confirmation Number

AND I'LL POST THE UNLOCK CODE


br

RNC_EBM
  Reply With Quote
The Following 3 Users Say Thank You to RNC_EBM For This Useful Post:
Old 05-04-2011, 05:35   #2 (permalink)
Freak Poster
 
S.O.S.G.S.M's Avatar
 
Join Date: Feb 2005
Location: Morocco
Age: 30
Posts: 378
Member: 114675
Status: Offline
Thanks: 18
Thanked 91 Times in 32 Posts
who need this code can do it by his self lol

Wii Parental Control Password Resetter

Code:
#!/usr/bin/python
# Wii parental control password reset tool
#
# Copyright 2008-2009 Hector Martin Cantero <hector@marcansoft.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 or version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

import time, urlparse

def application(environ, start_response):
	start_response("200 OK", [("Content-type","text/html")])
	yield """<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Wii Parental Control Password Resetter</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">

.title {
	font-size: 18pt;
	font-family: sans-serif;
}

.response {
	font-size: 16pt;
	font-family: sans-serif;
}

.error {
	color: red;
	font-size: 16pt;
	font-family: sans-serif;
}


</style>
</head>
<body>
<div class="title">Wii Parental Control password reset tool</div>"""

	uri = environ["REQUEST_URI"]
	qs = urlparse.urlparse(uri).query
	form = urlparse.parse_qs(qs)

	ctime = time.time()

	def opt_date(delta):
		t = time.gmtime(ctime + delta * 3600 * 24)
		if delta == 0:
			selected = ' selected="selected"'
		else:
			selected = ""
		return '<option value="%02d%02d" %s>%s</option>'%(t.tm_mon,t.tm_mday,selected,time.strftime("%a, %d %b %Y",t))

	class CRC32:
		def __init__(self):
			self.gentable()


		def crc32(self, input, crc=0xffffffffl):
			count = len(input)
			i = 0
			while count != 0:
				count -= 1
				temp1 = (crc >> 8) & 0xFFFFFF
				temp2 = self.table[(crc ^ ord(input[i])) & 0xFF]
				crc = temp1 ^ temp2
				i += 1
			return crc

		def gentable(self):
			self.table = []
			for i in range(256):
				crc = i
				for j in range(8):
					if crc & 1:
						crc = (crc >> 1) ^ 0xEDB88320l
					else:
						crc >>= 1
				self.table.append(crc)

	def error(s):
		return '<div class="error">%s</div>'%s

	def process():
		try:
			int(form["number"][0]) #validate
			if len(form["number"][0]) != 8 or not all([x in "0123456789" for x in form["number"][0]]):
				raise ValueError()
		except:
			return error("Please provide a valid 8-digit confirmation number")

		try:
			int(form["date"][0]) #validate
			if len(form["date"][0]) != 4 or not all([x in "0123456789" for x in form["date"][0]]):
				raise ValueError()
		except:
			return error("Invalid date")

		fullnum = form["date"][0] + form["number"][0][4:8]

		crc = CRC32().crc32(fullnum)
		code = ((crc ^ 0xaaaa) + 0x14c1) % 100000

		return '<div class="response">Your unlock code:<span class="code">%05d</span></div>'%code

	if form.has_key("submit"):
		yield process()

	yield """
<div class="form">
	<form action="/parental.wsgi">
		<p>Confirmation Number:
			<input name="number" type="text" size="9" maxlength="8" value="" /></p>
		<p>Current Date in your timezone:
			<select name="date" size="1">"""
	yield opt_date(-1)
	yield opt_date(0)
	yield opt_date(1)
	yield """</select><br /></p>
		<p><input name="submit" type="submit" value="Get Reset Code" /></p>
	</form>
</div>
<p>
	<a href="http://validator.w3.org/check?uri=referer"><img
		src="http://www.w3.org/Icons/valid-xhtml10-blue"
		alt="Valid XHTML 1.0 Strict" height="31" width="88" /></a>
	<a href="http://jigsaw.w3.org/css-validator/">
	<img style="border:0;width:88px;height:31px"
		src="http://jigsaw.w3.org/css-validator/images/vcss-blue"
		alt="Valid CSS!" />
	</a>
	<br />
	<a href="parental.txt">Source code</a>
</p>
      
</body>
</html>"""
Thx Go to Hector Martin Cantero

BR

S.O.S.G.S.M
  Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
thread Thread Starter Forum Replies Last Post
My site http://hookergsm.8m.com zip password hereeeee HookerGsM Nokia Legacy Phones ( DCT-1 , DCT-2 , DCT-3 , DCT-L ) 3 01-04-2001 21:30
How can I use AT command control Nokia6110?Help me! arnom Nokia Legacy Phones ( DCT-1 , DCT-2 , DCT-3 , DCT-L ) 2 07-15-2000 07:35
Password for............ Miko Nokia Legacy Phones ( DCT-1 , DCT-2 , DCT-3 , DCT-L ) 6 04-24-2000 19:08
Do you know the password kf89 Nokia Legacy Phones ( DCT-1 , DCT-2 , DCT-3 , DCT-L ) 0 12-02-1999 18:55
I need passwords for new bontiek sites programs Zahooo Nokia Legacy Phones ( DCT-1 , DCT-2 , DCT-3 , DCT-L ) 4 09-10-1999 22:42


All times are GMT +1. The time now is 01:20.



Powered by Searchlight © 2013 Axivo Inc.
- GSM Hosting Ltd. - 1999-2013 -
Page generated in 0.21275 seconds with 11 queries

SEO by vBSEO