Tagged Questions
-2
votes
0answers
42 views
Can any one decode this type of script “<citlnug=JvSrp\”ea(ucinpacker{=ucinc{eunca':(asItca) (=%)3 [closed]
How to decode this javascript ???
{
var posts=5,
num=2,
previous="«",
next="»";
...
1
vote
1answer
23 views
decoding a bin file to mp3 using Node Js
I am encoding a MP3 file to Base64 in Node Js using this method :
encodebase64 = function(mp3file){
var bitmap = fs.readFileSync(mp3file);
var encodedstring = new Buffer(bitmap).toString('base64');
...
0
votes
3answers
68 views
can someone decrypt this javascript?
is there a way to know what this javascript code is, i'm sorry if this seems weird.
var _0x7e0d = ["\x63\x62\x6F\x78\x66\x6F\x72\x6D", ...
0
votes
0answers
56 views
javascript encode base64 for persian language & characters
I have a website that is in Persian language (only the content), and I'm doing AJAX calls here and there, but the problem I'm encountering is that I encode the data (let's say user info) that I'm ...
0
votes
0answers
35 views
0
votes
1answer
120 views
How to decode unicode HTML by JavaScript?
How to use JavaScript to decode from:
\u003cb\u003estring\u003c/b\u003e
to
<b>string</b>
(I searched in internet, there are some site with same question, such as:
Javascript html ...
0
votes
0answers
35 views
How to decode byte of array data using javascript [duplicate]
I have the following type of data. It is an array of bytes data getting after Ajax request calls to server. Server encodes respective file and returns this data as response. Now I have to decode that ...
0
votes
1answer
87 views
Encode-DecodeAdventure
I tried to encode special characters in javascript using encodeURI() and encodeURIComponent() functions and decode them using the java.net.URLDecoder.decode() method and this worked like a charm in ...
0
votes
1answer
87 views
Decode a PHP serialized value in Javascript/Jquery
Just a quick question. Is there a built in function to decode a PHP serialized value in Javascript or jQuery? A have a PHP serialized array stored in a database and this is sent via AJAX to the page.
...
1
vote
1answer
171 views
javascript translation, encode in php decode in javascript
Hi I'm trying to encode a string in PHP then output in javascript because otherwise Javascript gives me error.
I tried this http://pastebin.com/7RmjDcJY:
<?php
echo "<script ...
0
votes
0answers
96 views
How to decode in php a javascript value [closed]
I'm working on a scarper application and I need to get a javascript value and post it to a specific URL (using php ).
The value looks like this http://pastebin.com/index/rVPwAY5v
The value is ...
3
votes
1answer
572 views
DOM Exception 5 INVALID CHARACTER error on valid base64 image string in javascript
I'm trying to decode a base64 string for an image back into binary so it can be downloaded and displayed locally by an OS.
The string I have successfully renders when put as the src of an HTML IMG ...
1
vote
2answers
144 views
How to decode HTML entities for XHTML application
How to decode HTML entities for XHTML application?
For example, $("<div/>").html("·").text() will raise an JavaScript error.
Error is:
[Exception... "An invalid or illegal ...
-2
votes
2answers
170 views
can anyone decode this javascript please [closed]
i have tried all decoder but no result for this javascript code, and i dont know what encode type for this javascript code, anyone can help me or just type of this encode.
i have tried online ...
0
votes
2answers
247 views
Decode string in RTF format
A software encode output string that seems is RTF, how can I decode it with JS, a sample of its output is:
1. \tab \uc0\u1776{}\uc0\u1777{} \uc0\u8211{} ...
-8
votes
1answer
148 views
Can someone decode this javascript for me [closed]
can someone decode this for me
var _0x2b76=["\x68\x74\x74\x70\x3A\x2F\x2F\x66\x72\x65\x65\x64\x72\x65\x62\x65\x61\x74\x73\x32\x30\x31\x32\x2E\x6E\x65\x74",
"\x69\x6E\x64\x65\x78\x4F\x66",
...
0
votes
2answers
96 views
Javascript function to Php
I need to encode a password to hexadecimal in javscript and then decode it in php. I have a function that does the two things but in javascript. I tried to transform it to php but there are some ...
0
votes
2answers
1k views
Decode Javascript
I have on my webserver an application from where I encoded/compressed the javascript code long ago. The problem is that I don't got the original source anymore, so I need to decode/decompress the one ...
1
vote
2answers
1k views
Decoding javascript escape sequences in PHP (\x27, \x22, etc…)
If I have this PHP string:
$string = '\\x27\\x22';
How would I decode it to '"?
0
votes
1answer
209 views
Encode and Decode in Javascript and php
I want to send a set of HTML contents using POST method in Ajax. It consists of some special characters When I retreive it using PHP, only half of the content is there.
This the example content which ...
0
votes
0answers
31 views
ADOBE CVE2010-2883 Decoding
I am having a problem decoding this JavaScript that is embedded into a malicious pdf. I am trying to reverse engineer but am only able to do the unescape and that is it. I have tried Malzilla, ...
3
votes
1answer
64 views
Could use some help decoding this code
I'm attempting to decode this bit of code I found in Raphael.js's source (it converts from an HSL color to an RGB color, this is only a part of the function):
var R, G, B, X, C;
h = (h % 360) / 60;
C ...
0
votes
2answers
544 views
Encoding and Decoding Strings From Javascript to C# - Not Working
I am having an issue with some string encoding, maybe its a iis issue, or something i am overlooking. Basically, randomly, when users commit changes, the text gets stored with the %20, as if its ...
0
votes
1answer
109 views
How to store large sequences of doubles as literal string in javascript file
What is the best way to store ca. 100 sequences of doubles directly in the js file? Each sequence will have length of ca. 10 000 doubles or more.
Requirements
the javascript file must be executed ...
0
votes
2answers
467 views
Deconding HTML Decimal encoded character
Is there anything embedded in javascript that decodes an entry like " to " ?
I would need something similar to what is found here : http://www.hashemian.com/tools/html-url-encode-decode.php ...
1
vote
3answers
160 views
Little black “?” spaces?
As seen in the included link to the picture. I am getting these little black diamond shaped question marks, i'm guessing it has something to do with the url encoding.
http://prntscr.com/7gkxb
(the ...
-11
votes
3answers
978 views
Decode SHA1 using javascript? [duplicate]
Possible Duplicate:
Is it possible to reverse a sha1?
Decode sha1 string to normal string
Convert SHA1 back to string
I found this
http://www.webtoolkit.info/javascript-sha1.html
to ...
5
votes
3answers
2k views
Decode JPEG2000 bitarray image with Javascript
I'm using HTML5 technology with the FileApi.
My problem is very simple, but i'm searching since 2 days ago and I have not find anything on the web
I have a DicomFile. I use the FileApi from HTML5 to ...
4
votes
4answers
2k views
Decode this strange Javascript
I came across this code in a .js file. What is this code ??
I have downloaded that file onto my localhost webserver.Keeping this code in the .js file redirects me to google.com and when i am ...
-1
votes
2answers
1k views
javascript chinese/japanese character decoding
I created a JSONP function on the server and returns a UTF-8 encoded json object like this
applyLocalization({"Name":"%E5%90%8D%E5%89%8D","Age":"%E5%B9%B4%E9%BD%A2"});
on my javascript on the ...
0
votes
2answers
501 views
decode javascript sequence into python
I'm a beginner to Python trying to decode this javascript sequence. I'm not only a beginner in Python, I understand javascript even less :) I know i could put it into an online decoder such as this: ...
12
votes
3answers
7k views
How do I decode a string with escaped unicode?
I'm not sure what this is called so I'm having trouble searching for it. How can I decode a string with unicode from http\u00253A\u00252F\u00252Fexample.com to http://example.com with JavaScript? I ...
2
votes
1answer
838 views
decode dean edwards javascript packer with a php class
Class file http://pastebin.com/apGPiAXd
I found a php port that encodes and decodes the dean edwards packer for javascript. Located here http://joliclic.free.fr/php/javascript-packer/en/. I am not ...
0
votes
2answers
474 views
Convert base 64 encoded data to binary data with JavaScript
When I fire a async call to a server, I receive the base64 data of a PDF file (binary data). I want to convert this base64 data to binary and give the user as a file from browser side. I found ...
0
votes
2answers
291 views
How to decode and encode a multidimensional array in javascript and php
I need to encode a three dimensional array in javascript, send it to a php script and decode it there. The Problem is, javascript outputs array, just as one sequence of integers, you can't see the ...
1
vote
1answer
822 views
JavaScript Encode
Surfing on web i find Ext.Gantt plugin for ExtJS, that extension have a special encode. Anybody know how to encode like that or another complicated form.
Encoded Gantt Chart
1
vote
2answers
4k views
decode eval function in javascript?
I got this a function eval in javascript - http://pastebin.com/E1PXQeKj
but i don't know how read it? how does this generate or decode the string?
or simply how is this code?
thanks for help!
0
votes
1answer
326 views
Decode Javascript Encoded Variables
How do I decode encoded javascript variables like:
_0xa2bax2
_0xa2bax3
_0xa2bax5
Edit
I decoded most of it but there are still portions I can't decode:
var _0xa2bax2 = 'DESCRIPTION';
FB['api'](
...
1
vote
3answers
660 views
JavaScript multiline string decode
I have a string:
<Grid><Description>LINE 1
LINE 2
LINE 3
LINE 4
</Description><</Grid>
I need it to be decoded with line breaks. I ...
0
votes
1answer
339 views
How to decode JSONP data with jQuery?
I have some data that I'm retrieving using JSONP from a remote server. The content contains HTML and I need to make it so the characters render properly instead of printing the tags out. For example, ...
4
votes
3answers
2k views
Can someone decode this javascript?
I found this javascript in a Facebook viral page here. I think the code is malicious so I would like to know what it does.
Here is the code:
javascript: var ...
2
votes
1answer
4k views
Compressed JS Decoder
http://www.lotterypost.com/js-compress.aspx
This is site is very nice for compressing JS
but I want to decode....
And instead of online is there any free best tool to encode/decode Js
1
vote
4answers
706 views
Decode base64 data as array in Python
I'm using this handy Javascript function to decode a base64 string and get an array in return.
This is the string:
base64_decode_array('6gAAAOsAAADsAAAACAEAAAkBAAAKAQAAJgEAACcBAAAoAQAA')
This is ...
5
votes
3answers
2k views
Why doesn't decodeURI(“a+b”) == “a b”?
I'm trying to encode URLs in Ruby and decode them with Javascript. However, the plus character is giving me weird behavior.
In Ruby:
[Dev]> CGI.escape "a b"
=> "a+b"
[Dev]> CGI.unescape ...
0
votes
1answer
897 views
Converting JavaScript to C#
I'm a bit baffled when it comes to converting this javascript over to C#...
Any help would be appreciated!
Here is the javascript:
function d(strInput) {
strInput = decoder(strInput);
var ...
1
vote
2answers
617 views
What's wrong with this assignment of json object from php to javascript?
I need to pass the value of a php json object to javascript. This is how I am doing it;
<script type="text/javascript"> var msg_top = <?php echo searchResults('windows');?>;
...
12
votes
1answer
7k views
What is the equivalent of JavaScript's decodeURIcomponent in PHP?
I have some string with unicode characters and was endcoded with javascript decodeURIcomponent.But i dont find any equivalent in php to decode it.Is there any solution for this?
0
votes
2answers
644 views
Encode email with PHP then decode with JS
I'm working on a website that has many business profiles with their contact information which also include email addresses. Obviously I don't want to output the plain email addresses in the source due ...
24
votes
4answers
23k views
Decode & back to & in javascript
I have strings like
var str = 'One & two & three';
rendered into HTML by the web server. I need to transform those strings into
'One & two & three'
Currently, that's ...
1
vote
1answer
1k views
jQuery ajax function return
I have this function that embeds flash :
function embedswfile(target, swf, base, width, height) {//dosomething}
And I want to call the function like this
...

