Results 1 to 50 of 376

Thread: (Guide) Installing Nvidia + Bumblebee + CUDA for Optimus enabled Laptops

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    2013-Aug
    Location
    lost in space
    Posts
    580
    what I'm trying to do:

    markov chains is very efficient at creating words, but still spews out things like "arocassse" or with numbers "aroca7999". The odds of 3 repetitions for a human generated password are slim to none. I'm trying to eliminate those useless words using maskprocessor with the arguments '-q' and '-r' as those options are not included with cudahashcat.

    -q 3 = no more than 1 repetition. Ex: aa
    -r 4 = no more than 3 of the same char. Ex: aXaXa

    ok so it's pretty simple, but when trying to pipe maskprocessor in cudahashcat it doesn't work in linux.

    One solution proposed was to place mp64 in the cudahashcat dir. That is why I was trying that.

    That was my original syntax, and since I've tried many..
    Code:
    cd /usr/share/cudahashcat/usr/share/maskprocessor && ./mp64.bin -q 3 -r 4 ?d?d?d?d?d?d?d?d?d?d | cd /usr/share/cudahashcat/ && ./cudaHashcat64.bin -w 3 -t 10 -m 2500 /root/capture.hccap -a 3
    Kali Linux USB Installation using LinuxLive USB Creator
    Howto Install HDD Kali on a USB Key
    Clean your laptop fan | basic knowledge

  2. #2
    Join Date
    2014-Apr
    Location
    Down Under
    Posts
    315
    Quote Originally Posted by Quest View Post
    what I'm trying to do:

    markov chains is very efficient at creating words, but still spews out things like "arocassse" or with numbers "aroca7999". The odds of 3 repetitions for a human generated password are slim to none. I'm trying to eliminate those useless words using maskprocessor with the arguments '-q' and '-r' as those options are not included with cudahashcat.

    -q 3 = no more than 1 repetition. Ex: aa
    -r 4 = no more than 3 of the same char. Ex: aXaXa

    ok so it's pretty simple, but when trying to pipe maskprocessor in cudahashcat it doesn't work in linux.

    One solution proposed was to place mp64 in the cudahashcat dir. That is why I was trying that.

    That was my original syntax, and since I've tried many..
    Code:
    cd /usr/share/cudahashcat/usr/share/maskprocessor && ./mp64.bin -q 3 -r 4 ?d?d?d?d?d?d?d?d?d?d | cd /usr/share/cudahashcat/ && ./cudaHashcat64.bin -w 3 -t 10 -m 2500 /root/capture.hccap -a 3
    Works here with the following syntax. Also, I saw your other thread about handshakes and I captured mine as soon as the deauth packet was sent so I don't know why you are having problems.

    Code:
    root@kali ~$ mp64 -q 3 -r 4 ?d?d?d?d?d?d?d?d?d?d  | optirun cudahashcat64 -m 2500 ~/out.hccap    2 ↵  
    cudaHashcat v1.31 starting...
    
    Device #1: GeForce GT 740M, 2047MB, 1032Mhz, 2MCU
    Device #1: WARNING! Kernel exec timeout is not disabled, it might cause you errors of code 702
    
    Hashes: 1 hashes; 1 unique digests, 1 unique salts
    Bitmaps: 8 bits, 256 entries, 0x000000ff mask, 1024 bytes
    Rules: 1
    Applicable Optimizers:
    * Zero-Byte
    * Single-Hash
    * Single-Salt
    Watchdog: Temperature abort trigger set to 90c
    Watchdog: Temperature retain trigger set to 80c
    Device #1: Kernel ./kernels/4318/m02500.sm_35.64.ptx
    Device #1: Kernel ./kernels/4318/bzero.64.ptx
    
    Starting attack in stdin mode...
    
                                                 
    Session.Name...: cudaHashcat
    Status.........: Running
    Input.Mode.....: Pipe
    Hash.Target....: TESTROUTER IM:AM:AC:AD:DR <-> SE:CE:RE:T:MA:CC)
    Hash.Type......: WPA/WPA2
    Time.Started...: Tue Mar 17 16:14:19 2015 (9 secs)
    Speed.GPU.#1...:    15393 H/s
    Recovered......: 0/1 (0.00%) Digests, 0/1 (0.00%) Salts
    Progress.......: 151552
    Skipped........: 0
    Rejected.......: 0
    HWMon.GPU.#1...: -1% Util, 71c Temp, -1% Fan
    
                                                 
    Session.Name...: cudaHashcat
    Status.........: Running
    Input.Mode.....: Pipe
    Hash.Target....: TESTROUTER IM:AM:AC:AD:DR <-> SE:CE:RE:T:MA:CC)
    Hash.Type......: WPA/WPA2
    Time.Started...: Tue Mar 17 16:14:19 2015 (19 secs)
    Speed.GPU.#1...:    15435 H/s
    Recovered......: 0/1 (0.00%) Digests, 0/1 (0.00%) Salts
    Progress.......: 303104
    Skipped........: 0
    Rejected.......: 0
    HWMon.GPU.#1...: -1% Util, 75c Temp, -1% Fan
                                                 
    Session.Name...: cudaHashcat
    Status.........: Aborted
    Input.Mode.....: Pipe
    Hash.Target....: TESTROUTER IM:AM:AC:AD:DR <-> SE:CE:RE:T:MA:CC)
    Hash.Type......: WPA/WPA2
    Time.Started...: Tue Mar 17 16:14:19 2015 (24 secs)
    Speed.GPU.#1...:    15420 H/s
    Recovered......: 0/1 (0.00%) Digests, 0/1 (0.00%) Salts
    Progress.......: 352256
    Skipped........: 0
    Rejected.......: 0
    HWMon.GPU.#1...: -1% Util, 68c Temp, -1% Fan
    
    Started: Tue Mar 17 16:14:19 2015
    Stopped: Tue Mar 17 16:14:43 2015
    chown -R us ./base

  3. #3
    Join Date
    2013-Aug
    Location
    lost in space
    Posts
    580
    Quote Originally Posted by g0tmi1k View Post
    Great guide - keep up the good work.


    Quote Originally Posted by staticn0de View Post
    Works here with the following syntax.
    yes and thanks. Basically I was trying to make it do something that it was not supposed to do, which is to keep the '-t' argument and limit char recurrence with 'r' and 'q'. That failed. The rest of my problems were just me having another linux esoteric experience.

    Quote Originally Posted by staticn0de View Post
    Also, I saw your other thread about handshakes..
    that's another can of worms. Just read the last post from mmusket33. He's having a linux paranormal experience of his own

    meh, it's interesting, and the nurses here in the nuthouse are nice..
    Kali Linux USB Installation using LinuxLive USB Creator
    Howto Install HDD Kali on a USB Key
    Clean your laptop fan | basic knowledge

Similar Threads

  1. Replies: 6
    Last Post: 2017-01-04, 19:39
  2. NVIDIA and CUDA with OPTIMUS
    By jolubedju in forum TroubleShooting Archive
    Replies: 1
    Last Post: 2014-06-03, 10:52
  3. Kali Linux 1.05 nvidia optimus cuda and pyrit
    By gfbaggio in forum TroubleShooting Archive
    Replies: 3
    Last Post: 2014-04-28, 20:15

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •