Tagged Questions
2
votes
2answers
123 views
Difference of xss clean and global xss filtering
I am a beginner codeigniter developer and need your help.
I have a form that the is submitted to a function in the controller and I want to apply the form_validation library rules on the post data ...
1
vote
1answer
230 views
Codeigniter xss vulnerabilities and other problems with security
When i scanned my site with "Acunetix Web Vulnerability Scanner" i was very surprised. Programm show a lot of xss vulnerabilities on page when i use get parameters with xss filtration.
For example:
...
0
votes
1answer
206 views
Prevent SQL injection and XSS attacks
Will this function below be able to prevent XSS attacks and sql injections ?
require_once('security.class.php');
function secure_data($data) {
$data = mysql_real_escape_string($data);
...
0
votes
1answer
69 views
Understanding HTML Purifier
I am currently using CodeIgniter. I have 4 forms (student signin, login in form, create account, and request account)
I am currently using this at the moment to filter my input on one of the forms ...
0
votes
1answer
154 views
Security and Good Practice with Code Igniter
I'm going through the documentation of Code Igniter and want to know if I get this right :
Use $this->input->post(x,TRUE) instead of $_POST every time
Best to use PDO. If not, do ...
0
votes
1answer
134 views
Codeigniter - global XSS filtering TRUE
i setted up this in my config.php:
$config['global_xss_filtering'] = TRUE;
the problem for me is that it removes all the accented chars like "à,ù,è,ò"
is this usual?
also why replacing them? how ...
0
votes
1answer
98 views
Security checklist for a CodeIgniter application launch
Does anyone know of a good security checklist before launching a CodeIgniter application.
We have tested for known PHP security flaws and are wondering if there are any measurements to be taken when ...
0
votes
4answers
254 views
Codeigniter mysql insert query stripping string
Added Example Code
Please read below for full details, this is an example function that can be put in a controller which generates the same results. The database structure is posted further down:
...
0
votes
1answer
70 views
Does using CodeIgniter's XSS filtering avoid the need to escape when outputting?
CodeIgniter provides a couple of convenient APIs for XSS filtering.
'global_xss_filtering' in config.php.
'xss_clean' rule for individual fields, when using the form validation library.
If you use ...
1
vote
2answers
381 views
Codeigniter form validation security
We created a project using Codeigniter and its very cool and efficient.
CI have a good form validation feature that which helps to secure the system,however i am suffering to find the right way to ...
0
votes
1answer
31 views
Passing adserver tags through Codeigniters global xss filter
I use the latest CI version. In config.php:
$config['global_xss_filtering'] = TRUE;
I can't change this.
I need to save adserver tags (will stored in files, not DB), which contains also ...
1
vote
1answer
97 views
XSS_clean don't function with codeigniter
I'm using codeigniter and i'm trying to do a form_validation but the XSS_CLean don't function, don't know why, i have in config.php $config['global_xss_filtering'] = TRUE;
Controller.php
...
0
votes
3answers
132 views
Should I use xss_clean or htmlentities during form refill?
As the title says, I do refill my input like this:
<input type="text" name="my_input" value="<?= $this->input->post('my_input') ?>"/>
But is that safe? In accordance with ...
1
vote
1answer
220 views
Codeigniter removes inline style from html input
Taking a look at the following code:
$this->input->post('title', FALSE);
I have manually disabled XSS filtering.
Now lets see some examples:
<p ...
0
votes
1answer
291 views
Storing and emailing HTML from database from WYSIWYG editor with CodeIgniter
Im dealing with a bit of a problem. I have a WYSIWYG editor saving its data to a column in my database. Unfortunately the data is being stripped from the tags, so it looks something similiar to this:
...
0
votes
1answer
93 views
XSS filtering on input->post() while form validator is active in Ci
I was wondering. I'm using the form validation class in codeigniter. On most of my input fields I have xss filtering turned on:
$this->form_validation->set_rules('description', 'Description', ...
2
votes
1answer
373 views
XSS Filtering won't disable on post codeigniter
I'm in the process of developing a basic WYSIWYG for my site and I've used this line to turn XSS filtering off
$this->input->post(NULL, FALSE);
I have also tried
...
5
votes
2answers
358 views
Use PHP to prevent XSS attacks within an image
After reading http://dsecrg.com/files/pub/pdf/XSS_in_images_evasion_bypass_(eng).pdf, it is clear that allowing image uploads from users opens you to XSS attacks.
I wasn't able to find any PHP ...
3
votes
1answer
692 views
Codeigniter xss_clean dilemma
I know this question has been asked over and over again, but I still haven't found the perfect answer for my liking, so here it goes again...
I've been reading lots and lots polarizing comments about ...
4
votes
2answers
908 views
setting cookies with HTTPOnly flags in codeigniter
I'd like to know how to set cookies as HTTPOnly in Codeigniter. I reviewed the documentation and didn't see how to set this flag.
I was also looking to set the secure flag for cookies and found it ...
0
votes
0answers
201 views
Codeigniter $_GET validation, XSS Issue
I have an issue with XSS vulnerability in my site that is built on CodeIgniter.
I do have $config['global_xss_filtering'] = TRUE; and as you can see below, I also set the ,TRUE parameter to force it ...
1
vote
3answers
151 views
Can a URI variable ever be malicious
Given the following simple code:
function loadthis ($var)
{
$id = $this->model->get_id($var);
}
Question: can any malicious code ever be passed via a URI variable?
Scenario: ...
3
votes
2answers
366 views
is it okay to “repeatedly” xss-clean data in CodeIgniter?
The following are ways to XSS-clean data in Codeigniter:
set global_xss_filtering in config to TRUE
use xss_clean()
use xss_clean as a validation rule
set the second parameter to TRUE in ...
1
vote
1answer
662 views
CodeIgniter input filtering
I am working on a book listing website and have run into a problem with codeigniter's xss filtering. When the form is submitted to create a listing, any title that includes "Javascript:" gets ...
1
vote
1answer
642 views
ci_csrf_token was set to ” onmouseover=prompt(XSS) bad=”
i used ci_csrf_token hidden field in my forms.but any form in my script get alert with Acunetix Web Vulnerability Scanner.
alert details :
Cookie input ci_csrf_token was set to " ...
0
votes
2answers
511 views
Codeigniter XSS protection
I've been looking into codeigniter for a few days. It looks promesing, but there is a few issues. The global XSS protection is not secure at all, it suck! i've been playing around with it, and i for ...
0
votes
2answers
351 views
PHP - Form protection examples
Is there a list of example attacks that can be used to test a PHP form?
In particular it is for a forum, which is using a parser to parse bbcode and doesn't accept HTML directly.
At the moment it ...
0
votes
1answer
369 views
Avoiding double encoding in <INPUT> while using htmlspecialchars
Say you have a text <INPUT> for a user's name and they decide to type in
Johnny's Pizza
This is saved in DB as
Johnny's Pizza
But if the user decides to edit, I repopulate the text ...
0
votes
1answer
298 views
xss protection and html purifier
I am currently using the CodeIgniter framework, and looking to strengthen the XSS protection by using HTMLPurifier (http://htmlpurifier.org/).
Is my understanding correct that you want to 'clean' ...
0
votes
1answer
246 views
Codeigniter php tags stripping with xss_clean
Why if i pass a $_POST['string'] = "<?php echo 'hey' ?>" then i pass it to the xss_clean() with echo $this->input->post('string',true); it is outputted as &lt;?php echo 'hey' ...
0
votes
1answer
187 views
codeigniter global_xss_filtering with session variables
When i set this to default true in the config file I can no longer access my session variables. How do I fix this so I can still have this on and use my session variables?
1
vote
1answer
314 views
Is content within code HTML tags XSS vulnerable?
I am using Codeingiter, I see that the xss_clean() is replacing the tab characters with a single space character. This is breaking the contents that are later displayed inside ...
0
votes
1answer
1k views
Why doesn't CodeIgniter's XSS filter clean all?
Why does CodeIgniter's XSS filter only react through regular expressions on specific things instead of sanitizing all input in the first place regardless if the content is tainted or not? Also, why is ...
9
votes
4answers
10k views
CodeIgniter - why use xss_clean
if I'm sanitizing my DB inserts, and also escaping the HTML I write with htmlentities($text, ENT_COMPAT, 'UTF-8') - is there any point to also filtering the inputs with xss_clean? What other benefits ...
3
votes
3answers
3k views
Codeigniter global_xss_filtering
In my codeigniter config I have $config['global_xss_filtering'] = TRUE;. In my admin section I have a ckeditor which generates the frontend content.
Everything that is typed and placed inside the ...
11
votes
4answers
4k views
Codeigniter - Disable XSS filtering on a post basis
I'm trying to set up a CMS on the back of a site but whenever post data has a <a href=... in it the post data gets scrapped.
I've got $config['global_xss_filtering'] = TRUE; in config
My question ...
1
vote
2answers
341 views
XSS am I doing it wrong? CI / php
I am working on an public facing interface that makes use of a database that is effectively untrusted due to multiple applications accessing it.
I would like a clean way of encoding all my output to ...
0
votes
4answers
168 views
Security precautions and techniques for a User-submitted Code Demo Area
Maybe this isn't really feasible. But basically, I've been developing a snippet-sharing website and I would like it to have a 'live demo area'.
For example, you're browsing some snippets and click ...
0
votes
2answers
2k views
CodeIgniter's XSS Protection is removing <script> tags from user inputs… but I don't want it to!
CodeIgniter is brilliant but I'm using it to develop a site where users need to be able to share their code for websites. Unfortunately, CodeIgniter has been doing the "right" thing by removing ...
0
votes
3answers
2k views
CodeIgniter: Use get_post with XSS filtering on entire $_POST array
Is there an easier way than
foreach($_POST as $x=>$y){
$arr[$x] = $this->input->get_post($y, TRUE);
}
to just have the entire $_POST array cleaned with CI's XSS filter. Looking at the ...
0
votes
2answers
925 views
CodeIgniter's Input Class
Can I use CodeIgniter's input class to xss clean GET data like this:
$somevar = $this->input->xss_clean($_GET['somevar']);
CodeIgniter's suggest that xss_clean method should be used for the ...

