Wiki articles tagged with "security"

Showing 1-20 of 24 items.

Checking for "expired" sessions/logins on the client side

Created 12 years ago by le_top le_top, updated 10 years ago by le_top le_top.

Getting "Expired token" errors ? Here is a solution to avoid invalid CSRF on POST or ajax requests, or user identity changes.

4 0
12 followers
Viewed: 42 362 times
Version: 1.1
Category: How-tos

Mais segurança em suas aplicações com Yii e PHPIDS

Created 15 years ago by Rafael Garcia Rafael Garcia, updated 15 years ago by Rafael Garcia Rafael Garcia.

PHPIDS é conhecido projeto que pode ser visto em php-ids.org.

2 1
3 followers
Viewed: 14 354 times
Version: 1.1
Category: How-tos

[PT-BR] Proteção Contra Logout CSRF

Created 14 years ago by Rodrigo Coelho Rodrigo Coelho, updated 14 years ago by Rodrigo Coelho Rodrigo Coelho.

CSRF é o acrônimo para Cross-site request forgery.
CSRF é um ataque que forca o usuário a executar ações não desejadas numa aplicação Web na qual ele está autenticado.

2 1
3 followers
Viewed: 15 457 times
Version: 1.1
Category: Tutorials

ACL and RBAC

Created 13 years ago by zeroByte zeroByte, updated 13 years ago by kevinkorb kevinkorb.

This HowTo assumes that you have a smattering of ACL in general and of how the acl-extension works basically. It will introduce you into the abstract and give you a hint on how to use Business-Rules. If you have in-depth questions, please refer to the extension documentation. Using ACL in an RBAC-manner cannot and should never obs...

0 0
3 followers
Viewed: 34 864 times
Version: 1.1
Category: How-tos

Enhance security of cookie-based login

Created 11 years ago by darkheir darkheir, updated 11 years ago by darkheir darkheir.

When talking about cookie-base login the Yii guide indicates the following:

2 0
2 followers
Viewed: 19 789 times
Version: 1.1
Category: How-tos

More security in your applications with Yii and PHPIDS

Created 15 years ago by Rafael Garcia Rafael Garcia, updated 14 years ago by Gustavo Gustavo.

PHPIDS is a well known project that can be found in php-ids.org.

6 0
14 followers
Viewed: 22 645 times
Version: 1.1
Category: How-tos

Logout CSRF Protection

Created 14 years ago by Rodrigo Coelho Rodrigo Coelho, updated 14 years ago by Rodrigo Coelho Rodrigo Coelho.

CSRF is the acronymn for Cross-site request forgery.
It is an attack which forces an end user to execute unwanted actions on a web application in which he/she is currently authenticated.

10 0
11 followers
Viewed: 32 627 times
Version: 1.1
Category: Tutorials

Make the authentication more securely

Created 11 years ago by Kostas Apazidis (KonApaz) Kostas Apazidis (KonApaz), updated 11 years ago by Kostas Apazidis (KonApaz) Kostas Apazidis (KonApaz).

Suppose a hacker has an account of your website He could set the PHPSESSID to empty After of that He login in your system The PHPSESSID remains blank and user has already logged with this session

2 0
3 followers
Viewed: 17 782 times
Version: 1.1
Category: Tutorials

Single PHP entry point with Nginx

Created 10 years ago by MadAnd MadAnd, updated 10 years ago by MadAnd MadAnd.

In this article I will show you how to slightly increase application security, by exploiting the fact that Yii implements the Front Controller Pattern.

4 0
3 followers
Viewed: 21 323 times
Version: all
Category: How-tos

Simple authorization system

Created 14 years ago by Gustavo Gustavo, updated 12 years ago by Gustavo Gustavo.

How to create a simple (non-RBAC) authorization system

14 0
17 followers
Viewed: 48 440 times
Version: 1.1
Category: How-tos

Extension Development (beginner)

