This tag is used for topics relating to application security and attacks against software. If your question is not about a specific programming problem, please consider asking it at security.stackexchange.com instead.
0
votes
1answer
18 views
Improving PHP codebase quality
I work regularly on a medium-sized web application (for reference, something like 25,000 lines of PHP and 40,000 lines of JavaScript), and I'm looking for ways to improve the quality of my codebase.
...
0
votes
1answer
23 views
Oracle database login
A database administrator has used to connect to oracle database on unix operating system by using the following:
$ sqlplus sys/sysPass1@orcl as sysdba
What are the big mistakes in the previous ...
0
votes
2answers
18 views
Security: longer keys versus more available characters
I apologize if this has been answered before, but I was not able to find anything. This question was inspired by a comment on another security-related question here on SO:
How to generate a random, ...
0
votes
0answers
19 views
Detecting if a running application is sandboxed
Given an application's pid, is there any way, programatically, of detecting if that application is running in an OSX sandbox environment?
Ideally, I'd like to know if there's an API call somewhere, ...
0
votes
0answers
8 views
OpenVPN two-factor authentification
we have got an openvpn authentication running with an Active Directory over ldaps.
Now, there is a need for a two-factor authentication. Restricting VPN access to certain machines would be great.
...
0
votes
0answers
16 views
Should I validate access permissions each request?
I've always wondered whether it's better to check the database for account access permissions every single request, or cache (say, an ACL) in the session state.
My current case isn't particularly ...
0
votes
0answers
6 views
Is there a reference implementation for OASSIS KMIP?
Is there an open source implementation or reference implementation for OASSIS KMIP specification ?
https://www.oasis-open.org/standards#kmipspecv1.1
1
vote
1answer
14 views
how to pass variables from php to flash but not allowed see it in browser
Hi I try to pass some pin code from php to flash - as3 , but unfortunatly I use in php command : echo pin='1234'; - if anyone will open link php will see this pin 1234
is there anyway pass this ...
2
votes
2answers
40 views
Risks of loading Assemblies via reflection
This is a followup from my previous question, I want to examine the StrongName of an assembly before loading it (either via a file on the hard disk or via the byte data). To ensure that it's been ...
0
votes
1answer
22 views
Server to server authentication basics
While I understand the various options available for server to server authentication, I could use some clarification on the security implications of each approach.
I want a server to verify that a ...
0
votes
0answers
23 views
Security in Expressjs
I am looking to build a web-app which also has mobile clients using express. But what has been concerning me is the security issues with the framework. I want to know what are the current security ...
0
votes
2answers
35 views
How to begin fixing XSS hole in website
I've never dealt with XSS before, but I just received a comment from a vistor that my website has XSS vulnerabilities.
He was nice enough to provide me with the string that activated a prompt box ...
1
vote
2answers
31 views
Fix for Unicode Transformation Issue/Vulnerability in ColdFusion
We upgraded our security scanner recently, and it's reporting a new issue.
What's the recommended fix? (We happen to be on ACF9.)
(Also, if you have an example exploit geared to CF, I'd appreciate ...
3
votes
1answer
71 views
why do php frameworks restrict url characters
I have been searching for why this is true (from codeigniter's default config file).
I want to know why codeigniter acts like this URL sanitization is so important. Not to turn it off, but for the ...
0
votes
0answers
13 views
Why is there Greasemonkey access violation if there is a `setTimeout` workaround?
I don't understand the difference (in security terms) between the not allowed
unsafeWindow.someObject.registerCallback(function() {
var value = "bar";
GM_setValue("foo", value);
});
and the ...
0
votes
0answers
17 views
How to manage passwords in a multi-tenant surrounding? [closed]
I am building a multi-tenant application in a shared database model. I would like to encrypt sensitive data so that only a particular tenant could have access to his data. What is the best mode to ...
8
votes
3answers
83 views
Perl encrypting STDIN passwords
I'm producing a Perl module that provides an OO interface for a 3rd party API. I want to capture and store the user's password in an encrypted format before it is transmitted to the 3rd party API. The ...
0
votes
2answers
27 views
Is it possible to monitor server response codes (http status codes) from PHP, and how would it be done?
The server response codes/http status codes (101, 200, 404, etc.) should be sent in headers in every interaction between user and server. How would one monitor the codes from PHP, so that if an error ...
0
votes
1answer
26 views
Is the Spring Social OAuth dance with Facebook secure?
I'm making use of the Facebook Spring Social library.
Is the OAuth dance between the Spring Social library and Facebook when connecting secure (against man in the middle attacks etc)? If not, what do ...
-1
votes
0answers
10 views
Cloud based services [closed]
Sorry as this question is not related with any programming.Actually I am after some technical answers/knowledge for the below questions(which I have been asked to write).I couldn't find any short and ...
6
votes
2answers
71 views
Safely using String for passwords by using reflection to scrub contents prior to garbage collection
Does using reflection to scrub a String make using String as safe as using char[] for passwords?
From a security aspect, it is generally considered best practice to use char[] for storing/passing ...
4
votes
4answers
87 views
Protecting crypto keys in RAM?
is there any way to protect encryption keys that are being stored in RAM from a freezer attack? (Sticking the computer in a freezer before rebooting malicious code to access the contents of RAM)
This ...
1
vote
2answers
12 views
security check when share application link
I have a "security check" popup (rewrite code from picture) when I try to share link to my application.
Its weird becouse I have done many applications and there is nothing like this.
I dont have any ...
0
votes
0answers
20 views
sqlalchemy and untrusted requests
I am looking for a way to provide python modules access to a SQL database through an interface (aka agent). This agent ought to garantuee, that these modules execute its requests only to a predefined ...
0
votes
1answer
25 views
Can we find, in windows log file, rong password?
I filled my password instead of my user name in my work computer. I'd like to know if other persons (administrator) can go to log files and see it. If so how can i delete it ?
Second question: is it ...
1
vote
2answers
23 views
What kind of privilege do we need to trace a process in linux
It seems that we can trace other processes with trace functions? Operating system is obliged to provide such an interface. Obviously we can obtain others data such as hidden password when they call a ...
0
votes
0answers
23 views
SOAP and REST web services security protocols and standards
I'm really confused about REST and SOAP security mechanisms..
I believe message level security is a SOAP spec, CAS, SAML and the all WS* are, as well
Protocols such as oAuth, OpenID, Kerberos are ...
1
vote
3answers
33 views
Botsafe Captcha for PHP form verification
Is this captcha type botsafe for a PHP form?
<?php
session_start();
$text = rand(10000,99999);
$_SESSION["vercode"] = $text;
$height = 25;
$width = 53;
$image_p = imagecreate($width, ...
-3
votes
1answer
46 views
How protect web-application against user session hijacking?
I need to protect my web-application(C#,MVC) against user session hijacking. This web-application using a lot of AJAX components.
Some edits:
I mean protection against interception of session ...
1
vote
1answer
17 views
How to generate java equivalent secret key in objective C?
Here is java code
public SecretKey getSymmetricKey(String keyString) {
SecretKey secretKey = null;
try {
byte[] raw = Base64.decode(keyString);
secretKey = new ...
0
votes
1answer
27 views
Symfony, configure firewall to grant access to authenticated and anonymous users
How can I configure security firewalls and access_control so that all pages render limited information for anonymous users (note login is not enforced), but shows full details for authenticated users?
...
1
vote
2answers
94 views
is it safe to have a big table in database?
My client's site has a 'online evaluation' section, which consists of a 40 field form. Each field requires user input which I have program to allow from 50 to 200 characters depending on the question.
...
0
votes
1answer
19 views
play framework, redirect block users to some page
i am using playframework 1.2.5.
some of the users in my application are making inappropriate actions, like spam etc.
i want to ban thous users from my site. and always show them a page that saying ...
0
votes
1answer
71 views
Is this php code safe and how to hide the javascript link?
People will be able to see the javascript confirm link in the status bar of the browse. So, is that code below secure enough and how to hide the javascript to DONT show this:
javascript:a = ...
3
votes
2answers
61 views
PHP client side vs server side
I am currently working with PHP, just a beginner, but mainly interested in security issues regarding PHP. What I was wondering is "what does a client gets to see from the PHP files from a server".
So ...
-3
votes
0answers
42 views
Hacked by Silent_Hell [closed]
I have no idea if this is the right place to ask this question but for some reason my website just got hacked.
Link to my website
So when i tried to enter my site the following image came up:
...
0
votes
1answer
41 views
No bean named 'springSecurityFilterChain' is defined - Spring Security 3.1
I google alot and found many question about this issue but no solution solved my problem. Please if any one could resolve my problem
Web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app ...
1
vote
2answers
29 views
Marking non-sensitive data, to prevent submission from external sources, instead full encryption? (mobile app submitting to a server)
I want to submit non-sensitive data from a mobile app to a server.
But I don't want external sources to be able to submit data.
I would like some opinions on whether it's enough to mark the requests ...
0
votes
2answers
27 views
Symfony2 - Logging out of one firewall
I have two firewalls, "admin" and "client", in my Symfony2 project. They both use the same entity provider.
The problem I'm having is that when I log out of one firewall, I'm logged out of the other ...
-3
votes
0answers
24 views
Security of Cakephp [closed]
I am developing an application in Cakephp.i need some help from you you guys that how can i protect my web from xss,csrf.or sql injection etc . i want some tutorials in which security of cakephp has ...
0
votes
1answer
24 views
VS2012 Windows 8 App Designer Security Exception
I have a major problem when trying to design Windows 8 apps. I am using Visual Studio 2012 Express, Windows 8 version. When I try to load a XAML file (including newly generated ones in newly ...
2
votes
0answers
59 views
How to store password in portable way?
I'm developing simple Twitter reader and I came across following problem: How to securely store the OAuth consumer-key and consumer-secret. Those two passwords are necessary for accessing the Twitter ...
1
vote
1answer
70 views
How to verify a users password?
Basically I'm developing a website in ASP.NET MVC 4 and I see that there's a built in function to verify the current (old) password during a password change:
...
0
votes
1answer
30 views
How update entity field from Controller?
I have Entity which name is Task. And there are fields, setters, getters. This Entity working fine. From ROLE_ADMIN, I can update, create etc... But now I have Solving controller...and there in index ...
2
votes
2answers
76 views
How to prevent “leakage” of html info from css file
I recently started using Netsparker to run a security check on my site. It gave me 4 areas where I am "leaking" information from the http header. The file that is leaking is my *.css file. ...
0
votes
3answers
49 views
prevent scraping of web content in spring mvc
I'm working on a site containing real estate listings in Spring MVC. I would like to prevent scripts to steal the content by scraping the site. Does anyone have experience with techniques that can ...
2
votes
2answers
55 views
MySQL - Database Security [closed]
I am creating a web application that collects a lot of personal information from each user, the type of thing that would potentially be hacked. What conventions and practices should I be aware of ...
0
votes
0answers
9 views
website.map security trimming nested nodes in asp.net
I have a menu based on website.map. When I am implementing Security Trimming for some of my roles. It is working correctly for root nodes but when I am trying to specify different roles of nested ...
3
votes
3answers
69 views
Do I need to sanitize user-inputted data, before sending it in an email [closed]
I have a form in which I accept name, email and message from a user. I do the validation for name, email and message and just send it using the mail() function.
If I was inputting the $name, $email ...
0
votes
1answer
18 views
how to protect local resources against unathorized transfers (sharing)
I am looking for initial ideas for protecting user downloaded content. Users download zip files full of interesting resources that get extracted into their local file system to be used by the ...




