Releases
Stable: 1.3.7
for kernels:
Devel 1.4: 1.4.0-rc3
for kernels:
Full RSBAC kernels
Lazy of patching ?
Get the already rsbac-patched kernel. Choose your flavor.
Classic kernels
Includes vanilla kernel with the RSBAC patch
Enhanced kernels
Kernels including latest security fixes, goodies, and of course PaX+RSBAC
Debian repository
Also works for Ubuntu and other Debian-based distributions, of course
SVN
Cutting edge RSBAC source code, can be unstable sometimes
Events
No events planned
/* type: will just show that string before printing * hash: well, the hash! ;) */ int rsbac_show_hash(char *type, char *hash) { char *p; int x, len = 0; p = rsbac_kmalloc(100); for(x=0; x<RSBAC_UM_PASS_LEN;x++) len += sprintf(p+len, "0x%x", hash[x]); rsbac_printk(KERN_INFO "hash %s: %s\n", type, p); rsbac_kfree(p); return 0; }