=>  Releases

Stable: 1.3.7
for kernels:

  • 2.4.36
  • 2.6.23.14

Devel 1.4: 1.4.0-rc3
for kernels:

  • 2.4.36.9
  • 2.6.27.5

Full RSBAC kernels
Lazy of patching ? Get the already rsbac-patched kernel. Choose your flavor.

Classic kernels
Includes vanilla kernel with the RSBAC patch

  • 2.6.23.14
  • 2.4.35.3

Enhanced kernels
Kernels including latest security fixes, goodies, and of course PaX+RSBAC

  • 2.6.23.15 (20080217)
  • 2.4.36 (20080217)

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

Module registration

# Module loading file
# Add the lines with YOURMODULE, your module should also be present
# in the module loader path (best is in './modules')
#
# Skeleton:
# __import__("YOURMODULE", globals(), locals(), [])
# mod_list = ["mantis", "YOURMODULE"]
import sys
sys.path.append('./modules')
 
__import__("mantis", globals(), locals(), [])
__import__("roulette", globals(), locals(), [])
 
 
mod_list = ["mantis", "roulette"]

Module itself

Skeleton:

import os, sys
 
__info__ = {    'author': 'kang',
                'email': 'kang@insecure.ws',
                'version': '1',
                'date': '07-11-2005' }
 
chan_handlers = []
msg_handlers = []
 
def init():
 
def chanmsg_handler(channel, nick, cmd, args):
 
def privmsg_handler(channel, nick, msg):
 
def die():
 

Module Sample:

import os, sys
import random
__info__ = {    'author': 'kang',
                'email': 'kang@insecure.ws',
                'version': '1',
                'date': '07-11-2005' }
 
chan_handlers = ['!roulette']
msg_handlers = []
 
gun_max_load = 6
gun_bullet_slot = random.randint(1, gun_max_load)
gun_current_slot = 0
 
 
def init():
        gun_max_load = 6
        gun_bullet_slot = random.randint(1, gun_max_load)
        gun_current_slot = 0
 
def chanmsg_handler(channel, nick, cmd, args):
        r = sys.modules['roulette']
        r.gun_current_slot = r.gun_current_slot + 1
        if r.gun_current_slot == r.gun_bullet_slot:
                action = 'PRIVMSG %s :*BANG*. %s is lying on the floor.\r\n' % (channel, nick)
                r.gun_bullet_slot = random.randint(1, r.gun_max_load)
                r.gun_current_slot = 0
        else:
                action = 'PRIVMSG %s :*clic*\r\n' % (channel)
        return action
 

team/kang/bot.txt · Last modified: 2006/05/02 15:40
This website is kindly hosted by m-privacy