Can you easily crack this code? Everyone please leave your opinions...

Discussion in 'HTML & Website Design' started by awaisuk, Nov 25, 2007.

Thread Status:
Not open for further replies.
  1. #1
    Hey,

    Someone encrypted this link for me. I dont know much about encryptions.

    This is the encryption:
    
    <html>
    <head>
    <script type="text/javascript">
    setTimeout("stream()",1000);
    function stream(){
    document.getElementById('embed').innerHTML = atob('bW1zOi8vc2l0ZS5jb20vc3RyZWFt');;
    }
    </script>
    </head>
    <body>
    you cant see stream url in source ;)<br>
    
    <div id="embed"></div>
    
    </body>
    </html>
    HTML:

    Windows media player link is hidden somewhere in the code, link should start with MMS://

    I think this is done with AJAX as he told me, i need to protect my mms:// link on my website, so thats why i want to know how easy is this code to decrypt/crack.

    Please leave your opinions if you can decrypt/crack this code easily or not.
     
    awaisuk, Nov 25, 2007 IP
  2. veckd

    veckd Peon

    Messages:
    1,065
    Likes Received:
    23
    Best Answers:
    0
    Trophy Points:
    0
    #2
    the link is: mms://site.com/stream right?
    If you just save the code you gave us and open it in a browser it tells you. Theres not really any decrypting to it. The only way I know how to do it that is closer to full proof is through php.
     
    veckd, Nov 25, 2007 IP
  3. awaisuk

    awaisuk Banned

    Messages:
    1,013
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Yes, thats the link...

    How can i do it through PHP?
     
    awaisuk, Nov 25, 2007 IP
  4. joebert

    joebert Well-Known Member

    Messages:
    2,150
    Likes Received:
    88
    Best Answers:
    0
    Trophy Points:
    145
    #4
    The data isn't "encrypted" per say. It's base64 encoded.
    base64 encoding is commonly used for email attachments.

    You're wasting your time trying to hide or encrypt your sources.

    Plan out a registration system & plan on canceling accounts that have abnormally high amounts of data going through them, or that are going to multiple addresses.
     
    joebert, Nov 25, 2007 IP
Thread Status:
Not open for further replies.