The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
24 views

WPF POS Browser App

we want to use a barcode scanner to scan QR Codes and want to use it in a WPF Browser Application. I have downloaded POS for .NET. But if i try to execute the following line of code: Dim ...
0
votes
0answers
20 views

ASP.net security exception SvgDocument

I am trying to use the module SVG rendering on GoDaddy hosting account. I cannot seem to get around the security exception that is generated. Appreciate any help. Note that I am using webforms with ...
0
votes
0answers
80 views

Creating an instance of DynamicDataManager in a SharePoint 2013 webpart throws MethodAccessException

I'm facing a strange problem in SharePoint 2013 WebPart that instantiates an object of type System.Web.DynamicData.DynamicDataManager. It throws the following exception: [MethodAccessException: ...
0
votes
0answers
59 views

Prevent C# code from writing to anything but one file (something like CAS) [closed]

I'm working on a service that acts a bit like a web server, except it mainly handles JSON API requests instead of serving web pages. It's an addon to an existing application. Since it is ...
0
votes
3answers
119 views

C# Application cracking

we have created an application like adobe reader to read a special encrypted document file format which does recognize only by our application. what we want to do is to let user buy the application ...
0
votes
3answers
88 views

Django/Forms: How can i validate initial data against received data (if match)?

Let's say that i'm creating a form and i'm passing some hidden values through bound, that must not be changed. My question is how can i test if a malicious user has changed this hidden values? I'm not ...
3
votes
1answer
52 views

How to run user-submitted modules securely in a node.js?

We are planning to develop a business oriented application platform on node.js + express. And we like to allow users to run their own native node.js modules (set of files js, css, html), so generally ...
2
votes
2answers
49 views

Controlling access to loading of a JAVA class at runtime

I have a requirement to restrict access to loading of a particular class of a JAVA application, at runtime. Just wondering whether this is possible using JAVA Security Manager with a security policy. ...
0
votes
1answer
26 views

Why CAS 2.0 Framework doesn't work?

I'm playing with CAS in Framework 2.0 (I know that it's obsolete). I have following code, that I'm trying hard to crash. I've compiled project in 2.0 framework: using System; using ...
0
votes
1answer
78 views

How to prevent a change to a Java system property (in Java EE)?

An application I maintain uses a third-party commercial EJB implementation. I do not have the ability to change the source code, but I can read it. I have determined that the source code of the EJB ...
-1
votes
1answer
96 views

How to read performance counter values without special privileges?

My Office add-in needs to be able to read System.Diagnostics performance counters (CPU, memory, etc) and I can't assume that the user is a member of the administrators group or Performance Monitor ...
2
votes
1answer
63 views

Consequences of SecurityPermission and SecurityPermissionFlag.SkipVerification

In the MSDN documentation, SecurityPermissionFlag.SkipVerification says: Ability to skip verification of code in this assembly. Code that is unverifiable can be run if this permission is ...
0
votes
1answer
45 views

Security Transparent alternative for RuntimeHelpers.PrepareDelegate

I need to pre-JIT some emitted delegates ahead of time and tried using the RuntimeHelpers.PrepareDelegate for this, but this method is marked with the SecurityCritical attribute. My assembly is marked ...
0
votes
1answer
146 views

C# webservice and Android app: how prevent illegal accesses

I'm using (with satisfaction) some web services from an Android application. I use https (I bought a SSL certificate). I want to prevent unwanted accesses from others that know the urls of my web ...
0
votes
0answers
25 views

Experiencing System.Security.Perimissions.SecurityPermission Exception in SSRS

I have a reporting server which is installed on a remote machine. I also have BI on the same machine. I have created a report which access custom dll. I did everything right on the remote machine ...
2
votes
2answers
250 views

Is is possible to see the code for shiny glimmer apps

Hi this is more question of code security, rather than a question about a directly coding related problem. But I was wondering is it possible to see the code in ui.R and the server.R and that ...
0
votes
0answers
43 views

In CUA logical system names are stored in which table?

