Jump to content

PixL

Active Members
  • Posts

    186
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by PixL

  1. I think I just bought a $35 keyring.... can't get it to do anything with Mint Linux.  The Yubikey Personalisation tool just says its not inserted... bahh

    **Edit... gmail works ok in Chrome and now Firefox

  2. I use linux and LUKS filesystem on my devices.... I also use Dropbox for storing my music collection and things..  the linux client has just stopped supporting my filesystem... any suggestions?

  3. Thanks guys,

    I fixed it in the end and added a few extra bits... it takes a .16800 pmkid file and prints out the ssid of each separate pmkid.

    #!/bin/bash
    function hex2string () {
      I=0
      while [ $I -lt ${#1} ];
      do
        echo -en "\x"${1:$I:2}
        let "I += 2"
      done
    }
    
    read -p 'Enter PMKID filename: ' filename
    while read -r pmkid; do
    ssid="${pmkid:59:500}"
    hex2string "$ssid"
    echo
    echo "$pmkid"
    done < $filename

     

  4. I have this bash script which functions but I am confused as my output appears as below with the stdout directly BEFORE my next bash prompt.  What formatting do I need to change to fix this?

    #!/bin/bash
    function hex2string () {
      I=0
      while [ $I -lt ${#1} ];
      do
        echo -en "\x"${1:$I:2}
        let "I += 2"
      done
    }
    read -p 'Hexstring: ' varname
    hex2string "$varname"
    me@unknown ~ $ ./hex2ascii 
    Hexstring: 4e4554474541523437
    NETGEAR47me@unknown ~ $ 

     

  5. I just grabbed the latest development build of hashcat and took a look at the available hash modes in the help.  The latest release 4.1.0 only has the modes below for WPA which I understand

    2500 | WPA/WPA2                                         | Network Protocols  < this is used to try a wordlist against a capture
    2501 | WPA/WPA2 PMK                                     | Network Protocols  <  this is used to try a series of pre-computed hashes against a capture

    Now the latest development version has the following:

    Can anyone explain to me what the difference between the 4 modes below are?

    2500 | WPA-EAPOL-PBKDF2                                 | Network Protocols
    2501 | WPA-EAPOL-PMK                                    | Network Protocols
    16800 | WPA-PMKID-PBKDF2                                 | Network Protocols
    16801 | WPA-PMKID-PMK                                    | Network Protocols

  6. I'm using Kali 2018.1 and i've added the bleeding edge repository (not sure if its relevant) when I try and use MDK3 to deauth a MAC address it just hangs at "will refresh black list after 3 seconds" and doesn't inject and packets.

    I found a copy of MDK4 and when compiled this does work... has anyone else experienced this issue?

  7. As the title suggests i'm trying to run MacOS Sierra on Virtualbox... i've followed tips from others on the settings needed but when I try and boot the .iso to install the OS I get the following errors.  For info i'm running Virtualbox on Mint Linux.

     

    Screenshot from 2018-06-03 12-13-07.png

  8. 4 hours ago, Bigbiz said:

    Whats your take on free wifi hotspots. They been going up alot around here. An horror stories. Good stories? Sometime i find myself going to the place that offers free wifi over the place that doesnt.

    They are excellent places to have fun with your WiFi Pineapples!  Thats my take on it ?

  9. Is it safe to use an online password store such as SecureSafe ( https://www.securesafe.com/en/ )

    I was planning to use it's inbuilt random password generator to create new creds for all my accounts for security.  My only concern is what if this site service closes and I lose access to my passwords?

    The old-school in me thinks a txt file of plain text passwords inside a LUKS encrypted partition might be more future proof....but less convenient than an iPhone app for SecureSafe.

    Thoughts?

  10. I have a laptop with an Nvidia 1050 GPU, i've tried to install quite a few Linux distributions and have failed to get my GPU working with all of them except Mint Linux... that picked it up automatically and just worked...so i've been sing that for a while.

    I would like to use Parrot OS but none of the online tutorials i've found actually get the GPU working, has anyone got any experience?

  11. As others have said, get yourself a VPN account... i'm not trying to advertise one provider above the others but you can get NordVPN for around $8 US per month and they have a choice of hundreds of servers around the world to find a fast one that works for you.  You can also make sure your ISP or other servers around the world are not geo-blocking you.

×
×
  • Create New...