Created 11 years ago by sefburhan sefburhan, updated 11 years ago by CeBe CeBe.

To extend the functionality of you web application relative to your requirements you are supposed to use existing yii core libraries or use external libraries. There are some steps to ensure security, uniqueness, modularity, performance and to avoid rework in future.

Step 01: Have a Strategy

  • Is my extension just for fun/demonstration purposes or for everyday use in the real world? -...

Force a User to Change Their Password (ChangePasswordFilter)

Created 14 years ago by waterloomatt waterloomatt, updated 14 years ago by waterloomatt waterloomatt.

Sometimes you need to force a user to change their password after x number of days. This article describes how to implement this using a filter, ChangePasswordFilter.

14 0
10 followers
Viewed: 31 981 times
Version: 1.1
Category: Tutorials

Configuring controller access rules to default-deny

Created 14 years ago by Steve Friedl Steve Friedl, updated 12 years ago by nsanden nsanden.

Starting with the blog tutorial, Yii developers are familiar with the notion of access rules defined in the controller, where the actions are allowed or denied depending on the user's name or role.

class CommentController extends CController {
    public function filters()
    {
        return array( 'accessControl' ); // perform access control for CRUD operations
    }

11 0
12 followers
Viewed: 142 789 times
Version: 1.1
Category: How-tos

default csrf security and ajax post in one controller

Created 11 years ago by jasonban jasonban, updated 11 years ago by CeBe CeBe.

Hello Yii friends

0 3
8 followers
Viewed: 30 095 times
Version: 1.1
Category: Tutorials

Secure password hashing with bCrypt

Created 14 years ago by waitforit waitforit, updated 13 years ago by Ivo Pereira Ivo Pereira.

In this article I will show you how to implement a secure password hashing mechanism in your Yii projects using a bCrypt class.

5 0
9 followers
Viewed: 40 708 times
Version: 1.1
Category: How-tos

Secure password hash storage and a Yii helper extension

Created 14 years ago by fsb fsb, updated 12 years ago by fsb fsb.

This wiki has been replaced by Use crypt() for password storage.

13 0
13 followers
Viewed: 78 879 times
Version: 1.1
Category: Tutorials

Moving project code outside of webroot (plus multiple project support)

Created 15 years ago by Steve Friedl Steve Friedl, updated 14 years ago by Steve Friedl Steve Friedl.

Yii's by-default directory organization works well enough, but there are several steps one can take that improve the security and serviceability of the system, especially in the context of multiple Yii projects on the same machine (including multiple versions of the same project).

21 1
19 followers
Viewed: 68 465 times
Version: 1.1
Category: How-tos

Show captcha after <N> unsuccessfull attempts

Created 13 years ago by zitter zitter, updated 13 years ago by zitter zitter.

In this mini howto I would like to show how to add a required captcha field in the login form, after a defined number of unsuccessfull attempts. To do this, I will use the blog demo that you have in default Yii download package (path/to/yii/demos/blog).

13 4
15 followers
Viewed: 37 502 times
Version: 1.1
Category: How-tos

Using phpseclib with Yii

Created 13 years ago by nkd nkd, updated 13 years ago by nkd nkd.

I installed phpseclib because I needed to do some AES encryption in my project. After all the hassle of installing php lib, I found out that Yii already has a security module (securityManager). I finally decided to keep using phpseclib because it has one big advantage over Yii securityManager module, it does...

0 0
6 followers
Viewed: 21 752 times
Version: 1.1
Category: How-tos
Tags: security

Yii Security-extended guide

Created 14 years ago by bingjie2680 bingjie2680, updated 14 years ago by bingjie2680 bingjie2680.

This article is called extended guide is because there is already a security guide in the Yii tutorial security section. but that guide is not complete in the sense that it does not rise the developers' attention to some other commonly happening attacks: SQL injection and magic URL, which can be major vulnerabilities in you...

6 6
12 followers
Viewed: 34 817 times
Version: 1.1
Category: Tips