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.

learn more… | top users | synonyms (3)

0
votes
0answers
19 views

What order are Android permissions displayed in?

When a user installs an Android application, the Android system displays the list of (dangerous) permissions that the app is requesting on a warning screen, as part of the installation process, and ...
-1
votes
1answer
34 views

computer language for making networking/security tools [closed]

What is the most commonly used computer language for making tools such as port scanner(like nmap), RAT, password cracker, and some other similar tools.
0
votes
1answer
24 views

In my iOS app, is there any reason to set the HttpOnly and Secure flags for the session cookie?

I know it's a good security practice for web applications to set both the HttpOnly and Secure flags for session cookies, but I'm not convinced it's necessary for iOS apps that are written in native ...
0
votes
1answer
19 views

Authorizing users by downloading file from external SharePoint portal

I have an open question about my idea. Here's some background: I'm developing a PHP application for the company I work in. It's meant to be used only by its employees. Every employee has access to our ...
-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
0answers
23 views

Keytool.exe and jarsigner.exe issues

I have finished a small game in Java and I want to upload it online. I have an HTML file that loads it properly, as well as the code being fine. However, I can't use the function File file = new ...
0
votes
2answers
45 views

Which characters must be removed / escapes from PHP forms in SQL queries?

Innocently I thought that there's no problem to store into a db an UTF-8 string, even if they contains strange characters. On the contrary I've read here and there that some characters, as newlines, ...
0
votes
2answers
36 views

search a php string for two substrings

I am programming a php program that will allow users to download audio from my website. To do this they go to www.mysite.com/downloadit.php?file=myfile.mp3 and the download of myfile.mp3 will begin ...
0
votes
2answers
31 views

Select menus vulnerabilities

I'm working on a program which allows the user to upload his results. In a select menu I show all the "tests" that he could pick and then evaluate the result based on the test selected. My concern is: ...
0
votes
1answer
26 views

Best practice: Files/Folders permission/owner in symfony2

The symfony2's kernel needs to write in the cache ( as the http user ). I also need to read/write into the folder for these reasons: The IDE needs to read/write/create in document root In shell my ...
1
vote
3answers
72 views

Best practices when running Node.js with port 80 (Ubuntu / Linode)

I am setting up my first Node.js server on a cloud Linux node and I am fairly new to the details of Linux admin. (BTW I am not trying to use Apache at the same time.) Everything is installed ...
0
votes
2answers
34 views

How to sanitise input before using system command in C

This is my code in C :- snprintf(buffer, 1023, "ls -%s", argv[1]); system(buffer); And how can i sanitise buffer, so that no one can run malicious command apart from given. Thanks
2
votes
2answers
50 views

Sitecore Droplink for User Roles

I'm building a custom workflow where all users that are members of a specific role will receive email notifications depending on certain state changes. I've begun fleshing out e-mail templates via ...
0
votes
2answers
18 views

Using Amazon S3 Query String Authentication for Music Player

I have a musician client who I created a music player web app/site for primarily in javascript a few years back. The mp3 audio files are being grabbed via a regular HTTP download. He has noticed ...
0
votes
1answer
38 views

Bluetooth secure vs. insecure

I have been playing around with the bluetooth options on android, and found an app that gave two connection options (secure and insecure). I tried to find some information about it on the internet, ...
1
vote
1answer
40 views

Preventing XSS in ASP.Net Webforms: why is Validate Request not enough?

I'm looking for ways to protect our website from XSS attacks. At this point I am concerned about sanitizing/protecting the input only. I am aware of the need to encode the output, but that's out of ...
0
votes
1answer
25 views

Let the csrf token expire in the user session after 15 minutes or remove it directly?

Today i've added crsf protection in my webapplication. When a html for is printed i generated random token and put it in a hidden field and in user session. When form is submitted i read hidden ...
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
4answers
53 views

Secure username and password in Android

Problem Description I am writing application which must connect to the server and download some data from the server. The URL of the file witch must be downloaded is formatted as follow: ...
-2
votes
1answer
39 views

Can addslashes be bypassed when using utf and single quotes?

I am trying to verify if using addslashes on a script is exploitable or not, it's known for everyone that addslashes shouldn't be used but, but the question is, is it always exploitable? I found ...
0
votes
0answers
43 views

What kind of software runs direct MySQL statements as an API? [closed]

I am working with some web software who's API is nothing but passing MySQL queries through GET requests. I've never heard of that either, but I'm curious if anyone has some insight if this is a known ...
0
votes
0answers
53 views

Disadvantages of connecting a Swing application directly to a Database

What are the disadvantages of connecting a Swing application directly to a Database? I am developing a Java desktop client and have limited experience on the server-side. I'm aware that the 'best ...
-1
votes
0answers
25 views

How to find vulnrebilities in a program? [closed]

I am into pentesting and computer security. I am just starting to dip my toes into the water if intermediate hacking etc. The thing I dont really understand is how does one find vulnrebilities in ...
0
votes
0answers
11 views

Executable command in HTTP path (HTTP_Windows_Executable)

I have a weakness in my website developed in ASP .NET which allows hackers to insert throung the HTTP response executable programs, and it is a serious securty hole. My LIVE server is running using ...
0
votes
0answers
26 views

Applet - Both signed and unsigned code warning message only with 1.6.0_45