In which table the logical system names are stored in CUA in SAP Security? I was bit confused, can anyone suggest the possible solution for this... Thanks Harsha
1
vote
1answer
39 views

css compression with php security bug

I got a script that uses query(s) provided to it and exploding them calls the files from directory. Here the script <?php header("Content-type: text/css"); $safehash = ...
3
votes
1answer
217 views

How do I implement Exception.GetObjectData in .NET 4 in a library assembly that has the AllowPartiallyTrustedCallersAttribute?

I have an assembly marked with the AllowPartiallyTrustedCallersAttribute which contains a custom exception class. I want to make it serializable by overriding GetObjectData. With .NET 4, ...
1
vote
1answer
118 views

Loggers and java.lang.SecurityManager

I understand that java.lang.SecurityManager is used to check and constrain class access or file access based on a specific scenario. I need to identify the caller for Log4J Helper class which needs ...
0
votes
1answer
47 views

Securing uploaded files in PHP

I have a site with user logins and sessions. I'd like to allow my users to upload files to the webserver, but only have them available for their login. I understand if I upload to some sort of ...
0
votes
1answer
73 views

How to secure the software application in a single board arm computer?

We had developed an application in C language. We then cross compiled it and have it port over to an ARM Single Board Computer that is running Linux. We are starting to sell this SBC to customers for ...
1
vote
2answers
71 views

Slow performance with SecuritySafeCriticalAttribute on win server 2008

My Application spend too many time on Wait method Environment: .Net 4.0 App Platform x86 Console app win server 2008 (x64) I've checked performance by dottrace Wait is marked by ...
1
vote
2answers
89 views

Request for the permission failed from a desktop app running on a network drive

The following exception is raised when opening a WCF client from a .NET 4 desktop application. This only seems to be happening at one of our client installations: Request for the permission of type ...
1
vote
2answers
100 views

Why Java reflect can access to private field/method?

in Java, we can write Foo f = new Foo(); Method method = f.getClass().getDeclaredMethod("say", null); // private void say() method.setAccessible(true); method.invoke(f, null); Why Java reflect ...
-2
votes
1answer
139 views

PHP How To Restrict domain to send POST request [closed]

I need to restrict POST request from specific domain. As far I know, HTTP_REFERER checking cannot be a good solution because it can be spoofed. So what can be the good solution when two different ...
0
votes
1answer
599 views

.NET Security Exception only in external code

I am using VS2012 with VB.NET for a winfowms app, using Active Directory roles. Running the program as a user without permissions, I am getting an (expected) security exception when trying to launch ...
0
votes
2answers
140 views

How do I obscure a single function in a PowerShell module?

I have a module that includes a function with some private data that should be secured. I don't want the hassle of constantly compiling the whole module, if that is even possible. I want to be able ...
4
votes
2answers
354 views

How can I successfully run secannotate.exe on a library that depends on a Portable Class Library?

I am working on the Autofac project trying to convert all of our common logic into Portable Class Libraries and adding platform-specific libraries for specific functionality. My development machine ...
-1
votes
2answers
67 views

How to prevent including remote server file or shared server file?

I am using Xampp server on my system and by twiking some PHP.INI settings on Xampp server of my system just discoverd that I can include my php files from my remotely hosted site. Although I could not ...
0
votes
3answers
71 views

Bypassing a browser security limitation on my own computer

