0
votes
3answers
34 views

Can I use htmlspecialchars($email, ENT_QUOTES, 'UTF-8') instead of filter_sanitize_email()

I am very confident with htmlspecialchars() for sanitizing user-inputted data as mentioned in the title. But for sanitizing emails, can I still use it, instead of FILTER_SANITIZE_EMAIL()? Provided I ...
-3
votes
2answers
21 views

Exactly what characters does htmlspecialcars() encode [closed]

I tried the php.net site regarding this and it says that htmlspecialchars() encodes these characters: ampersand, double quotes, single quotes, less than and greater than. I this all or there are other ...
-2
votes
3answers
54 views

How do I secure against XSS and CSS injection? [closed]

I've made a function to deal with CSS and XSS injecting but its still getting through. Someone said the following to me, but I'm not sure what it means: On your sanitize_input function, do a ...
0
votes
2answers
53 views

Does Google chrome automatically stop XSS?

I have been doing some testing with XSS and I created a simple form with one text input and the php at the top of the page echoes out the value, like this: <!doctype html> <html ...
4
votes
3answers
72 views

prevent xss attack via url( PHP)

I am trying to avoid XSS attack via url url :http://example.com/onlineArcNew/html/terms_conditions_1.php/%22ns=%22alert%280x0000DC%29 I have tried ...
1
vote
2answers
57 views

XSS in PHP: htmlspecialchars or the Apache URL Rewrite rule?

I am not familiar with PHP and our product is not written in PHP. We use a vendor that creates for our documentation using PHP. Recently we discover XSX attack in the PHP code. The XSS attack was ...
1
vote
1answer
35 views

what does htmlentities with ENT_QOUTES and UTF8 do?

So I have always used simple htmlentities($_POST['string']); to clean data for any XSS attacks. Recently I have seen people use this: htmlentities($_POST['string'], ENT_QUOTES, 'UTF-8'); What is ...
0
votes
2answers
39 views

Htmlentities OR htmlspecialchars OR stripslashes? [closed]

I would like to prevent XSS attack on my website using PHP. I know that there are 3 functions which could basically prevent this attack, but I'm not sure which one should I use. I have seen other ...
-2
votes
0answers
48 views

How to make clean & safe user input in PHP?

I am creating a huge website with a Registration and Login form. I'm using PHP to create the server side part of the website. I have already created websites before, however I always had problem with ...
0
votes
4answers
64 views

How to prevent against XSS and SQL injection [duplicate]

