Posted on 28-02-2008
Filed Under (documentation) by Linux Poweruser Programmer

Core Patterns for Web Permissions
Google engEDU
56 min – Jul 19, 2006

Google TechTalks
July 19, 2006

Tyler Close

Visiting Scientist Hewlett-Packard Laboratories

Mr. Close is a researcher and developer, working in the field of secure, multi-user, distributed applications since 1998.

ABSTRACT
In Authorization Based Access Control (ABAC) systems built with object-capabilities, an access policy is expressed by the shape of a reference graph: what a user can do is determined by where they are in the reference graph and what other parts of the graph are reachable from that point. By applying some basic cryptography to create links that act as "webkeys", we can construct URL graphs that are compatible with today’s WWW infrastructure and additionally provide the properties of distributed capabilities. Webkeys enable users to achieve password-free fine-grain access control implicitly, simply by sending one another links to the pages they want to share. The webkey approach simultaneously provides developers with a powerful, and readily audited, access-control model.

In this talk, we’ll study the implementation of the CapWiki, which can serve as a private data space, a locally shared data space, a blog, and a wiki, simply by varying which links have been distributed to which people. Read the rest of this entry »

Sphere: Related Content

Tags: , , , , , , , , , ,
(0) Comments    Read More   
Posted on 08-01-2008
Filed Under (Apache) by Linux Poweruser Programmer

How to apply htaccess on a web directory
Barry Thomas
14 min – 22-Mar-06

A guide to setting up a protected password folder using htaccess. Suitable for unix/linux systems. Read the rest of this entry »

Sphere: Related Content

Tags: , , , , , , , ,
(0) Comments    Read More   
Posted on 08-01-2008
Filed Under (Apache) by Linux Poweruser Programmer

.htaccess Password Generator Online Tool
IMNirvana
6 min – 3-Sep-07

http://www.imnirvana.com — Use this cool online .htaccess Password Generator to easily password protect Free Link Cloaker. All you need to do is copy and paste. Read the rest of this entry »

Sphere: Related Content

Tags: , , , ,
(0) Comments    Read More   
Posted on 08-01-2008
Filed Under (MySQL) by Linux Poweruser Programmer

Learning PHP – Lesson 4 Part 2
uzzisoft
7 min – 14-Dec-07

Learning PHP – Lesson 4: Files and Databases (2006)
Make folders and files, commenting in PHP, checking if directories/files exist, checking if the file is writable, appending (writing) data to files, remove directory/files, command to run/shutdown the MySQL server, changing MySQL password, creating databases, PHP connection to MySQL code, creating tables, inserting values, deleting values, editing values, updating values and displaying values.
http://www.uzzisoft.net/learning_php.php Read the rest of this entry »

Sphere: Related Content

Tags: , , , , , , ,
(0) Comments    Read More   
Posted on 08-01-2008
Filed Under (MySQL) by Linux Poweruser Programmer

PHP Tutorial // User Registration w/ SQL
lifeg0eson666
16 min – 1-Oct-06

PLEASE CHECK OUT THE SECOND VIDEO OF THIS

A quick and easy user registration using php, sql and phpmyadmin.

For full size and source codes: http://www.neoblob.com/phpsquad/tuts/php/1/

SQL:
CREATE TABLE `user` (
`id` int(10) unsigned NOT NULL auto_increment,
`username` varchar(20) NOT NULL default ”,
`password` varchar(50) NOT NULL default ”,
`email` varchar(40) NOT NULL default ”,
`ip` varchar(20) NOT NULL default ”,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; Read the rest of this entry »

Sphere: Related Content

Tags: , , , , , , ,
(0) Comments    Read More