Tagged Questions
1
vote
1answer
18 views
Inheriting IObjectSafetyImpl for safe javascript activex control in C++
Im having trouble setting my control to be safe.
I found this thread which explains how it needs to be done.
I did as explained:
class myctrl: public COleControl, public ...
0
votes
1answer
76 views
implementing Js widget: Relying on $_SERVER['HTTP_REFERER'] variable to check on the host domain is safe?
I'm implementing a Js widget , the widget with source code is on domain1.com
the host of the widget(viewer) is on domain2.com
On domain1.com I'm using PHP as server scripting language.
What I need ...
-4
votes
3answers
67 views
How to make my ajax requests safer? [closed]
Like a lot of you guys know that the javascript functions or methods can be ran through browser adress bar. I want to prevent that happening by what kind of concept i should use where user may NOT ...
0
votes
2answers
636 views
Mark JavaScript as Safe
I am attempting to run a javascript that installs a utility on a client's system via web browser. Bare with me as these are business requirements. I appear to have put something together that does ...
2
votes
3answers
254 views
Javascript security question / Using eval()
I'm seeing code in the following form - is such use of eval() safe?
function genericTakeAction(frm_name,id,pagenum,action)
{
var rset=eval("document."+frm_name);
var ...