IDS Signature Unescape Assistance?
Nov 22, 2009
I am by no means a JS programmer, but I like to exhaust all avenues when attacking an issue. A signature fired off on a piece of javascript that came across the wire, with an odd "var unescape" inside of it. I am hoping to throw this code out there, to see if anyone has any insight on what this might be.
I am assuming this is double encoded, but I am not certain. Here is the snippet of code the signature fired off from:
var ibdf=unescape("%u0b0b%u0b0"+"b");
var fdofdopf="xcvb9090";
View 2 Replies
Jul 23, 2005
Does anyone know why unescape would throw an error on certain special characters?
I'm trying to unescape the string:
Espa%F1ol
It shou8ld display like this after it is unescaped:
Espaņol
This works fine on IE but not in Netscape 7.
View 6 Replies
View Related
Mar 31, 2007
My web application does user authentication through X.509 digital
certificates in combination with user name and password.
When the user applies for a digital certificate from my certification
authority (CA), I have a VBScript code that generates a public/private
key pair with the RSA algorithm, as well as the certificate signing
request (CSR) in PKCS#10 format. I assume that the key pair should be
maintained by the browser (my application support Internet Explorer
only at this moment). Am I right?
Now, when the user tries to log into his account, I would like to have
my web application receive a digitally signed token from the client.
The token can be the client's username signed with his/her private
key.
Since this signing process will happen on the client side, it can only
be handled by client side script, for example, JavaScript.
But, how do we get access to the private key with JavaScript?
View 2 Replies
View Related
May 13, 2006
What is the opposite function of unescape?
View 1 Replies
View Related
Dec 20, 2011
I came across this on a website, but i wanted to know if i can set a width="150" height="150" parameter somewhere inside this code. i really am i beginner at this javascript coding:
<script type="text/javascript">
<!--
var rand=Math.round(Math.random()*4);
var img=new Array(5);
[Code]....
View 4 Replies
View Related
Dec 30, 2005
My validate() function is not working quite right since it should validate for at least on checkbox checked and even if opne is checked it will simply display the error message instead of validating. What might be wrong here?
Here's the function (note, all the checkboxes have the id='chk')
function validate(){
var countChecks = 0;
if (document.forms.getElementById == "chk")
{
for (var j in document.forms.getElementById)
if (j.checked)
countChecks++;
}
if (!countChecks)
{
alert('Select some checkboxes!')
return false;
}}
View 9 Replies
View Related
Jul 23, 2005
Does the world need another DHTML popup calendar? Probably not, but I'm writing one anyway. It's unique in that it allows drag selection of a range of dates. Works great on IE6 but I'm having some trouble with Netscape and events. In particular, the mousedown event doesn't work. The event fires, but I can't seem to get a handle on what html element was clicked.
View 4 Replies
View Related
Jun 16, 2011
[URL]...heckboxes.html as directed and I can't get it to work. What do I need to provide to get some assistance?
View 14 Replies
View Related
Oct 9, 2011
What I'm trying to do here should be simple and I suspect that I'm just overlooking something basic but I'm overlooking it. If you can tell me what I'm not seeing here, I'll be most grateful. This is the associated HTML code. Two statements to be rated from 1 to 10 using radio buttons.
<tr>
<td width="25"><strong>A</strong></td>
<td width="210">A statement is here</td>
<td width="21"><input type="radio" name="SI_QA" id="SI_QA_1" value="1" /></td>
(total of 10 lines like this)
[Code]...
View 13 Replies
View Related
Feb 7, 2009
I'm trying to pass data I gathered from a prompt into a later function.
1. Should prompts for information be in their own JS file separate from the HTML page? Or is it better form to have the prompts (for info) in the HTML page itself?
2. I have tried placing the prompts to gather info in several places, each time my script seems to stop after the data is gathered and does not perform the calculations which are contained within a function. The input data is gathered from a prompt, do I still need to "return valuea" and "return valueb" in order to use the input data in the calculation function? Initially I did not feel I did, as I am not performing a calculation initially, just receiving input.
View 2 Replies
View Related
Jul 20, 2005
EBay has implemented a different way to upload auction pictures ---
after browsing for the picture and selecting it, the image preview
instantly displays on the screen, which is nice. Apparently this
process is being handled locally --- could someone try to re-create
this ? ... I imagine its using DHTML or some other technique, I'm not
sure how I would code this.
View 1 Replies
View Related
Jun 28, 2010
[URL] I'd also like to use this plugin, so I don't have to create complex validation rules. validation plugin [URL]Trouble is, I can't figure out how to prevent form submission without first checking to see if the form is valid. My attempts so far have been based on using submit() to prevent submission of the form if validations valid() method returns false. But this doesn't seem to work. If I use ajaxForm, the submit() function seems to work differently. A form will still be submitted, despite a return false. validate has a valid() method that returns false if the form fails validation. How can I submit the form only if valid doesn't return false?
[Code]..
View 1 Replies
View Related