I'm trying to create a list of languages' directions (Left-To-Right or Right-To-Left. Other directions don't exist in Wikipedia) by their prefixes (en, fr, es, …) in Wikipedia. To do that I wrote a JS ...
3
votes
2answers
136 views

How to verify that the source code is copied from web

I am building a web tool to check whether the submitted content is taken from web or is it submitter own work. A plagiarism detector. I have some idea that I can generated check sum and use that as ...
0
votes
0answers
284 views

Preventing .NET from checking code signing certificate's revocation status for certain assemblies

I'm looking for a way to instruct the .NET runtime, that it shall not check online the revocation status of a code signing certificate with the respective certification authority for certain ...
1
vote
1answer
87 views

Code Access Security on a per-view ASP.NET MVC basis

My ASP.NET MVC application includes a number of View files that are editable by the end-user (they're stored in a database and loaded via a VirtualPathProvider). I'd like to allow my users to edit ...
0
votes
0answers
60 views

create/scale image securly without chmod 777?

I am working in a dedicated virtual (mediatemple.net) environment for this site. I want to create (scale, crop) my own images, either from a script that makes images with php, or from user-uploaded ...
3
votes
1answer
1k views

Attempt by security transparent method X to access security critical method Y failed

I have a fairly stable server application version that's been deployed for nearly a year at dozens of customers. One new customer recently setup the application and is getting the following error: ...
0
votes
1answer
105 views

ReflectionPermission not granted even though Trust level is High

I'm trying to run an ASP.NET 2.0 app on Windows 2008, IIS 7.5. The app throws this exception: SecurityException: Request for the permission of type ...
2
votes
3answers
52 views

Why not show error messages and system specs to users?

Sometimes I'm on one of my sites, and I run into a DB error that just throws itself out there onto a publicly visible page. I hurry myself to sweep it up, repairing the error when it doesn't belong ...
0
votes
0answers
72 views

Javascript behaves differently in Chrome vs. Chrome app

I am learning how to develop offline chrome app. I have three components: main.html, main.css, main.js Main.js is loaded in main.html /html/head/script using this tag: <script ...
0
votes
1answer
170 views

I migrated my ASP.Net site from one UNC path to another but a subapp is giving me an AspNetHostingPermission

I've migrated my ASP.Net website from a UNC path on one server to a new UNC path on a new, bigger server. After messing about with Code Access Security permissions in caspol and making sure the ...
0
votes
2answers
1k views

“PolicyException: Required permissions cannot be acquired” in Full Trust — can't see why

This is a two-part question, of sorts. I'm trying to set up a new part of our Production (Live) hosting architecture, so I'm trying to point our Staging webserver to the new Production content share ...
1
vote
2answers
120 views

How to secure source files of a project?

In my company, we are developing against a local server, we do not keep a copy of the file-base on our personal laptops given by the company, that we take home. There are 2 problems with that: We ...
1
vote
0answers
35 views

Limiting code access to method call within main AppDomain (.NET)

Is it possible in .NET to limit the permissions granted to a method call without running the code within a separate app domain? For example, let's say I load in an assembly FooBar.dll which I know ...
2
votes
2answers
49 views

Method use limitations

I was wondering if there is a way to stop one class from using a method but let another use the method depending on what they extend. Lets say class1 implements Plugin and class2 implements Mod, is ...
0
votes
0answers
127 views

Returning Mutable Class Object in a getter is a OWASP security Threat

I am fixing code against the code audit report for my module. It says "Avoid methods that might expose internal representations by returning arrays or other mutable fields"` Now my application is ...
0
votes
0answers
155 views

Loading .NET assemblies from a network share

I've created an assembly that needs to run from a network share for use with AutoCAD. The code runs fine when called from AutoCAD on the local PC, but when called from the network share it throws a ...
0
votes
0answers
245 views

Trust level in asp.net 3.5

I have created a website and uploaded using Godaddy hosting... When I am trying to access a page which has an editor to insert data.. I get following error *Description: *The application attempted ...
2
votes
1answer
193 views

Is System.Web.Caching.Cache expected to work in sandbox?

I'm trying to run a piece of code in a sandbox. It failed and the problem comes from the part of the code where cache is used. Case where it works as expected: public void Demo() { // Verify ...
0
votes
0answers
201 views

How can my SharePoint WebPart dynamically generate and execute code without FullTrust?

I have a SharePoint 2010 WebPart which uses the CodeDomProvider to dynamically generate and, subsequently, run code. The DLLs for this WebPart are deployed to the GAC and everything works fine if the ...
3
votes
2answers
90 views

Let the user choose to grant permission in android

We have a AutoCompleteTextView which is able to read from the users-contact-data as a convenience. However some users complain about the "READ_CONTACT" Permission the App is enforcing at installation. ...

1 2 3 4 5