473,666 Members | 2,165 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

how to decode a 4digit key from "Key-code script by Bart Jellema"?

hi, i just wondered how to retrieve the 4digit key of this script?
anybody who can help?
best regards
Karteikarte
<script type="text/javascript">
<!-- Key-code script by Bart Jellema
var code=0
var mul=1
var digit=0
var fails=0

function Enter_code(numb er)
{
code=code*10+nu mber
mul=mul*number
doc.codepad.the code.value=code
digit++

if (digit==4)
{
if( mul==2304 )
{
location="x/x1/solution.php?co de="+code
}
else
{
fails++
code=0
mul=1
digit=0
if (fails<3)
{
if (fails==1)
{doc.codepad.th ecode.value="au thentication failed"}
if (fails==2)
{doc.codepad.th ecode.value="au thentication failed"}
}
else
{
location="/?page=x"
doc.codepad.the code.value="acc ess denied"
}
}
}
}
// -->
</script>
Jul 23 '05 #1
5 3468
On 21/9/04 9:07 am, karteikarte wrote:
hi, i just wondered how to retrieve the 4digit key of this script?
anybody who can help?
best regards
Karteikarte


So you're trying to hack someone website? ;-)

This should be easy enough for you to work out by yourself. Although it
looks to me like there are 12 valid keys

--
Philip Ronan
ph***********@v irgin.net
(Please remove the "z"s if replying by email)
Jul 23 '05 #2
Philip Ronan <ph***********@ virgin.net> wrote in message news:<BD75EBBA. 21886%ph******* ****@virgin.net >...
On 21/9/04 9:07 am, karteikarte wrote:
hi, i just wondered how to retrieve the 4digit key of this script?
anybody who can help?
best regards
Karteikarte


So you're trying to hack someone website? ;-)

This should be easy enough for you to work out by yourself. Although it
looks to me like there are 12 valid keys


uhm, i dont wanna hack a page. its part of a challenge. and i just
would like to understand how to break this script.
i am not a coder or hacker. i just try to understand :)
Jul 23 '05 #3
"karteikart e" <ka*********@we st.de> wrote in message
news:62******** *************** **@posting.goog le.com...
hi, i just wondered how to retrieve the 4digit key of this script?
anybody who can help?
best regards
Karteikarte


[snip]

A Google on "Bart Jellema" found this link:

http://java.searchrealm.com/javaandc...CodeScript.TXT

Does that help any?

Have you tried emailing the author (ba******@hotma il.com) directly?
Jul 23 '05 #4
"McKirahan" <Ne**@McKirahan .com> wrote in message news:<Pr54d.133 549$3l3.117720@ attbi_s03>...
"karteikart e" <ka*********@we st.de> wrote in message
news:62******** *************** **@posting.goog le.com...
hi, i just wondered how to retrieve the 4digit key of this script?
anybody who can help?
best regards
Karteikarte


[snip]

A Google on "Bart Jellema" found this link:

http://java.searchrealm.com/javaandc...CodeScript.TXT

Does that help any?

Have you tried emailing the author (ba******@hotma il.com) directly?


thanks for the link... i guess now the solution is one of this numbers:

4889
4898
4988
8849
8489
8498
9488
9848

:)
Jul 23 '05 #5
On 22/9/04 10:43 am, karteikarte wrote:
"McKirahan" <Ne**@McKirahan .com> wrote in message
news:<Pr54d.133 549$3l3.117720@ attbi_s03>...
"karteikart e" <ka*********@we st.de> wrote in message
news:62******** *************** **@posting.goog le.com...
hi, i just wondered how to retrieve the 4digit key of this script?
anybody who can help?
best regards
Karteikarte


[snip]

A Google on "Bart Jellema" found this link:

http://java.searchrealm.com/javaandc...CodeScript.TXT

Does that help any?

Have you tried emailing the author (ba******@hotma il.com) directly?


thanks for the link... i guess now the solution is one of this numbers:

