Tagged Questions
-2
votes
0answers
13 views
Best practices to access Intranet services from DMZ [closed]
I'm building an FTP file upload service and requirement is that FTP handler is located in DMZ, but received files should end up on internal storage on Intranet. For that we have second service running ...
-4
votes
0answers
22 views
Error: “Request does not contain required security header” [closed]
I need to hook into the events Web Service for a client. I am developing in php. I get a "Request does not contain required security header". How do I add the security header to the request web ...
1
vote
0answers
27 views
Communications management with PasswordDigest (WSPasswordCallback from WSS4J)
Scenario:
We are developing a Java library to deploy an authentication subsystem, which acts as an intermediary of two end-points: an originator program (which sends us the SOAP message, made by the ...
-1
votes
2answers
29 views
How to restrict API access to limited domains names?
I am creating RESTful web services, but I want to protect those web services and want to give access to specific domain names. I have achieved that by following code in PHP:
$allowed_hosts = ...
-1
votes
1answer
36 views
Signed applet jar still fails for some commands
I used this code to insert data to my restful web service using restful client application as follow
NewJerseyClient client = new NewJerseyClient();
Prints p = new Prints();
...
-2
votes
1answer
30 views
Resources like images and securing them
I've been thinking about this off an on and did a quick test with Facebook. Assume you have a facebook like site and strip it down to images and profiles. Images you choose to either share with ...
0
votes
1answer
35 views
Invoke webservice using HTTPS in Java
My webserice provider provides HTTPS services and I need to consume them. I'm using JAX-WS and invoking the webservice with given HTTPS URL, The response is coming as expected, but when I see the logs ...
2
votes
1answer
42 views
Deploying Configuration Files with Production Code
In trying to deploy a Node.js server using Git to an Amazon Elastic Beanstalk instance, I started to wonder what a more secure/efficient practice might be than pushing up a config file and letting it ...
0
votes
0answers
22 views
Cannot see WebService Role in WebLogic Console
I am trying to automate the following steps i do through WLS Console :
a. In the Weblogic console's Home page, click on Deployments link form left, find "gateway-management-service"
b. Expand, ...
0
votes
1answer
62 views
How to secure Web services in ASMX file?
I have some critical db connection done through web service .asmx file which is accessible and can be open through direct browse through browser How to prevent some methods and allow some methods to ...
4
votes
2answers
91 views
Security of web services (REST & SOAP) [closed]
My first post here! I wanted to get some community help on security of web services.
I'm doing a state of the art on web services security. I need every bit of a solution out there that solves ...
0
votes
0answers
38 views
Access properties in soap envelope from inbound and outbound messages using java handlers
I'm currently experimenting with web services in java and already have them working using jboss server 7.1. Now i'm trying to use handlers to intercept the messages so i can add a security layer ...
0
votes
0answers
25 views
SSL enabled webservice calling Exception
Frankly I am new tothis so please bear if it seems stupid.
I have a web service client (auto generated) from Jdev version 11g. My websercie provider has SSL security certificate. When I run my client ...
1
vote
0answers
45 views
JavaFX code cannot connect to jersey web service
I'm building a JavaFX GUI which I want to run in a browser. The GUI connects to a Jersey Webservice, and runs fine if I run the JavaFX code as standalone, however, if I run in a browser I get the ...
-1
votes
1answer
24 views
Securing information on a public service from man-in-the-middle
How to secure information on a public service that provides private information?
The service provides some information based on the username and password the client sends to it. For example:
Request
...
0
votes
0answers
23 views
WCF in a domainless setting
I have a .NET client-server system, which uses WCF for communication.
The communication must be secure. Up to now I used Windows Credentials for authentication.
But now a new requirement emerged - ...
0
votes
1answer
27 views
Security protocol to allow only one mobile app requests to server
Is there a well proven security protocol to use to ensure that the request sent to my web server comes from a specific mobile application (The mobile application should be deployed in many phones)?
...
0
votes
0answers
23 views
User Database API Design
I'm developing a web API for a user database that will be used to verify a given username / password combination is valid.
I'm just looking for comments / criticism on the following method that I'm ...
0
votes
0answers
24 views
Securing a fiddle-like webapp for a compiler?
I'm planning to build a web application that will let the user write his own code, compile and test it in-browser, like phpFiddle, or Golang's tour
I am aware that securing a server like this will ...
0
votes
1answer
60 views
issue while accessing secure web services in c#
I am using this as web service reference
http://<hostname>:8080/axis/services/USD_R11_WebService?wsdl"
but now I have to use secure one using ssl such as
...
1
vote
1answer
61 views
Prevent others from calling your JSON web service
Let's say I have some code that creates an HTML page with a JSON service call.
How can I prevent others from copying and pasting the source code, calling the service and getting the result set for ...
0
votes
1answer
37 views
Consumer secret exchange (encryption best practices) [closed]
I have a general question for any security minded experts out there. Currently have a requirement to securely manage the exchange of a "secret" between a client application (generally exists in SFDC) ...
0
votes
1answer
60 views
Android. What is the best and safest way of storing data (updates from web service)
I saw similar questions but they don't fulfill my requirements.
I have an app that time to time needs to be updated from a web service. Data contains such fields as url, description, title. from 200k ...
0
votes
4answers
390 views
How to implement Authentication and Authorization for my Web API web service?
I have a Web API Web service which is used by a number of client applications with different technologies like Java, .NET, etc. Therefore, my user credentials are stored in a separate database.
My ...
0
votes
3answers
71 views
What should i use to secure parameters in a REST webservice
i want to develop an authentication web service, which can be used in an android app to login and have access to other services. So basicaly i'm sending credentials over HTTP requests and granting ...
0
votes
1answer
147 views
Symfony2 custom authentication : user logged but not authenticated
I've been working on a custom authentication system with Symfony 2.1. After a lot of battle with Symfony I've got something that working but not fully...
Problem : After the login (through a form), ...
2
votes
1answer
46 views
secure params in ruby on rails
I'm having a form that dont actually saving a model, so When i do POST the form, there is email and password, but somehow I dont want to expose my password to others.
I did this
...
2
votes
2answers
279 views
Java HTTP post using HTTPS Confusion - javax.net.ssl.SSLException: hostname in certificate didn't match
I'm sending an https POST on some url using Apache HttpClient.
HttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
HttpResponse response = ...
-3
votes
2answers
79 views
Web Service for Android app. More important security. SOAP o REST? [closed]
I need to implement a Web Service for Android App. Security is more important than other thing. What is more recomendable, SOAP or REST ?
Thanks a lot.
0
votes
0answers
36 views
Retrieve user credentials from ServiceModel.Description.Credentials
I've been tasked to create a custom membership provider for our MVC webservice.
The custom membership provider isn't to much trouble.. but i've come across a problem.
Our customers are able to log ...
0
votes
1answer
92 views
jquery webservice login
I've been trying to get this working for a good amount of time but I can't seem
to get my head around it.
I'm trying to login using jquery mobile calling an ASP.net webservice.
The webservice is ...
0
votes
0answers
54 views
Security risks/implications of SQL Server Web Service end points
Question: what are the risks/concerns/issues with exposing a SQL Server Stored Procedure as a web service end point?
Some context. We have:
a SQL Server 2005 database which is used to log ...
0
votes
0answers
107 views
Using PrincipalPermission with custom membership provider MVC WCF
Code
public class CustomMembershipProvider : MembershipProvider
{
public bool ValidateUser(string UserName, string Password)
{
return false; //Based on this, the principal permission ...
0
votes
2answers
42 views
Is a WCF service open for method calls for any computer in the network by default?
I have a silverlight web application and I am loading data to the client side using a wcf service. Should I secure the WCF service? Can anyone who's on the network call methods of the service?
1
vote
0answers
110 views
Symfony2 authenticating users through a webservice
I'm currently dealing with Symfony2's Security component.
I try to authenticate users against a webservice. To authenticate a user, I have to provide to the webservice a username and a password.
I ...
1
vote
0answers
76 views
how can I set the username and password of a https web service within java cxf generated client?
I have created client code of an https web service using soapUI and apache-cxf-2.7.2. There is a class named MYService_BasicEndpoint_Client.java which contains this method:
public static void ...
1
vote
0answers
61 views
Passing the salt along with hashed security key in URL
So I'm trying to authenticate against a third party web app. The documentation with this third party web app suggest taking the our security key provided by the third party web app and hashing it with ...
0
votes
0answers
42 views
calculate xml signature value
Can anybody give me some info about how the signature value is calculated?
I am trying to add an xml digital signature to a soap request and i can get the correct digest but a wrong signature .
I ...
0
votes
0answers
49 views
Digital signature prefix issue
I am facing an issue and cannot figure out what i am missing.I am calculating a digital signature in c# and cannot get the right signature value.Does anybody know if signature prefix can change the ...
0
votes
1answer
85 views
What are conventional and best practices for REST web service quthentication?
I am starting a new project (a web application) and would like it to retrieve and submit the most of its data through REST web services with AJAX. But I hardly have a good idea of how to ensure a web ...
0
votes
0answers
103 views
signature reference
i have to call w web service that needs my soap body to be digitally signed and include a security tag in my header containing this signature..I am using .net2 framework and i am trying to compose my ...
0
votes
1answer
62 views
Security Exception - mscorlib, Retrieving COM class component with CLSID failed
I have having trouble in this phase where it initialize the app.
public static void Initialise()
{
Application.ThreadException += new ...
0
votes
1answer
131 views
Windows Phone 8 secure connection through Azure, to an on-premise web service
I am working on a WP 8 app which I would like to connect to an on-premise(local) web service. I have managed to do so using simple BasicHttpBinding without secuirty and Azure Service Bus Relay, but i ...
0
votes
1answer
98 views
How to secure the webservice URL from iphone?
i have been working with iphone app calling webservices (php with parameters) many times. But how ever i was asking is it secure? I heard of network monitoring tool which can detect out going data ...
0
votes
0answers
34 views
Common Base type for WebRequest and WebClientProtocol
I'm trying to have a function that will assign the credentials property for a WebClientProtocol and a WebRequest. The problem is that, with strict option on, I can't find a base type that both ...
1
vote
0answers
44 views
OAuth2 - Securing multiple webservices' APIs with one token
I have three web services exposing their APIs.
Internally they are running on different ports but on the same server.
Then I have a nginx instance mapping those services to "api.domain.com", so that ...
1
vote
0answers
374 views
org.apache.axis2.AxisFault: Missing wsse:Security header in request
I am working in axis2-1.6.2, rampart-1.6.2 & apache Tomcat 7. Based on this link http://thilinamb.wordpress.com/2009/10/20/saml-2-0-token-profile-support-in-rampart-1-5/#comment-118, I have ...
1
vote
0answers
30 views
Authenticate WebSerivce with Facebook/OpenID
Simplified background:
Website that allows users to upload and comment some content, let's say images (classic CRUD web application).
Three ways to sing in into the system: classic username/password ...
0
votes
2answers
225 views
Webservice over SSL endpoint not found with 404
I've got a webservice up and running and through the browser I can reach it and see it's up and running. Also without https I can make calls to the webservice.
To make calls at the moment I'm using a ...
6
votes
3answers
391 views
Designing an API with designated client keys
I'm designing a JSON web API and want to distinguish clients by unique IDs, in order to monitor usage and block malicious/misbehaving clients. The API is NOT encapsulated in a JavaScript library and ...



