Tagged Questions
0
votes
0answers
14 views
Trigger to prevent update of specific columns and rows in Mysql
I recentely posted a question about a trigger able to prevent update of specific tables, then I asked in comments a solution to prevent update of speficic columns and rows. I managed to write a ...
-1
votes
3answers
81 views
Will these functions protect me from XSS and SQL injections?
I'm having this query;
$sql = "INSERT INTO statusups (pid, text) VALUES ('{$_SESSION['sess_id']}', '{$_POST['appendedInputButton']}')";
and I'm processing the variable ...
-3
votes
2answers
47 views
can this function prevent sql injection and xss?
function clean( $value ) {
if(function_exists( "mysql_real_escape_string" ) ) {
if( get_magic_quotes_gpc() ) { $value = stripslashes( $value ); }
$value = ...
0
votes
0answers
74 views
XSS MySQL Database Accessible? [closed]
I'd like to know if there is any danger of someone being able to access the database via XSS vulnerabilities on this page (or SQLI or any other vulnerability I may have here without realizing it).
I ...
0
votes
3answers
66 views
Got hacked with MySQL Injection, need advices [closed]
Today our website got hacked with the following SQL Query:
UPDATE apps SET seller=CONCAT(seller,0x3c736372697074207372633d2268747470733a2f2f7261772e6769746875622e636f6d ...
5
votes
1answer
99 views
Vulnerabilities of PHP's (deprecated) mysql module vs. MySQLi & PDOs
I am in charge of maintaining and extending a PHP codebase which began in 2007 and uses the original mysql module. All user input is escaped using casting for values expected to be numerical, ...
1
vote
0answers
28 views
html purifier library usage concept
HiI am at prototype stage with my site. I read the html purifier main page and questions about this library in this site but I am still not clear with the issue on my mind. Can you guide me ...
0
votes
1answer
61 views
Securing against XSS - user provides part of url
I see why this below is bad and that htmlspecialchars must be used to prevent some xss vulnerabilities:
<?php $url = '<plaintext>';
echo $url;?>
like so:
<?php $url = ...
0
votes
4answers
256 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
2answers
66 views
Using htmlspeciachars on output from database (MySQL), what else to consider to prevent XSS? [closed]
Using htmlspeciachars on output from database (MySQL), what else to consider to prevent XSS?
Is it correct that using htmlspecialchars on output when fethcing data from database (in this case MySQL) ...
0
votes
3answers
115 views
htmlspecialchars equivalent for mysql
I am querying a database for userInput text which was obtained from a form, and will display that text in an HTML page. To prevent XSS, I need to iterate over the results and apply ...
3
votes
5answers
103 views
Is there anything I need to worry about besides SQL injections and XSS attacks?
I'm finishing up my first "real" PHP application and I am trying to make sure it is secure. I'm kind of afraid that since I'm not an "expert" PHP programmer that I might be missing something huge, so ...
3
votes
3answers
209 views
Should I use htmlentities() on all output? (preventing XSS attacks) [duplicate]
Possible Duplicate:
What are the best practices for avoiding xss attacks in a PHP site
What are the common defenses against XSS?
I'm trying to make a PHP application I've written secure ...
0
votes
0answers
44 views
Securely handling user input in PHP and mySQL [duplicate]
Possible Duplicate:
What’s the best method for sanitizing user input with PHP?
I know similar questions have been asked multiple times here, and I've spent some time reading all of them, ...
0
votes
1answer
79 views
How can I prevent an XSS injection in my website? [duplicate]
Possible Duplicate:
How to prevent XSS with HTML/PHP?
I know that in a lot of website, if you enter :
<script>alert("xss");</script>
The website will display an error.
Exemple ...
0
votes
1answer
97 views
Prevent mysql injection and xss atack
I'm looking for a good solution to prevent mysql injection and xss atack. I've read a lot of subjects but is unclear for me.
I only want to permit some bb codes like [b],[i],[u]. That's all.
Can you ...
-4
votes
2answers
456 views
saving html tags to the database through php [closed]
when I write this in a textarea:
<script>
alert(555);
</script>
then the php removes the tags, but if I write following in a textarea:
<script>
alert(555);
...
0
votes
5answers
206 views
Security for Strings to insert into MySQL table and in HTML page using PHP
Now I am using the following function to secure my strings :
function secure($data)
{
$data = trim($data);
$data = htmlspecialchars($data);
$data = str_replace("'", '"', $data);
...
0
votes
2answers
691 views
Right method for escaping MySQL injections and filtering out XSS attack attempts
I need to check something here, I know with some code they filter out AS the input is obtained in the one single line of code, here I have done it AFTER obtaining the code, in a sequential order, is ...
0
votes
2answers
104 views
Best method for security in PHP? [closed]
I am essentially taking a user's input, storing it in a MySQL database, and then outputting it to the same user and to other users.
Right now, I am applying mysql_real_escape_string() to all things ...
0
votes
3answers
197 views
Is there anyway to clean HTML code via php being saved to a database? [duplicate]
Possible Duplicate:
What's the best method for sanitizing user input with PHP?
I'm using TinyMCE to allow uses to edit a small portion of a web page.
This field is saved to a database.
...
2
votes
1answer
467 views
sanitizing data before mysql injection and xss - am i doing it right with pdo and htmlpurifier
I am still working with securing my web app. I decided to use PDO library to prevent mysql injection and html purifier to prevent xss attacks. Because all the data that comes from input goes to ...
2
votes
2answers
661 views
preventing xss in jquery, php, mysql in some examples - please advice
For a while I am more and more confused because of possible XSS attack vulnerabilities on my new page. I've been reading a lot, here on SO and other googled sites. I'd like to secure my page as best ...
4
votes
4answers
298 views
is it better to escape/encode the user input before storing it to database or to store it as it is in database and escape it while retrieving?
I am using htmlspecialchars() function to prevent XSS attacks. I have doubt regarding what is the better method to store the data in database from following.
Method 1 : Store the user input values ...
1
vote
1answer
87 views
XSS filtering on output… is that OK?
I'm planning to run XSS filtering on output only so no matter what I still have the original data.
I'm using parameterized queries so I guess I'm immune against SQL injections.
What do you guys ...
0
votes
1answer
100 views
Why fetchArray doesn't apply htmlspecialchars directly?
To avoid SQL injection and XSS we use the function htmlspecialchars() or others like escapeString.
If we have to use this function every time that we construct a SQL query and get the results, why ...
3
votes
1answer
1k views
CKEditor security best practices
I am using http://ckeditor.com/ in a small PHP/MySQL forum I built. My questions:
Is it safe to save user-created HTML like this in the database and then re-display it in my application? What ...
2
votes
3answers
6k views
A PHP function to prevent SQL Injections and XSS
I am tring to make my PHP as secure as possible, and the two main things I am trying to avoid are
mySQL Injections
Cross-Side Scripting (XSS)
This is the script I got against mySQL Injections:
...
0
votes
1answer
474 views
How do I make a JavaScript whitelist to prevent XSS?
I only have a few jQuery scripts running on my practice site that handle UI dynamics. What I also do is store the HTML from a web page into a database and "echo" that HTML on the client side. I was ...
-1
votes
2answers
243 views
Lightweight and secure way to prevent XSS
Every text field in this current project is just normal plane text without ubb or html tags.
However it must be unicode so an array with characters which are supported isn't optimal i guess.
I know ...
2
votes
4answers
594 views
Best ways to sanitize user submitted content? [duplicate]
Possible Duplicate:
PHP: the ultimate clean/secure function
I am working on an experimental social networking site in PHP. So, there will be a lot of user submitted data sent to the ...
3
votes
3answers
2k views
List of characters to be restricted for protection against XSS and SQL Injections?
I have gone through a lot of articles out there to find out a simple list of characters that can restrict a user from inputting for protecting my site against XSS and SQL Injections, but couldn't find ...
2
votes
3answers
3k views
varchar vs text - MySQL
in my project an user can write comment [plain text], and view others comment, can delete own comment, but can not update comment !
In this case which would should i use ?
Text or Varchar(4048) ?
...
1
vote
3answers
359 views
Prevent HTML data from being posted into form textboxes
I'm making a web application using PHP in where I have a form that makes entries into a MySQL database and later displays it on another webpage. But the problem is that the text boxes in the form tend ...
1
vote
5answers
143 views
Safely escaping a variable in a raw SQL query
Im just wondering, would the following be completely safe or would someone be able to get around it using hexadecimal characters, etc:
$name = ...
0
votes
2answers
233 views
what more can I do to prevent myself from XSS injection & SQL Injection?
If my site ever goes live (don't think it will, its just a learning exercise at the moment).
I've been using mysql_real_escape_string(); on data from POST, SERVER and GET.
Also, I've been using ...
5
votes
7answers
576 views
Preventing server-side scripting, XSS
Are there any pre-made scripts that I can use for PHP / MySQL to prevent server-side scripting and JS injections?
I know about the typical functions such as htmlentities, special characters, string ...
5
votes
6answers
1k views
Ways I can protect my site excluding XSS and Sql injection?
So, members of my website can post topics, replies, comments, edit them and so on. I always use htmlspecialchars and addslashes for html inputs to protect my site against XSS and SQL injection ...
7
votes
7answers
470 views
Are these two functions overkill for sanitization?
function sanitizeString($var)
{
$var = stripslashes($var);
$var = htmlentities($var);
$var = strip_tags($var);
return $var;
}
function sanitizeMySQL($var)
{
$var = ...
3
votes
4answers
213 views
Will these security functions be enough?
I am trying to secure my site so I'm not vulnerable to sql injection or xss.
Here's my code:
//here's the form (abbreviated)
<form>
<label for="first_name" class="styled">First ...
1
vote
4answers
230 views
What's the best, Escape then store Or store then escape the output?
After doing a long search on stackoverflow i didn't find any one talked about this even if it's a big choice, the Question is what's the best in order to prevent both of XSS and SQL injection, ...
3
votes
3answers
854 views
Preventing spam bots on site?
We're having an issue on one of our fairly large websites with spam bots. It appears the bots are creating user accounts and then posting journal entries which lead to various spam links.
It ...
6
votes
7answers
2k views
Is Markdown (with strip_tags) sufficient to stop XSS attacks?
I'm working on a web application that allows users to type short descriptions of items in a catalog. I'm allowing Markdown in my textareas so users can do some HTML formatting.
My text sanitization ...