4889
4898
4988
8849
8489
8498
9488
9848

:)


You missed these: 8894 8948 8984 9884 6886 6868 6688 8686 8668 8866

--
Philip Ronan
ph***********@v irgin.net
(Please remove the "z"s if replying by email)
Jul 23 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
6865
by: Koen | last post by:
Hi! What is the best way to check whether a key is pressed without blocking in C++? I know I can use cin.get(c) to get a character from standard input, but this blocks. And I know _kbhit() exists in MSVC++, but that's in <conio.h> and probably not standard, is it?
0
3128
by: jy2003 | last post by:
1. Does MyISAM support FOREIGN KEY constraints? When I read the online MySQL Reference Manual, it said "InnoDB also supports FOREIGN KEY constraints". Does it mean MyISAM does not support FOREIGN KEY constraints? It this is the case, what should I keep in mind when I design MyISAM tables? 2. I have seen the following CREATE statement somewhere, but I have never known that the "KEY" keyword can be used that way(the last 4 "KEY"). I...
0
1583
by: jacksuyu | last post by:
I have two xsd files, in one xsd file, I defined a "key", I'd like to use "keyref" to refer to that "key" from another xsd file. But I always get attribute is empty error. my.xsd is my first xsd file with "key", myphone.xsd is the keyref file which need to refer to the "key" Thanks. my.xsd:
2
7852
by: microsoft | last post by:
When I create a instance of web services proxy in winform, I get the exception. Stack Trace: System.ArgumentException: Item has already been added. Key in dictionary:"winbootdir" Key being added: "winbootdir" at System.Collections.Hashtable.Insert(Object key, Object nvalue, Boolean add) at System.Collections.Hashtable.Add(Object key, Object value)
0
1110
by: YiFai | last post by:
Hello, I'm currently writing a directx program with C++, but it takes a while to load the files necessary for the directx. When the directx window loads, it can quit the program with the 'escape' key by using the keydown events provided by directx libraries. What I would like to do is be able to quit the program before it finishes loading if the user presses the 'escape' key during the load. I will use a boolean variable to determine...
5
3439
by: Steven | last post by:
Can anyone tell me how to toggle the "Caps Lock" key? Thanks in advance
8
14266
by: Don Wash | last post by:
Hi There! I'm using VB.NET to create a TreeView application and unfortunately I could not find "Key" property in Node items of the TreeView. We used to have "Key" property in TreeView node object in VB6. What is the equivalent of "Key" property of TreeView node in VB.NET? Has the property name "Key" has been changed to something else? Or VB.NET does not support the "Key" property anymore? If so what are the alternatives?
0
2441
by: David Penne | last post by:
I have SBS 2003 and am using the built in tape backup. My question is about the registry key "Eject Tape Flag". I understand that this is an undocumented key and the only articles I can find about it on the internet reference NT 4.0. Does anyone know if this key works? I have users that would like to eject the tape after a backup and perfer not to have to do it through a .bat file. Also, if the key works, what, if any, additional steps...
4
3874
by: roxanaislam | last post by:
Submitting Form by pressing the "ENTER" key -------------------------------------------------------------------------------- Hi: I have a search form in my application which has 4 dropdown list controls, one text box, one "GO" button, one "reset" button. When the "GO" button is clicked the form gets submitted and the results page is displayed. When I press the "enter" key nothing happens. I want to submit the form by pressing the "enter"...
11
12400
by: gnortenjones | last post by:
I have a linked table (to an oracle db), and I am trying to run a simple update query against it to change some data, but I am getting the following error: "...didn't update 0 fields due to a type conversion failure, 24 records due to key violations, 0 records due to lock violations..." The table I'm updating has 4 primary key's, and I'm trying to update the data in one of them. The data I'm updating shouldn't violate the uniqueness of...
0
8362
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8785
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8560
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7389
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6200
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4200
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2776
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2012
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1778
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.