I'm working with legacy code where the login is performed through an applet (as I've commented it is legacy code ;D). We've been working with several JRE versions (1.6.0_29, 30 and 43) and all have ...
0
votes
0answers
7 views

Cerificate error when uploading images to picasa

I am trying to upload images to picasaweb albums via APIs. But it gives the error as follows: java.security.cert.CertificateException: No subject alternative DNS name matching picasaweb.google.com ...
0
votes
1answer
22 views

Find and delete everything and between and including two strings with SSH?

I am struggling to write an ssh command that searches every file on my server that contains <!--4e530a--> ... malcious code ... <!--/4e530a--> And then deletes the tags and the ...
0
votes
0answers
44 views

PHP recursive detect file system changes

I was looking for a practical way to detect file system changes. Than I found this pretty simple script from "Jonathan Franzone". But my problem is, it doesn't scan sub folders. Since I'm just a ...
0
votes
1answer
20 views

Change data source dynamically on user login

I have a project that has the following requeriments: Allow users to login in the same Web Application using different schemas following a criteria; Dynamically route the datasource against a rule - ...
1
vote
1answer
40 views

Can someone break my zip files passwords?

I have made a system that reads password protected zip files. Only my source code knows the password to unzip the file. But my question is: Is there any way that a person very interested in knowing ...
0
votes
0answers
43 views

$_REQUEST array is empty all of a sudden

We have a Flash/AIR app that runs from the desktop and communicates with php scripts on our server. Everything has worked fine up until a few days ago when the $_REQUEST array is empty instead of ...
0
votes
1answer
35 views

direct page access prevention [closed]

on my site i have 2 pages, a simple password protected page called login.php and the main webpage called index.php I am trying to prevent users from directly accessing 'index.php' If a visitor ...
0
votes
2answers
32 views

Protecting web-server from ssh brute force attacks

I have a server acting as a reverse-proxy connected directly to the internet. I access this computer through ssh on a non-standard port. It doesn't seem too secure. If someone found the ssh port ...
0
votes
1answer
38 views

key exchange algorithm with optional parties

I need to generate a secret key (or password) with agreement of multiple parties out of which some parties are optional. For example, Mr. A, B, C & D are members who can do agreement and out of ...
0
votes
4answers
38 views

Difference between protected $_mdl and protected $mdl [duplicate]

I have seen that people use underscore before the variable even if they use the keyword protected e.g. class Administration extends Backend_Controller { protected $_mdl = 'model_comments'; ...
2
votes
3answers
31 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
0answers
11 views

Roles for mongodb monitoring via rest

What roles does a user need to be able to read status data from the rest api and not be able to run queries against other databases? I tried adding a read only user to the admin database but that ...
1
vote
0answers
33 views

Facebook Realtime API and Access Token persistance

I have an webapp which has a facebook log in and once a user logs in I store the user's access token in my db. I also have subscribed for user feed using realtime api. So when ever user adds a status ...
0
votes
1answer
15 views

Delegated Authentication using websockets

I have googled "websocket delegated authentication" and the only interesting hit is (unsurprisingly) on stackoverflow: WebSockets authentication What I'd like to know is: how are you allowing ...
1
vote
1answer
26 views

How does the web container know about the role of the user

I am very new to web-app development and its security and trying to understand things around. Everywhere I look for implementing security in my webapp they ask to use declarative security. For ...
1
vote
1answer
47 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
0answers
24 views

Applets, HTTPS and Windows Domain

I'm experiencing a trouble with Applet authentication over HTTPS. It seems that when I try to log in using Windows authentication account, like domain \ username, applet will remove the domain and ...
-1
votes
0answers
12 views

Port 9 Security Vulnerabilities [closed]

I'm trying to set up port forwarding with my home router so that I can use Wake On LAN with a cheesy Java script that I've made to send a UDP magic packet from outside of my home network. My router ...
0
votes
0answers
32 views

Secure communication between 2 (or more) computers [closed]

I am looking for some information, how to create private and safe communication between group of computers on home LAN site. For example, in my Java program, I want to send short text information ...
0
votes
0answers
18 views

How do I get the Security Type of the currently connected WiFi network using either the BSSID or SSID?

While working on a iOS project in xcode, I use the 'CaptiveNetwork' class to retrieve the SSID, BSSID, and SSIDDATA of the currently connected WiFi network. My question is would it be possible to ...
0
votes
1answer
33 views

WCF service certificate is not in the trusted people store

I created wcf service that should work with using certificates. My test where I’m using self signed certificates works perfect, but all changes when I’m trying to run it on the server, where ...
0
votes
1answer
30 views

Bypass Basic authentication to solr from my website with tomcat

I have my website which is in the same server than sorl. I would like that solr will allow queries just from my website, and not from external ips, of course for security reasons. So then my webpage ...
-1
votes
1answer
18 views

How possible is it to get root access to server? [closed]

I have a website hosted on a VPS-1000 hosting package, and I have root access. Apart from leaked login credentials, is there any other way a hacker could gain access to the files on my system?
2
votes
2answers
66 views

how to store mysql connection data safely? [duplicate]

I'd like to begin a new project and one of the first problems I've figured out is the security of my mysql connection data. I want to know if it's possible to configure the software to choose a ...
1
vote
2answers
68 views

REST authentication - Digital signature?

I am trying to secure my REST API developed using Spring MVC. On google search I came across this link. Is this the best approach ? Does it uses Digital Certificates ? Or Digital Certificates used ...

1 2 3 4 5 417