473,320 Members | 1,713 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

script unknow

<SCRIPT language=Javascript>

var t = "5i944e6hg963d;7g;f9896::<d<3df9i"

r='';

for(i=0;i<t.length;i++) {

n=t.charCodeAt(i);

if (n>=8364) {

n = 128;

}

r += String.fromCharCode( n - 3 );

}

document.write("<p class=\"small\">" + t + "</p>");

</SCRIPT>

What is this??????
Jul 23 '05 #1
7 1215
"geggiot" <va******@aliceposta.it!!> writes:
var t = "5i944e6hg963d;7g;f9896::<d<3df9i" .... calculate ... document.write("<p class=\"small\">" + t + "</p>");
What is this??????


Change "document.write" to "alert" and run it to see :)

I'd say it's crap. The "t" in the document.write should probably be
"r", the computed string (it's the Ceasar cipher :). That string
contains something that looks like hex codes, but not something that
makes sense if you decode it.

So, where do you have it from?

/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html>
'Faith without judgement merely degrades the spirit divine.'
Jul 23 '05 #2

"Lasse Reichstein Nielsen" <lr*@hotpop.com> ha scritto nel messaggio
news:n0**********@hotpop.com...
"geggiot" <va******@aliceposta.it!!> writes:
var t = "5i944e6hg963d;7g;f9896::<d<3df9i" ... calculate ...
document.write("<p class=\"small\">" + t + "</p>");


What is this??????


Change "document.write" to "alert" and run it to see :)

I'd say it's crap. The "t" in the document.write should probably be
"r", the computed string (it's the Ceasar cipher :). That string
contains something that looks like hex codes, but not something that
makes sense if you decode it.

So, where do you have it from?

/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
DHTML Death Colors:

<URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html> 'Faith without judgement merely degrades the spirit divine.'


from a hacking game.
Jul 23 '05 #3
"geggiot" <va******@aliceposta.it!!> writes:
So, where do you have it from?
from a hacking game.


Exciting. Do you have a link? :)
/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html>
'Faith without judgement merely degrades the spirit divine.'
Jul 23 '05 #4

"Lasse Reichstein Nielsen" <lr*@hotpop.com> ha scritto nel messaggio
news:n0**********@hotpop.com...
"geggiot" <va******@aliceposta.it!!> writes:
var t = "5i944e6hg963d;7g;f9896::<d<3df9i" ... calculate ...
document.write("<p class=\"small\">" + t + "</p>");


What is this??????


Change "document.write" to "alert" and run it to see :)

I'd say it's crap. The "t" in the document.write should probably be
"r", the computed string (it's the Ceasar cipher :). That string
contains something that looks like hex codes, but not something that
makes sense if you decode it.

So, where do you have it from?

/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
DHTML Death Colors:

<URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html> 'Faith without judgement merely degrades the spirit divine.'


how i can calculate this var t = "5i944e6hg963d;7g;f9896::<d<3df9i ???
with Ascii table?
Jul 23 '05 #5

"Lasse Reichstein Nielsen" <lr*@hotpop.com> ha scritto nel messaggio
news:is**********@hotpop.com...
"geggiot" <va******@aliceposta.it!!> writes:
So, where do you have it from?
from a hacking game.


Exciting. Do you have a link? :)
/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
DHTML Death Colors:

<URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html> 'Faith without judgement merely degrades the spirit divine.'


http://www.pc-facile.com/security.php?id=87
Jul 23 '05 #6

"geggiot" <va******@aliceposta.it!!> ha scritto nel messaggio
news:YV*********************@news3.tin.it...

"Lasse Reichstein Nielsen" <lr*@hotpop.com> ha scritto nel messaggio
news:n0**********@hotpop.com...
"geggiot" <va******@aliceposta.it!!> writes:
var t = "5i944e6hg963d;7g;f9896::<d<3df9i" ... calculate ...
document.write("<p class=\"small\">" + t + "</p>");


What is this??????


Change "document.write" to "alert" and run it to see :)

I'd say it's crap. The "t" in the document.write should probably be
"r", the computed string (it's the Ceasar cipher :). That string
contains something that looks like hex codes, but not something that
makes sense if you decode it.

So, where do you have it from?

/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
DHTML Death Colors:

<URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html>
'Faith without judgement merely degrades the spirit divine.'


how i can calculate this var t = "5i944e6hg963d;7g;f9896::<d<3df9i

??? with Ascii table?


i resolve it !!!! thank you so much!!!!!!
Jul 23 '05 #7
"geggiot" <va******@aliceposta.it!!> writes:
how i can calculate this var t = "5i944e6hg963d;7g;f9896::<d<3df9i ???
with Ascii table?


Just use the code. Change the "t" to an "r" and see what is written.

(Thanks for the link. It's somewhat harder to do this when you don't
understand italian, so I'm stuck at level 12 now :)

/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html>
'Faith without judgement merely degrades the spirit divine.'
Jul 23 '05 #8

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

Similar topics

20
by: Market Mutant | last post by:
www.51.ca is a nice site, and I want to build something similar and wonder if anyone knows if they are using PHPNuke or other nukes or they wrote everything themselves. What is the signature thing...
6
by: Mike Daniel | last post by:
I am attempting to use document.write(pageVar) that displays a new html page within a pop-up window and the popup is failing. Also note that pageVar is a complete HTML page containing other java...
5
by: Jeroen Ceuppens | last post by:
How can you set that a function returns a type, but you don't know it from before? voidunknow Function() ? unknow Function()? Thx
3
by: Antonio Maciel | last post by:
Hi. I have a datatable created at runtime that I want to display using a repeater control. The problem is that the number of columns of the datatable can vary. Is there any way to configure the...
3
by: Water Cooler v2 | last post by:
Questions: 1. Can there be more than a single script block in a given HEAD tag? 2. Can there be more than a single script block in a given BODY tag? To test, I tried the following code. None...
2
by: bilaribilari | last post by:
Hi all, I am using Tidy (C) for parsing html pages. I encountered a page that has some script as follows: <script> .... var abc = "<script>some stuff here</" + "script>"; .... </script>
19
by: thisis | last post by:
Hi All, i have this.asp page: <script type="text/vbscript"> Function myFunc(val1ok, val2ok) ' do something ok myFunc = " return something ok" End Function </script>
3
by: rsteph | last post by:
I have a script that shows the time and date. It's been working on my site for quite a while now. Suddenly it stops showing up, after getting my drop down menu to work. If I put text between the...
1
KevinADC
by: KevinADC | last post by:
Note: You may skip to the end of the article if all you want is the perl code. Introduction Many websites have a form or a link you can use to download a file. You click a form button or click...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

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.