Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
147 views

Looking to arrive at a usable solution for password salting in a PHP/MySQL application?

After reading about password hashing/salting for an entire day (no lie!), I'm in need of arriving at a solution that works, can be used consistently, and is about secure enough for a variety of ...
3
votes
3answers
128 views

PHP Injection from HTTP GET data used as PHP array key value

i would like to know if there is a possible injection of code (or any other security risk like reading memory blocks that you weren't supposed to etc...) in the following scenario, where unsanitized ...
3
votes
1answer
169 views

Learn Payment Gateway, SSL and PCI DSS compliance checking - PHP

I am wanting to learn how to develop a payment gateway in PHP and the best practices(such as SSL and PCI DSS etc). Can anybody recommend any books/blogs that would help me with this, everything I have ...
3
votes
5answers
132 views

PHP stream security

Why is not secure allow to access to resources with URIs like "http://example.com/badcode.txt"? What means non-file-based? i'm reading this PHP security check list: ...
2
votes
5answers
135 views

Code injection with PHP question

I'm aware of how to protect against SQL injections & stuff & validating user input... but was wondering if you are taking data from a user input field & the data is a string how safe is ...
2
votes
3answers
330 views

Limiting unserialize() to return arrays?

Is there any way to limit PHP's unserialize() to only parse arrays? For security reasons. Suppose there is is an evil __unserialize() magic method in the unserialized object I don't wanna call!
2
votes
3answers
138 views

What's the best technique to protect my framework from visitors who are not logged in?

First of all, I would like to say that I have used the search box looking for a similar question and was unsuccessful, maybe because of my poor english skills. I have a a 'homemade' framework. I have ...
1
vote
3answers
108 views

How does Codeigniter handle escaping output?

I am using CodeIgniter. Recently, I read a PHP book and saw some functions to escape output to server to database using *_escape_string() and from server to browser using: htmlentities() ...
1
vote
1answer
94 views

Do i have to disable magic quotes when using PDO

Simple question and i want simple answer. I'm using PDO prepared statements to make sure my data are safely processed to the database. But im confused. Do i have to disable magic quotes or use ...
1
vote
6answers
78 views

How to check what user php is running as?

I need to detect if php is running as nobody. How do I do this? Are there any other names for "nobody"? "apache"? Any others?
1
vote
3answers
49 views

How can limit the access to a directory and its subdirectories in PHP?

Hi I'm making some kind of file explorer on PHP and I'd like for example if I have a root folder like this: / (root) | | |---home | | |---user | | ...
1
vote
1answer
76 views

PHP_SELF and SCRIPT_NAME - XSS attacks edition

PHP_SELF opens up a page to XSS attacks when code such as echo $_SERVER['PHP_SELF'] is included, but what about SCRIPT_NAME? Since it does not include path info, is this safe to use? I know you can ...
1
vote
2answers
104 views

PHP How can I send a SAFE url via POST so that after a php script has finished it can redirect back to the page it came from?

What is the best way to go back to a page where a form was submitted? For example, if i send some data via POST to "save-data.php" and that file in turn uploads the posted data to a database how can ...
1
vote
1answer
74 views

Restrict some action access with count?

This is more like a security question. What is best practice to implement something like "counting specific page visits per x time by IP" and blocking that IP address if limit is exceeded? Some ...
1
vote
4answers
383 views

Uploading audio files with PHP

I need to make a website that will allow registered users to upload audio files. I wonder is there any bullet proof practice regarding security. The site is built in PHP
1
vote
3answers
92 views

what action to do with form crf attack?

i made a method to prevent from "form crf attack" by saving random token value in session and form , and in "post action" i compare the two values , .. i puted the comparison function at the top of ...
1
vote
3answers
378 views

How to do Php Security check for input fields and input treatment?

How to do Php Security check for input user fields and input user treatment(please if you can solve example1+2)? Example1: check if user insert url or something else: <label>url: ...
0
votes
5answers
51 views

Using $_SESSIONS to set User ID and PASS

Would it be a security risk to set the user id and pass to a session? If so how? The session vars would be in an included file. I understand that this would not allow other users, but I only have one ...
0
votes
0answers
30 views

How do I generate a private key, in PKCS#1 padding, from the private exponent and modulus?

I want to convert 3 variables, the modulus, the public exponent and the private exponent (n,e,d) into PKCS#1 padding, so I can use them in the RSA implementation in the PHP Security Library. Does ...
0
votes
0answers
74 views

Webapp: PHP Security which is the best book available: [closed]

I tried searching here for some best books here for php security. Found many answers but were incoherent. So would like to make a collection of, titles of best books on PHP Security. Here are some ...
0
votes
3answers
112 views

PHP session hijack

I've been using $_SESSION superglobal a lot and heavily. However the situation is like this: Once the user is logged I want to keep track of his ID(MySQL table). I can easily insert the id into ...
0
votes
1answer
71 views

Verify HTTP Post Notification from Polldaddy with PHP

I have a PHP script that gathers variables from a HTTP Post notification sent by PollDaddy. See here for more info on PollDaddy's API: http://support.polldaddy.com/http-post-notifications/ I am ...
0
votes
3answers
147 views

How to compress php file securely

I have found this code to make php file cache and compress. Below is my code. <?php if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) ob_start("ob_gzhandler"); else ob_start(); ?> ...
0
votes
3answers
162 views

Password protect for specific pages

I've been making an educational website in PHP, and I've decided to password-protect pages to the public unless they're signed in - in this case, students. The subjects covered are GCSE Maths, ...
0
votes
3answers
117 views

Include File Vulnerability

I try to read Claroline source code to learn from their coding. In index.php file, at the first line of code, they write unset($includePath); // prevent hacking You can see full claroline source ...
0
votes
4answers
238 views

PHP possible header redirection exploit?

I was thinking the other day, if someone is protecting their pages like this : if(!$logged_in) { header("Location:http://mysite/login.php"); } // protected content here is ...
0
votes
3answers
141 views

what is file verification system for php project or licence checking the configuration files

My colleague asked me a question like "license check to config file". when i searched i got this ...
0
votes
8answers
103 views

Finding the hole in my custom php script?

Today i received very unpleasant email about that one guy has got all my database users records and also he attached a part of screen shot as a proof with the same exact info as in database. How ...
0
votes
1answer
297 views

Allow embed tag in HTMLPurifier?

I use this configuration: $config = HTMLPurifier_Config::createDefault(); $config->set('Core.Encoding', 'UTF-8'); $config->set('HTML.Doctype', 'XHTML 1.0 Strict'); ...
0
votes
3answers
1k views

PHP - Protecting site from folders with 777 permissions

Usually, I try to set my folders to have permission 775, but some web-hosting refuses to let PHP writes or move files to any folders unless it has permission 777 (it may be open_dir or safe mode). ...