Jump to content

no42

Dedicated Members
  • Posts

    925
  • Joined

  • Last visited

  • Days Won

    17

Posts posted by no42

  1. I expected from your /var/log/messages output that the wireless driver had loaded, and created a new interface.

    However, the output of those commands indicate this has not happened.

    You could try :

    Download this file to your Desktop: http://git.kernel.org/?p=linux/kerne...d2acb7;hb=HEAD

    Open up a terminal and enter these commands one after the other (you will be asked for your password on the last step)

    cd Desktop
    sudo mv ar9271.fw /lib/firmware

    reboot and see whether it works.

    Be sure to unplug your device and plug it in again after rebooting. If it doesn't, follow these steps:

    Download this file to your desktop: http://wireless.kernel.org/download/...ss-2.6.tar.bz2

    Then open a terminal and enter these commands one after the other (you will be asked for your password on the last step):

    cd Desktop
    tar xjvf compat-wireless-2.6.tar.bz2
    cd compat-wireless-2.6
    ./scripts/driver-select ath9k_htc
    make && sudo make install

    after that reboot.

    Failing that - I would suggest try updating to Kali, as backtrack isn't really supported!

  2. Ah ha, for GUI/COMMAND SPACE you need a newer encoder v2.6.3 https://drive.google.com/#folders/0B7uVAbdkMKcXNWRGbjB3SGpsWnc

    or

    https://code.google.com/p/ducky-decode/downloads/list

    as for install libusb-devel, you can use either brew or macports, I personally use macports (so can't help you with brew, but understand its just as easy to use). The wiki doesn't mention this to avoid confusion between mac ports and brew.

    The newer firmware just has more / different features; the encoder is responsible for mapping all the keyboard keys, and keys across languages etc. your firmware is probably basic but all you need.

  3. cm (composite duck & detour) alpa = 1x payload & mass-storage

    detour duck = 3x payloads - no mass storage

    composite duck = 1x payload & mass storage

    you can only have one payload with mass storage - no other firmware exists.

    if you want more than 1x payload, detour duck, download from internet & execute upto 3x payloads

  4. looking into it now, hopefully have it finished by monday. I have other commitments over the weekend.

    EDIT:

    Do you want to try:

    https://docs.google.com/file/d/0B7uVAbdkMKcXQUtEU0hGYXVyVkk/

    I had some issues with my previous employer, and ownership of the code - despite all done on my personal time + machine. I have lost access to the machine I originally coded the PoC on (until this issue is resolved), this has been done from memory, I dont have time to test it at the moment - maybe you can?

  5. I was one of the first to buy a ducky when it was $80. I already had a teensy and arduino, and was starting work on building a smaller form factor of the teensy (rather bulky and looks odd with all the addons), as the weird shaped teensy would occassionally fail. Irongeek told me about Hak5's new ducky prototype and i thought great, someone has already designed the hardware.

    I then took on the challenge of reprogramming it for my purposes. Theres a large forum post "how i created firmwares", it wasnt easy, took over 1 year, and i learnt a lot about USB, and more about microcontrollers.

    Was it worth it ? Hell yes: ive used it to

    * launch exploits against systems in pentesting

    * bypass access control restrictions to insert/remove data on protected systems

    * social engineering to gain access to a network

    * ease repeative tasks

    * once i demoed it as a password seed;make stronger passwords if application allows it?

    *as a storage device (though speeds are low compared to proper usb storage devices)

    I admit its more a tool for penetration testers / hackers (usb developers).

    Sidetrack the Pi (i have 3):

    * one is an arcade machine - adafruit cupcade

    * one is a xbmc server

    * last is general hacking about: various sensors, recording weather, gps, motion sensors. wired it up as a basic security camera, etc. Pentesting dropbox for remote hacking (clients permission)

    These devices are begging to be hacked...

    and always ensure you have legally binding written permission when using them on others. I cannot and will not be responsible for anyone abusing other peoples networks,security, or privacy.

    1. Yes you can - use google dork "site:forums.hak5.org +ducky +version1"
    2. (a) No, ducky firmware only runs on the Hak5 Ducky!!! (b) Jason Applebaum (hardware dev) got tied up in NDA's and work. The rest of the Hak5 Team are tied into the Pineapple development. Being a community of hackers, we took it upon ourselves to improve and expand the ducky's capabilities.

    Ducky is $40 for complete kit, as opposed to approximatley $30 with the teensy, sd adapter, double male header pins, usb-A adapter.

    Also don't forget (from hakshop main page) :

    Discounts available for accredited educational institution, government, military and non-profit hackerspaces. Contact Us.

    So you may prefer the Ducky?

    Also check out the links in my signature.

    ~snake

  6. I am able to configure the file, but when I type "make" / "make install" I get the error message "Fatal Error: usb.h not found".

    You haven't got libusb-devel installed use mac ports or brew to install the package.

    Then follow the instructions here: https://code.google.com/p/ducky-decode/wiki/Flashing_Guide

    Which Encoder version are you using, GUI SPACE appears to working fine for me?

  7. Failing that...

    Use a linux distro (eg kali, or command-line interface of the pineapple)

    plug in the sdcard (use a usb sdcard adapter if necessary)

    run 'dmesg', it should indicate that you drive is available by /dev/sd* (where * is b,c,d depending on the number of drives)

    Warning: selecting the wrong drive e.g. /dev/sda = main hard drive , could damage your system!

    partition the card with 'fdisk /dev/sd[letter that represents usb]

    'n' - new parition

    'p' - primary

    'enter' - accept beginning of sector/partition

    'enter' - accept ending of sector/partition

    'w' - write changes

    then

    mkfs.ext4 /dev/sd[letter represents usb]1 (eg mkfs.ext4 /dev/sdb1)

    you should then be good to go...

  8. I changed the /etc/nginx/nginx.conf file from:

    server { # php/fastcgi
    listen 8080;
    

    to

    server { # php/fastcgi
    listen 80;
    

    Now it works fine. However, beware this may interfere with any other httpd daemons like the captive portal.

×
×
  • Create New...