Web security is the broad term given to practices used to improve application security over the internet. This can include systems used and stored on the internet, and systems transferring data across the internet.
0
votes
1answer
13 views
Why does reset password URL expire?
More of a theoretically question. Writing a secure login system and I can't find a reason to have an expiration to a reset password URL.
Their thought was if someone was in your email and wanted to ...
0
votes
0answers
9 views
Update column in WebSecurity class ASP.Net MVC
I want to update only one column value. IsConfirmed in web security. I want to update this column value for users with 0 and/or 1. But I only can do IsConfirmed with 1. How can I update that using ...
1
vote
2answers
25 views
FormsAuthenticationTicket cannot be invalidated server side. Causing cookie reply attacks
I have an ASP.NET web application using forms membership authentication. We have recently been penetration tested and an issue that was flagged was the ability to steal a users account. If the ...
2
votes
2answers
33 views
programmatically retrieve security constraints from web.xml
Is there any possiblity to obtain the list of constraints from web.xml ?
<security-constraint>
<web-resource-collection>
...
0
votes
1answer
21 views
Django - Filter URL in texts
I would like to know if someone here could help me out finding a way to "filter" URLs inside block of texts, comments for example. I wish to be able to "Block" the submitting of such comments on my ...
0
votes
0answers
7 views
Authentication for more than one service
I have a scenario that in that there are three worker services and one Accounting Manager Service (AuthService).
Users can register within AuthService And use from Those three worker services. It ...
0
votes
1answer
25 views
Encrypting (not hashing) and storing user passwords on a rails server, using devise cookies
Got a bit of an issue where I am required to maintain a secure connection with one server that proxies out requests to another, over basic authentication. However I can't be allowed to gain access to ...
6
votes
1answer
50 views
Making a Same Domain iframe Secure
tl;dr Can I execute un-trusted scripts on an iframe safely?
Back story:
I'm trying to make secure JSONP requests. A lot of older browsers do not support Web Workers which means that the current ...
0
votes
1answer
57 views
Best practice to allow access to owner user and admins only?
I'm programming a site in Symfony2, using FOSUserBundle for managing user access. I have an entity called "Site" which can have many Users. Only the related users and the admins should have access to ...
0
votes
0answers
33 views
Rendering Special Characters having contextual escaping using ESAPI library
This Question is related to cross-site scripting (XSS).
Recommendation was to use contextual escaping on all untrusted data before using it to construct any portion of an HTTP response.
My ...
0
votes
2answers
33 views
+100
ASP.NET MVC4 WebMatrix WebSecurity Forms authentication: Changing a username
I'm using WebMatrix WebSecurity for my application's Forms Authentication.
The user needs to be able to change his username, without being logged out.
I supposed calling WebSecurity.Logout(), ...
0
votes
0answers
33 views
How can i sync an async call to my webapi?
When i'm using the HttpClient.GetAsync method, i've made an async call.
The problem is my web api which make some validations, but if i shot a lot of calls at same time, the validation fails. When the ...
1
vote
1answer
50 views
Finding sql injection vulnerabilities in web page code [duplicate]
Can someone help me identify the vulnerabilities and resolve them with this? I posted this website this morning but It kept getting hacked or some thing and I am new to sql injection vulnerabilities. ...
0
votes
1answer
11 views
Deny IP access to an inside Tomcat directory
I'm trying to solve the following:
I have a Tomcat web application which is configured (and should be) to accept ANY IP.
e.g: (protocol://host:port/MyApp/)
What I want to do is to only allow ...
0
votes
0answers
6 views
How do you add a Zend_Form_Element_Hash to a page and validate it without creating a form?
I often have pages where I submit the data via AJAX; for various reasons I don't need an entire instance of a Zend_Form object. However, in order to prevent cross-site request forgeries, I want to add ...
0
votes
0answers
22 views
Multiple Forms Authentication Cookies? Employee/Customer
Is there a way to have two forms authentication cookies for a web application in .Net?
I'm thinking of a scenario where a company employee would place an order for a customer. Instead of creating a ...
1
vote
2answers
46 views
Protect information in Android
Problem Description
I am writing application for Android. Application must do following:
Connect to the server using following URL:
...
0
votes
0answers
25 views
Safe authentication with node.js and session.socket.io?
I'm using the latest versions of node.js and session.socket.io and this is how I set the session (please note that I'm not using a HTTPS connection so no secure: true):
app.configure(function() {
...
0
votes
0answers
13 views
Protect site from grabber access
I have implemented web server that has largest information. I want protect it from downloading using any of grabber.
Web Server is XAMPP and Database MongoDB and MySQL both.
Actually I tried out on ...
0
votes
2answers
21 views
Handling multi tabs in a web application
In my web application, a user can rate a product via the product page.
He can also open multiple tabs in his browser.
What is the best practice to allow him to rate a different product on each tab ?
...
2
votes
3answers
32 views
How to pass API token with timestamp reliably
I'm making an API call from one app to another. I handle authorization by passing an md5ed shared secret + timestamp...
$token = md5( $secret . time() );
Then at the API endpoint, I check the ...
0
votes
1answer
23 views
Java web app serve both secure and insecure resource
I am writing a Java web app (spring 3.2).
Basically, I have several sites that need to access my web service. These sites are a mixture of both secured (ssl) and insecured. I have an endpoint ...
0
votes
1answer
21 views
PHP Directory Structure: Shifting from Linux Hosting to Windows Hosting
I have using a a specific directory Structure for all my PHP applications i.e to keep my class and config files in folder above the public_html folder. And this structure , is very well suggested by ...
1
vote
1answer
58 views
When does WebSecurity.ChangePassword fail when “new password is invalid”?
This is the code for changing a password in the default AccountController scaffolded in MVC 4:
// ChangePassword will throw an exception rather
//than return false in certain failure scenarios.
bool ...
0
votes
1answer
27 views
What are the drawbacks of using cache-control: no-store?
We want to "prevent the inadvertent release or retention of sensitive information (for example, on backup tapes :) )" and plan to use the HTTP header Cache-control: no-store. What are the down-sides ...
0
votes
3answers
23 views
Does my web login system work?
I'm building a web login system for a website without SSL, so here is my implement:
I have a table in server that has two fields, a raw username and pass_hashed (hased with sha1(password)).
When ever ...
0
votes
1answer
34 views
Config.php security and Facebook Secret Key
Some how a another developer is getting our app secret and using it to perform HTTPS/API Banned requests banning our users from our app.
How is he getting the Secret Key we only have it listed in ...
-1
votes
1answer
35 views
How to block an IP, if getting many http/apache/mysql requests in a second [closed]
if some one tried force burst attack on my website. how can i block their IP address.
i mean, i want to block an IP if, getting many http/Apache/SQL requests per second. how can i prevent those force ...
0
votes
0answers
12 views
WAS 8.0 Federated Repo & Servlet Spec 3.0 Security authentication of password digest
I'm developing a Registration Confirmation feature for a site. A user successfully registers on a registration page, an email is subsequently sent to the user's email address with a hyperlink, and ...
0
votes
4answers
56 views
Is my form safe from spam bots?
I thought of a simple way of securing my form from spam bots. I want to check with you guys if you think it will be sufficient. It's only a contact form, so I don't need extreme security, just so the ...
0
votes
1answer
12 views
Security concerns for Ajax using chrome inspect
I am making one website in which the form is submitted using jQuery ajax. I have taken care of most of the security majors like HTTPS, session cookie, encryption etc.
Hence I have minimised the ...
0
votes
0answers
62 views
HttpContext.Current.Request.ServerVariables[“REMOTE_ADDR”] Security
All,I have a stand-alone ePayment service which is implemented with an asp.net web service for my order management system , and I am using the CyberSource as the payment service, The responsiblity of ...
0
votes
1answer
24 views
Security warning in browser
If you visit the URL below, your browser would give you a warning regarding site security. What is the cause of the warning?
What can I do to prevent other people from seeing this warning?
Here is ...
0
votes
1answer
19 views
securing sql queries against malicious intent
For prototyping, I often use a self-built plugin where i an do something like this
$.databaseContents({
url: '/sqliquery.php',
data : {query : 'SELECT * FROM members WHERE id = 45'}
});
The ...
0
votes
0answers
29 views
Protecting querystring variable for use in SQL query parameter
I'm writing a simple website that will act as a discussion board/forums in vb.net.
When a user clicks on a forum, the forum id is put in a querystring variable that the "Topic" page reads and then ...
1
vote
1answer
28 views
Can a hacker access the data in my first request even if SSL cert is invalid?
This question is in context of web-services. If I invoke a web-service over SSL alongwith the required data for the service; I get an SSL error, if the SSL cert is invalid, and I wont make further ...
0
votes
3answers
65 views
How to fix the HTTP Response splitting vulnerability with ESAPI
after a recent findbugs (FB) run it complains about a: Security - HTTP Response splitting vulnerability The following code triggers it:
String referrer = req.getParameter("referrer");
if (referrer ...
-1
votes
1answer
36 views
How to verify security of meekrodb?
Meekrodb is a simple php-->mysql library. How do I test/verify that it is secure, such as against sql injection attacks?
0
votes
0answers
17 views
Shared SSL certificate as subdomain
My webhosting company offer free shared ssl certificates that I would like to take advantage off but here's the issue:
the SSL url looks like this
https://web125.secure-secure.co.uk/myurl.com
I'm ...
0
votes
0answers
24 views
Encrypted web.config section: unable to revoke access to an encryption key
I've encrypted connection Strings section in web.config as described in the article below:
Walkthrough: Encrypting Configuration Information Using Protected Configuration
...
2
votes
1answer
54 views
passing CSRF credentials as url parameters?
How do you handle csrf credentials sent to django as url parameters?
I ask because that is, evidently, the only way to submit a file upload via a form in an iFrame.
Most online examples show to pass ...
0
votes
2answers
44 views
How to safely blind redirect to a url?
What is the safest format for a url in a url?
For example /login?redirect=where_you_were_before
How should it be encoded/decoded. Is whitelisting required?
0
votes
0answers
63 views
Does IE cache HTTP response headers?
I am testing a web application that do not set the "cache-control:no-cache" directive in any response headers including the response containing the Set-cookie directive (so someone would be able to ...
0
votes
0answers
27 views
What are the default cipher modes for .NET, Java, php and python?
I'm putting together a crypto document and I can't find documentation stating what the default cipher modes(ECB, CBC, etc..) are for .NET, Java, php and python. So pretty much if you don't define a ...
8
votes
1answer
211 views
Is JSON Hijacking still an issue in modern browsers?
I am using backbone.js and the Tornado web server. The standard behavior for receiving collection data in backbone is to send as a JSON Array.
On the other hand, Tornado's standard behavior is to ...
-4
votes
0answers
48 views
How can i check the jhackguard plugin
I am using jhackguard plugin for joomla site 1.5.24 to prevent the sql injection ,xss,html Injection .
But i have checked the site ,First i enable the jhackguard plugin then in the site by passing ...
2
votes
3answers
64 views
how to secure my javascript client in which users will fill their passwords
How I have a basic javascript registration form which sends the password that an user has filled to a secure axis2 web service (which stores the salted hash of the password in a database).
Mu ...
0
votes
1answer
42 views
How to validate client certificate request in Ruby on Rails?
I have a Ruby on Rails app running on Heroku server. As I'm testing the app with SSL certificate, I added a non-paid one like this tutorial explains, and forced the server app to use SSL with RackSSL ...
0
votes
2answers
71 views
Security constraint <url-pattern> acting weirdly - websphere
I am testing security constraints for certain URLs. I feel url pattern is acting weird. I want access restricted whatever comes after ServletSecurityTest(webapproot)/. But, after deploying war file in ...
0
votes
0answers
30 views
User-editable HTML XSS protection (tumblr like)
I want my service to have such a feature: author can fully customize the page, but can't steal users' cookies.
Tumblr had some troubles with that, but solved them successfully ...





