Diemension9

  • Home
  • News
  • Fuckipred
  • Tiny gems
  • Htc Hero
  • Downloads
  • getting bankid to work on Arch Linux x86_64

    thought id share how i got bankid (nexus personal) to work on my Arch64-box.. all credits go to zoledian and his guide on the arch forum. pretty much all you have to do is follow his guide, but since some of the packages are outdated i thought id make a note. ill assume you have yaourt installed in this guide and you really should, nspluginwrapper comes with about a bunch of lib32-dependencies!
    First off, install lib32-libidn, lib32-libpng12, nspluginwrapper-debian (the nspluginwrapper aur is outdated and didnt work when i tried to install it) and zip:

    yaourt -Sy lib32-libidn lib32-libpng12 nspluginwrapper-debian
    pacman -S zip

    create the folder /usr/lib/xulrunner-addons/plugins

    sudo mkdir -p /usr/lib/xulrunner-addons/plugins

    download LinuxPersonal.tgz from https://install.bankid.com/. Unpack and install it:

    tar -xvf LinuxPersonal.tgz
    cd personal-<your.version>
    sudo ./install.<your.version>.sh i

    now nspluginwrap it

    nspluginwrapper -i /usr/lib/xulrunner-addons/plugins/libplugins.so

    and that should be it! you can try it out on https://test.bankid.com/.
    I for some reason could not create a new bankid using opera on handelsbanken (it complained about my version) and had to use firefox.. but all the other stuff works just great in both opera and ff.
    if you need to troubleshoot it you can do so by adding the following to ~/.personal/config/Personal.cfg

    [Diagnostics]
    Trace=/directory-you-want-the-log-in

    and if it all goes to hell you run

    sudo ./install.<your.version>.sh u

    to uninstall!

    // sluggo

    Posted

    2010/08/15 #

    Filed under

    Linux, News

    Tags

    arch linux, arch64, bankid, handelsbanken, nexus, nexus personal, x86_64

    no comments

  • tilp on arch linux

    since my ti-83 broke down i had to get me a new one, ended up buying a ti-84 plus.
    unfortunately texas instruments havnt released any linux version of TI connect, however theres a open source alternative in tilp.

    it took some tinkering to get it up and running though, heres how i did it (running arch linux k:2.6.31)
    first i downloaded the libs and configured with the flag –prefix=/usr

    wget http://www.ticalc.org/pub/unix/tilibs.tar.gz
    # unpack and run
    ./configure --prefix=/usr
    make
    sudo make install
    # in the following order: libticables, libticonv, libtifiles, libticalcs

    then i configured tilp with –without-kde –prefix=/usr

    wget http://www.ticalc.org/pub/unix/tilp.tar.gz
    # unpack and run
    ./configure --without-kde --prefix=/usr
    # obviously you should remove the --without-kde part if your running kde..
    make
    sudo make install

    lastly i had to create a udev-rule to set up the usb-permissions..

     sudo touch /etc/udev/rules.d/51-ti84.rules
    sudo echo 'SYSFS{idVendor}=="0451", SYSFS{idProduct}=="e003", MODE="666"' > /etc/udev/rules.d/51-ti84.rules
    

    note that the libs depend on glib2, libusb, zlib and tilp on libglade.

    edit 2010-06-05:
    a guy asked if this works for any ti calc, and it should (as long as tilp supports them!), all you have to change is the (hexadecimal) digits of idProduct in the last part. just connect your calc and run

    lsusb

    to find out the id of your calc version (its the four digits following the : next to ID).

    // sluggo

    Posted

    2009/12/23 #

    Filed under

    Linux, Tiny Gems

    Tags

    arch linux, calculator, texas instruments, ti-83, TI-84 Plus, tilibs, tilp

    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, 1,517 downloads)
    rpm package:    n/a
    src:     fuckipred-0.2.14b.tar.gz (30.4 KiB, 1,026 downloads)

    // sluggo

    Posted

    2009/06/21 #

    Filed under

    News, fuckipred

    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 your 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 your 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, 748 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

  • The fuckipred project

    fuckipred – Front-end Using aircraCK-ng to Intelligently Penetrate Retardedly Encrypted Domains

    What is this?

    Simply put fuckipred is a point-and-click wep cracker. You install, start, select a network, click “crack” and wait. Thats all there is to it!
    Actually the program itself is just a frontend to a couple of other tools, mainly wesside-ng from the aircrack-ng suite, thats the prog who does the actual cracking.

    History

    Since the ipred-law was put into action here in sweden i figured id contact the authorities pointing out how easy it is to hijack someones wireless network and use it to download whatever it is one wants to download, using the aircrack-ng suite and thus rendering the law not only useless but a infringement on peoples privacy. But since the thought of typing something into a terminal (even if its just “wesside-ng -i mon0″) seems way too daunting to alotta people i decided on writing a front-end to it.

    Installing

    If you are using Debian or any of its derivates eg. (K/X/Flux/…)Ubuntu, Mint, etc all you have to do is download the deb package and double-click it!
    For arch linux users (like me) theres a aur-package, heres a guide on how to install AURs.
    Im also working (well, at least every now and then) on a rpm package, but for now other users have to download the source tarball and compile it, for further info please refer to the readme and aircrack-install-script.

    Quick usage how to

    Install and start fuckipred, if your using a laptop make sure you wifi is switched on.
    Click on the refresh-symbol in the essid-column in the network list.
    Select a (preferably the first one from the top) network in black text.
    Click on the “make with the cracking”-button.
    Wait for the network key to turn up in the key-field and the “All done!” message in the Log window.
    Select and copy the key, then use your network manager to connect to the network with it!

    Screenshots

    Its commin.. for now youll have to make due with the last alpha screen, its pretty much the same!
    if anyone got a nice screen and want to share it here, please feel free to send over!

    About the project

    its pretty slow going as im kinda swamped with other stuff right now..

    Download

    Please take the time to read the release announcement

    info:    release announcement, readme, changelog
    arch linux aur:    http://aur.archlinux.org/packages.php?ID=26732
    deb package:     fuckipred_0.2.14b-1_i386.deb (23.0 KiB, 1,517 downloads)
    rpm package:    n/a
    src:     fuckipred-0.2.14b.tar.gz (30.4 KiB, 1,026 downloads)

    // sluggo

    Posted

    2009/05/11 #

    Filed under

    fuckipred

    Tags

    aircrack-ng, arch linux, aur, crack, deb, dhcpcd, front end, fuck ipred, fuckipred, gtk, how to, ipred, iwconfig, one click crack, rpm, ubuntu, unstable=true, usage, wep, wesside-ng, wifi, wireless, wlan

    no comments

Top