i want to check my data from the user for XSS and SQL injection and this is how i tried if (isset($_GET['membernumber'])) { $mem = htmlentities($_GET['membernumber']); $memberparamter = ...
0
votes
0answers
44 views

Preventing XSS attacks in php

I have a website with form for user entry and it is getting XSS attacked by hackers daily. I remove those infected forms daily but because these attacks are persistent i want to know is there a way ...
0
votes
2answers
28 views

Not all eligible encoding using htmlentities

I am using PHP 5.3.6 and and using HTML entities to encode some POST data. However, parenthesis and % are not encoding to their equivalent entity. We have been told by the web security team that ...
3
votes
0answers
39 views

Not allowing javascript links in markdown [duplicate]

The primary XSS vulnerability in (PHP) markdown after disallowing HTML tags seems to be that it allows links like this: [foo](javascript:alert('xss')) which will turn into <a ...
1
vote
1answer
86 views

Why/How is `value=“javascript:alert(1)”` considered as a XSS vulnerability in OWASP's ZAP tool?

The results for OWASP's ZAP has been very useful for eliminating vulnerable parts of my website. However, I've found a lot of results that I simply cannot fix. For example, one of the get parameters ...
0
votes
1answer
46 views

PHP json_encode and XSS

This question has been asked many times. See here, here and here Based on the answers in those questions I did some tests and I'm forced to ask the same question again as none of the answers appear ...
0
votes
1answer
43 views

Is XSS possible with handsontable and no PHP?

My webpage has the php extension, but there is no php code in it. There is handsontable and user would insert some numbers and get some cool JS effects on the same page. When I was writing the code ...
-1
votes
3answers
94 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
64 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 = ...
2
votes
3answers
67 views

How to avoid XSS and CSS but allow users to use some HTML tags?

I need a way: to lets users to use ONLY <strong> and <p> tags. to avoid users to use CSS with these tags ( for example this must NOT works: <p style="margin:1000px;"> hello ...
0
votes
1answer
37 views

Is htmlspecialchars() used for all applications when suspect content is put on a page?

I understand that I should use htmlspecialchars() when displaying user provided content as HTML on a page. Does that apply for other content such as JavaScript, CSS, value of an <INPUT>, etc? ...
0
votes
3answers
48 views

Does urlencode() protect against XSS

$address and $cityState is user provided, stored in a DB, and available for others to view as shown below. Is there risk of XSS? Should htmlspecialchars() also be used on it? <img ...
0
votes
1answer
42 views

php security and ajax requests

I have some simple scripts on my site that allow users to accomplish tasks like calculating date differences, do math calculations etc. The website is about 95% pure html (not php generated), except ...
0
votes
2answers
35 views

How to filter XSS out but still allow basic formatting tags

I am working on a website that allows people to enter html formatted content using an editor. However, I am concerned about XSS injections. The editor obviously filters information on the client ...
2
votes
4answers
162 views

Preventing XSS from within HTML elements

Is the following enough to prevent XSS from inside HTML elements? function XSS_encode_html ( $str ) { $str = str_replace ( '&', "&amp;", $str ); $str = str_replace ( '<', ...
-1
votes
2answers
136 views

how to rename the joomla administrator folder

I want to rename the joomla administrator folder to other name to prevent the hacking from identifying the site is built of joomla . But i have tried this way. in it, they are using cookies . Is it ...
3
votes
1answer
314 views

DOMDocument remove script tags from HTML source

I used @Alex's approach here to remove script tags from a HTML document using the built in DOMDocument. The problem is if I have a script tag with Javascript content and then another script tag that ...
1
vote
4answers
111 views

How i can find 100% sure a JS inside of HTML tag?

I need to save some data with some HTML tags, so I can not use strip_tags for all text and I can not use htmlentities because the text must be modified by the tags. To defend other users against XSS I ...
2
votes
1answer
74 views

PHP OWASP TOP 5 - Protection against Cross-site scripting (XSS) list item 4 and 5

At https://www.owasp.org/index.php/PHP_Top_5#How_to_Determine_if_you_are_Vulnerable_2 link, under title P2: Cross-site scripting > How to Protect Against It; in item 4 and 5 it's written that: item ...
0
votes
2answers
63 views

PHP: <script> tag echoed from $_POST is mysteriously blocked

I'm trying to test information I learned regarding PHP security. I have a simple HTML5 page with a POST form and a single textarea input, where I input the following JS code: <script>var x = 5; ...
3
votes
2answers
146 views

Why my code vulnerable to xss attack?

I have php code like this <?php $input_from_user = "w' onclick = 'alert(document.cookie);'"; $i_am_barcelona_fan = htmlentities($input_from_user); ?> <input type = 'text' name = ...
0
votes
0answers
77 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
0answers
25 views

Displaying user input as foreign languages

I just recently encountered a problem that I wasn't really expecting. Up to this point I use htmlentites() to protect against XSS attacks. I don't make it an option for users to enter html so it works ...
1
vote
5answers
175 views

How to display html/javascript code as normal text on page

In my application user can post their status updates, in which there is possibility that thy might post some code html/javascript or any other script, I am storing it in my database, and showing it on ...
0
votes
2answers
228 views

How to Remove unwanted Style attributes from HTML String Using PHP DOMDocument

I have prepared a white list of allowed styles and I want to remove all the styles out of the white list from HTML String $allowed_styles = ...
0
votes
2answers
46 views

PHP DOMDocument hasAttribute is associated to which Elements?

I want to check all the tags under the body and check and remove if it has style attribute I have tried $user_submitted_html = "This is Some Text"; $html = '<body>' . $user_submitted_html . ...
1
vote
5answers
92 views

New Way To Prevent XSS Attacks

I have a website related to entertainment. So, I have thought to use a new method to prevent XSS Attack. I have created the following words list alert(, javascript, ...
1
vote
2answers
168 views

htmlpurifier removes all the formatting done by CKEDitor

I am using CKEditor to let the user post their comments. I thought to use the htmlpurifier to secure my html. But when I tried it, it actually removes all the formatting done by CKEditor. The ...
-2
votes
1answer
94 views

Being attacked - What's that? [closed]

Seems like my website is being attacked. I looked at the Apache logs and I saw thousands of lines like these; Some random folders which don't even exist. Looks like some brute force for websites... ...
5
votes
1answer
107 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
1answer
165 views

Sanitizing user input HTML with htmlspecialchars, nl2br, str_replace, htmlspecialchars_decode, and stripslashes

I made this function function echoSanitizer($var) { $var = htmlspecialchars($var, ENT_QUOTES); $var = nl2br($var, false); $var = str_replace(array("\\r\\n", "\\r", "\\n"), "<br>", $var); $var = ...
-5
votes
2answers
100 views

XSS and PHP Attacks [closed]

I have been assigned to test a website that another group has just created. I have discovered that it is prone to XSS attacks. However, it does not really throw up an error or any valid ...
0
votes
1answer
234 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
0answers
49 views

Bad referrer data in xss [closed]

I came across this while I'm learning securing php from xss attacks. Can anyone please tell me what is bad referrer data?? and how it show impact on a website?. I'm providing the link and little ...
1
vote
5answers
84 views

It is reasonable to implement security in a web app after implementing its main features?

Excuse me if this seems too vague to be posted on Stackoverflow. My company hired three developers to implement a classified ads system, using PHP and MySQL. They’ve been working for little more than ...
0
votes
1answer
106 views

iframe xss protection different domains

A couple of days ago I found this website: http://hsmaker.com/ I noticed it works for any http website (i checked about 50 common websites). It fetches the url's content into an iframe and then, I ...
1
vote
0answers
32 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
189 views

What is the best way to sanitize user inputs?

I need to prevent XSS attacks as much as possible and in a centralized way so that I don't have to explicitly sanitize each input. My question is it better to sanitize all inputs at URL/Request ...
-1
votes
1answer
73 views

Block access to a file using htaccess [closed]

I have a .htaccess inside a folder with: Order Deny,Allow Deny from all Allow from localhost Satisfy Any I try to limit access to a file that contains a hashed key, only to the same domain, to ...
0
votes
1answer
316 views

how to clean POST and GET vars in PHP for XSS and SQL injection

In my web app is a config file which includes i.e. database connection settings ans is always loaded at the first line of a PHP script. I would like to include a function which cleans all POST and GET ...
0
votes
1answer
76 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 ...

1 2 3 4 5 9