Forum Moderators: open

Message Too Old, No Replies

Decode Html Guard

         

klose

5:33 pm on Dec 29, 2009 (gmt 0)

10+ Year Member



<removed javascript example>

Hi i wanna decode this code which program or how can i decode this code please help.
i searched but nothing find :(

[edited by: incrediBILL at 6:51 pm (utc) on Dec. 29, 2009]
[edit reason] removed questionable code [/edit]

Fotiman

5:48 pm on Dec 29, 2009 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Welcome to WebmasterWorld! You might find your answer in this thread:
[webmasterworld.com...]

incrediBILL

7:52 pm on Dec 29, 2009 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Usually you see a place in the code that says "eval( unescape(....) )" and you replace "eval(" with "alert(" and a box will pop up that shows the decoded script.

klose

5:56 pm on Jan 6, 2010 (gmt 0)

10+ Year Member



I dont understand how to solve this code, im beginner and i dont know how to solve this code. which deocder i use to solve this code?

"<script language="JavaScript" type="text/javascript">function aroy(xlbh){var
zv43,e347="",ags5,q4we,jx7x=""

Fotiman

7:12 pm on Jan 6, 2010 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



As I mention in that other thread:
start by "beautifying" the code to make it easier to read and work with (a search for javascript beautifier will yield some results).

Then it's just a matter of walking through it line by line. The little snippet of code you've posted may look like this when beautified:


function aroy(xlbh) {
var zv43, e347 = "", ags5, q4we, jx7x = ""

So you can see a function, which takes a single parameter (xlbh), which has several variables defined in the function. You just need to beautify the whole thing, then put some alert statements inside to see what the values of some of it's properties are.