Introduction
In this last part of the Website Hacking series, we are going to list 18 common web vulnerabilities and flaws and we are going to briefly provide solutions to them. Some of them are described for the first time in the Website Hacking series and some we have discussed before but in greater depth.
1. Saving all user input
If you are using a framework, for example, a PHP framework, you might be tempted to save all user input to your model or database since it has already been validated and escaped. Let us say that you are using CakePHP and have included a registration form using CakePHP’s Form helper.
The registration view may look something like this:
<?php echo $this->Form->create(“User”);
echo $this->Form->input(“username”,
array(“label” => ‘Username:’)
);
echo $this->Form->input(“password”,
array(“label” => ‘Password:’)
);
echo $this->Form->end( array(‘class’ => ‘button medium radius success ‘, ‘label’ => “Register” ) );
Now, you might be tempted to save all data from CakePHP’s $this->request->data array/method as is if you do not read the docs carefully or view some of the examples provided there (the live blog site).
public function register() {
if ($this->request->is(“post”)) {
$this->User->create();
if ($this->User->save($this->request->data)) {
$this->Session->setFlash(“Account created. You may log in!”);
$this->redirect(array(
‘controller’ => ‘offers’,
‘action’ => ‘index’
));
}
}}
You just save all data and thank the framework creators. However, there are at least two things you did wrong:
$this->request->data does not contain escaped/sanitized input, just the input from the superglobals.
Firstly, you should use CakePHP’s h() function to prevent people inserting tags in their username: like this h($this->request->data)
However, this is not enough and a wrong approach. If you save all user input in your Model (database) the user can add new input tags directly in his browser and try to guess some columns in your users table for which you have not provided an input in the website’s form.
For example, many CakePHP’s applications have “role” column set to user/admin or something similar (it is used in the docs as well).
The user can just open his Developer Tools, find the registration form or right click and select Inspect Element, click on Edit as HTML and add a new input like this:
<input name=”data[User][role]” type=”text”>
<input name=” [User][role]” type=”text”>
Or whatever the current way for forms to interact with your Models is, guess column names and insert values to them.
One way to solve this is to change your column that defines user’s roles and permissions name to something unpredictable. However, that is not the safest approach you can take.
You can either insert the data into the database manually, which will ensure no extra columns will be saved:
$AddUser = array(‘User’ => array(
‘username’ => h($user[‘User’][‘username’]),
‘password’ => $user[‘User’][‘password’]
));
if ($this->User->save($AddUser)) {
Or alternatively, you could still save all user data but set explicitly the values of columns not found in the form:
public function register() {
if ($this->request->is(“post”)) {
$this->request->data[‘User’][‘role’] = “user”;
$this->User->create();
if ($this->User->save(h($this->request->data))) {
$this->Session->setFlash(“Account created. You may log in!”);
$this->redirect(array( ‘controller’ => ‘offers’, ‘action’ => ‘index’ ));
}
}
}
2. Allowing user access to assets
Many sites work with user input and user data and store this data. Clients can see where their assets are stored, so there is no need for them to guess. For example, a client could see that the images he uploaded were stored in /uploads/{username} because the images he uploaded were loaded to the page from that directory, so if he knows some usernames of different people he could just change the directory name to another user and browse through all of his data without having to brute-force directory names.
The first way to tackle this issue that we discussed before is not enough (adding Options All –Indexes to the .htaccess file).It would prevent users from browsing directories and opening whatever they want but they would still know the directory exists and they can still guess directory names because the server will return a 403 Forbidden (which shows something exists in that path). Furthermore, they could guess file names from some patterns that the file names follow and open them.
Therefore, you need to block access to the files in your uploads directory. If you are storing text files (let us say users can keep notes and view/edit them whenever they want) you could add to your .htaccess the following rule:
RewriteEngine On
RewriteRule ^uploads/.*\.(txt|doc)$ – [F,L,NC]
The F flag would return a 403 Forbidden response, the L flag causes the next rules to stop being processed, and the NC eliminates case-sensitivity.
Figure 1: The page with only directory listing disabled.
Figure 2: The page with only directory listing disabled. You cannot browse directories, but if each user has a notes.txt file, you can easily view user’s notes by knowing only their username.
Figure 3: Trying to access the notes with both directory listing and controlled access to files.
If you use the rewrite rule to disable users from browsing other users notes, your back-end would still be able to access the notes, show them to users or edit them. For example:
<?php
$user = “Cartman”;
$userNotes = file_get_contents(dirname(__FILE__). “/yourSite/uploads/{$user}/notes.txt”);
echo “<p> $userNotes </p>”;
?>
Where the $user variable would come from a session in a real-world application.
3. Running basic WordPress installation
Common mistakes here are not limiting the login attempts on your wp-admin page. This would allow anyone to brute-force your credentials and destroy your blog/site. This becomes even easier because most people create their master username to be ‘admin’ which involves only brute-forcing the password to get full access to the WP website. Another mistake is that the wp-admin login page is left without a form of CAPTCHA or a protection against bots. This combined with no limitation of login attempts equals certain death of your online presence at some point in the future. You could avoid all 3 of these things and also change the default wp-admin path to be something different as well (obfuscation).
4. Relying too much on IP addresses while having weak bot protection
Most ISPs provide dynamic IP addresses, and the IP address you have banned or stored may already be obsolete in less than a day. Furthermore, it is often not very difficult to change your IP address – use a proxy, release it from the router or from the OS, change locations. There are myriad ways to do it. To prevent bots from causing undesired consequences, it would be better to use alternative ways – enhance your CAPTCHAs, add inputs only bots will fill out, require JavaScript/cookies enabled to submit a form, and so on.
5. Improper redirects
Let us say that you have a redirect page or a GET value (for simplicity’s sake) that redirects users to another page of your site or to another website. However, if you forget to disallow redirects to third-party websites or in case you allow those, if you do not create a warning page before redirecting that will tell the user where they are going and that they are leaving the site – users can easily abuse your site by giving links that seem to be pointing to your site but will redirect users to malicious websites.
if (isset($_GET['redirect'])) { header("Location: " . $_GET['redirect']); }
If we have something as simple as this, then users can easily get fooled to enter bad sites by following an URL like this:
http://localhost:8079/articles/Website%20Hacking%20Part%20VII/?redirect=http://www.somemalicioussitehere.com
6. Cross Site Request Forgery
If your site allows users to add comments/posts and insert tags such as <img> and load a third-party image, they can provide a link that is not an image but will fool the clients’ browsers (the users that will be reading them) to load the resource and perform an action on a website if they are authenticated in it. For example, if Facebook was sufficed with a couple of GET parameters or a particular URL to follow someone/something on their network, we could have added an image like that:
And if the user is currently logged in he would have followed an arbitrary person. Of course, this would not work in this particular situation.
7. Insecure file handling
A common mistake is to trust that a file does not contain something inappropriate. Code can be disguised as an image, so checking the file extension is not enough. At the very least, the MIME type should also be checked. Also, ASCII / text files should be escaped.
Here is an example of such a vulnerability:
<form action=”” method=”POST” enctype=”multipart/form-data”>
<input type=”file” name=”myTxt”> <br><br>
<input type=”submit” value=”Upload”>
</form>
<script>
$(“form”).on(‘submit’, function() {
if ($(“form input[type=’file’]”).val().split(“.”).pop() === “txt”)
{ return true } else { return false; }
})
</script>
The vulnerability arises when at some point we display the contents of the .txt file in our page:
if (isset($_FILES[‘myTxt’])) {
echo readfile($_FILES[‘myTxt’][‘tmp_name’]);
}
If the file we submit contains the following code:
<script>
alert(document.cookie);
</script>
Then all user cookies for that website will be shown in an alert.
8. Displaying and trusting HTTP headers
These can be modified by users and can be malicious. For example, if you display the client’s User-Agent header, it might be changed to consist of code which would then be executed in your back-end.
This is also valid for the referrer header, so it should not be used to determine whether the user can access a particular page by itself (for example, checking if the referfer is the login page and assuming the user has logged in successfully since he was redirected to the members area’s index page from the login page).
9. Information disclosure
Your live apps should not be in debug mode. Errors should not be shown.
10. Directory traversal
If you are using some parameter that opens different files on your website based on user input, your back-end should escape special characters such as the . (dot) or / (slash) from the input and preferably use whitelisting.
11. Using HTTP for semi-confidential data
A common flaw is using HTTP for sites that include mechanisms such as registration/login. Even widely used online marketplaces in Bulgaria use simple HTTP (such as http://www.olx.bg ). Using HTTP makes it easy for potential attackers in your network to sniff your traffic and get your credentials with no real efforts. For example, if you login to olx while in a Wi-Fi, you are subject to risk.
13. Sessions can be stolen
Sessions can be stolen, making the attacker login as someone else. There are multiple vectors of defense here – such as checking the IP address, the user agent, and regenerating session, and adding cookies.
14. Be careful which third-party libraries, CDNs and plugins you use
They might be simply outdated, opening a wide variety of security holes, or they might be malicious – giving access to the shady library’s creator to your server.
15. Bots are everywhere
Take care of malicious bots not by banning their IP but by enhancing CAPTCHA, adding hidden form fields that users would not fill, and requiring JavaScript or cookies enabled to submit a form.
16. Use HTTP only cookies
This would reduce the impact of some other attacks – such as XSS
17. Hashing
Hash your passwords and try to avoid md5 or sha-1 algorithms (https://community.qualys.com/blogs/securitylabs/2014/09/09/sha1-deprecation-what-you-need-to-know, http://security.stackexchange.com/questions/33108/why-does-some-popular-software-still-use-md5 ). Use salts to prevent attacks with rainbow tables.
18. XSS
Always escape input unless you really, really trust the source (admin panel). You can either remove tags or display them as entities depending on your needs. | PHP: strip_tags($input, $allowedTags); htmlspecialchars($input, ENT_QUOTES); htmlentities($input); |
19. SQL Injection
Use prepared statements or do not perform a query which is not hardcoded without sanitizing it (PHP: PDO class or sanitize with mysqli_real_escape_string($conn, $str) if using mysqli. Do not use mysql_*).
Conclusion
This was the last part of the Website Hacking series. We have introduced some new vulnerabilities and briefly discussed them and have summarized our points for everything that we have talked about so far.
We hope that now you will feel more confident when deploying your web apps by putting these strategies in use.
To download the code that comes with this article and read it from its original place of publishment, please visit: http://resources.infosecinstitute.com/website-hacking-part-vii-common-web-vulnerabilities-brief-solutions/
Be First to Comment