Diemension9

  • News
  • Linux
  • Fuckipred
  • Tiny gems
  • Htc Hero
  • Downloads
  • svn with encrypted passwords using sasl

    no time to write a long post. this is one way to get rid of the plaintext passwords, using sasl when running a svn server on ubuntu or pretty much any debian-based distro. this assumes that you have svnserve up and running, also /svn/root means your svn root folder, not necessarily that path. the indented parts are supposed to be entered in files (here i use vim, you can change it to <your-editor-of-choice>).

    sudo apt-get install libsasl2-2 libsasl2-modules sasl2-bin
    sudo vim /etc/default/saslauthd
            # change the row that says START=no to START=yes
    
    cd /svn/root
    sudo svnadmin create newrepo
    sudo vim newrepo/conf/svnserve.conf
            # insert the following
            [general]
            anon-access = none
            auth-access = write
            # realmname may not contain special chars (this includes spaces, dashes and pretty much anything except a through z)
            realm = realmname
            [sasl]
            use-sasl = true
            min-encryption = 256
            max-encryption = 256
            # EOF
    
    sudo vim /usr/lib/sasl2/svn.conf
            # this is the basic setup.. alotta settings can be used
            pwcheck_method: auxprop
            auxprop_plugin: sasldb
            # i used /etc/svn_sasldb here
            sasldb_path: /path/db_name
            mech_list: DIGEST-MD5
            # EOF
    
    sudo ln -s /usr/lib/sasl2/svn.conf /usr/lib/sasl2/subversion.conf
    # add as many users as you need
    sudo saslpasswd2 -f /path/db_name -c -u realmname username
    sudo /etc/init.d/svnserve restart
    
    # and ya done!!
    

     

    // sluggo

    Posted

    2011-04-17 #

    Filed under

    Linux

    Tags

    debian, libsasl, sasl, svn, svnserve, ubuntu

    5 comments

  • fixed missing dependency

    forgot to add build-essential as a dependency in the deb package, since it downloads, compiles and installs aircrack-ng now youll need it. anywho, if you got an error when trying to install (or actually configuring) v0.2.14b, please redownload and try again, this time it should work.
    sorry bout that!

    // sluggo

    Posted

    2009-07-01 #

    Filed under

    fuckipred

    Tags

    deb, debian, fuckipred, mint, ubuntu

    no comments

  • fuckipred v0.2.14b

    NOTE! a few users have been experiencing some problems with fuckipred and newer versions of aircrack-ng than 1.0_rc3! you should therefor only use fuckipred with the rc3 release, or wait for the next version of fuckipred which will use the current version of aircrack-ng.

    second beta release! added ieee8021 network stack support.. also fixed up the arch-package, it now takes care of all the aircrack-ng compiling for you. for full info please see the changelog!

    please do report any bugs to sluggo@dm9.se!
    (still) missing feats:
    * save crack result
    * connect to cracked/saved network
    * advanced settings
    aircrack-ng >= 1.0-rc3 still has to be compiled with unstable=true to build wesside-ng.

    update 09-06-28:
    well even though i was drunk this time as well i think this deb should work.. just as the arch version it downloads, compiles, and installs aircrack-ng as needed. this means you dont have to do anything by yourself, just start, list networks and crack!

    arch linux aur:    http://aur.archlinux.org/packages.php?ID=26732
    deb package:     fuckipred_0.2.14b-1_i386.deb (23.0 KiB, 2,327 downloads)
    rpm package:    n/a
    src:     fuckipred-0.2.14b.tar.gz (30.4 KiB, 1,851 downloads)

    // sluggo

    Posted

    2009-06-21 #

    Filed under

    fuckipred, News

    Tags

    aircrack-ng, arch linux, aur, crack, deb, debian, fedora, front end, fuckipred, mint, new version, News, one click crack, rpm, ubuntu, unstable=true, wep, wesside-ng

    no comments

  • aircrack-compiler-installer-script-thingy

    NOTE! this script is not needed if you’re using arch linux or a debian derivate (eg. ubuntu or mint), the latest packages will do it all for you.

    first responses to the beta are in and the most common one was the question how to compile aircrack-ng with the unstable=true option. in the next version therell be a button for this (downloading-compiling-installing) but until then i wrote tiny shell script with pretty much no error-checking!
    instructions:
    download the script into a folder and open a terminal there, then type..
    if you’re using debian (or ubuntu, mint …):

    sudo apt-get install build-essential sqlite3 libsqlite3-dev
    sudo apt-get install openssl-dev # (if this fails use libssl-dev instead of openssl-dev)
    chmod +x aircrack-installer.sh
    ./aircrack-installer.sh

    most other distros:

    chmod +x aircrack-installer.sh
    ./aircrack-installer.sh

    openssl and sqlite3 will, if not already installed, be downloaded and installed by the script. for some reason it failed on my friends machine running xubuntu 8.something (i dont currently have a debian based testing environment).

    script:     aircrack-installer.sh (2.0 KiB, 1,341 downloads)

    09-06-02 update:
    fixed a bug in the script and added wesside-ng check, thank you Musen for trying it out on ubuntu!

    09-06-21 update:
    arch users dont need this script, the new aur pkgbuild takes care of everything..

    // sluggo

    Posted

    2009-06-01 #

    Filed under

    fuckipred

    Tags

    aircrack-ng, arch linux, compile, debian, fuck ipred, fuckipred, mint, openssl, sqlite3, ubuntu, unstable=true

    no comments

Top