GSM Shop GSM Shop
GSM-Forum  

Welcome to the GSM-Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features.
Only registered members may post questions, contact other members or search our database of over 8 million posts.

Registration is fast, simple and absolutely free so please - Click to REGISTER!

If you have any problems with the registration process or your account login, please contact contact us .

Go Back   GSM-Forum > Product Support Sections > No More Supported Solutions (Dead Products) > No More Supported H/W Products > Advance-Box


 
 
LinkBack Thread Tools Display Modes
Old 04-11-2011, 02:35   #1 (permalink)
No Life Poster
 
gsmfun's Avatar
 
Join Date: Oct 1999
Location: Shenzhen, Hong Kong, Bangkok
Posts: 2,183
Member: 611
Status: Offline
Sonork: 100.33333
Thanks Meter: 29,604
World's Fastest SL3 LBF "MARKOV" EDITION ---> oclHashcat-lite v0.10 by atom !!!


Welcome to oclHashcat-lite v0.10.

Download it here: http://hashcat.net/oclhashcat-lite/


Code:

This release is a big step forward. We have added both, many major and many minor features.

Per-position markov-chains, aka markov-attack/incremental-attack/charset-files

The markov-attack is a statistically based brute-force like attack, but instead of specifying a charset or a mask, we specify a file. This file is once generated by ourself in a previous step. It contains statistical informations which are made out an automated analysis of a given dictionary.

It can fully replace Brute-Force since it covers the full keyspace.

In Brute-Force Attack (or in Mask Attack) we can limit the keyspace by setting a smaller charset in order to reduce the attack-time. In Markov Attack we have something similar, the "threshold". All you do is to specify a number. The higher the number, the higher the threshold to add a new link between two characters on the two-level table on which the markov-attack bases on.

This background is not so important, just remember that the lower the value, the smaller the keyspace and thus the faster the attack is.

Check these threads for more details

    http://hashcat.net/forum/thread-1265.html
    http://hashcat.net/forum/thread-1285.html
    http://hashcat.net/forum/thread-1291.html


Use .ptx ad .llvmir intermediate kernels

The kernels are distributed in an "intermediate" format (aka IL). It cant be reversed to original C code but still its not a binary format that can be used for execution.

The JIT (just-in-time) compilers from both OpenCL and CUDA, which ship with the driver, compile the final byte-code out of the IL. This takes a few seconds per kernel but once its done the byte-code is cached (CUDA does it automatically, OpenCL not but we add a function to do the same as CUDA does).

This has some nice advantages:

    Not 32/64 bit specific
    Less HDD space
    Smaller .7z
    Less problems with driver specific problems as we often see with Catalyst
    There is no more need to release a new oclHashcat-* in case a new driver optimization has been added. oclHashcat-* caches driver specific. If it recognizes a driver change it will rebuild thge byte-code from the IL, but using the new JIT from the new driver resulting in driver specific optimized byte-code.


Retaining GPU temperature

When I started with oclHashcat-* Hardware mangement support, some people asked me for add support for fan-speed. For a long time I was not interessted in adding fan-speed code to oclHashcat-* since this is the job for the driver or some specialized controling software.

I did not change my mind completly on this, but still we have added some fan-speed controlling code. The new parameters are:

Code:
--gpu-temp-disable            Disable temperature and fanspeed readings and triggers
--gpu-temp-abort=NUM          Abort session if GPU temperature reaches NUM degrees celsius
--gpu-temp-retain=NUM         Try to retain GPU temperature at NUM degrees celsius (AMD only)

So what this thing is doing is: If the temperature configured with the new --gpu-temp-retain parameter is reached, it starts to increase the fan-speed by 1 percent each second. Thats all.

If you imagine a scenario what this means you will come to the conclusion that this feature also enables you to enfore your GPU running always to a very specific temperature.

Some notes:

    --gpu-temp-disable you can completly disable all the temperature stuff.
    --gpu-temp-retain currently only works for AMD.
    --gpu-temp-abort parameter is just the renamed version of the old --gpu-watchdog.
    Both parameters accept the 0 value which disables only this specific feature. This means you can step back to the old behavior by specifying --gpu-temp-retain 0.
    The default for --gpu-temp-abort is still 90c.
    The default for --gpu-temp-retain is 80c.


Built-in benchmarking mode

Code:
* Benchmark:

  -b,  --benchmark                   Run benchmark
       --benchmark-mode              Benchmark-mode, see references below

Nothing much to explain here I think, but some notes to the benchmark mode:

    As long as you do not set the --benchmark-mode you can modify all the configuration parameters you always use. Something like -d, -n, --gpu-accel or --runtime.
    With --runtime you can specify the duration how long each test lasts.
    If you add -m you can limit to a specific hash-type. If you do not set it, it will iterate through all hash-types.
    All unneccessary parallel threads like hardware monitor, restore-support and outfile-watch are disabled. Also the quiet mode is enabled.
    On NVidia, the hashes based on SHA256, SHA512 and DES are limited to -n 32, otherwise the driver throws the error cuStreamSynchronize() 702.


New Algorithms supported

    SHA512
    Oracle 7-10g, DES(Oracle)
    md4($pass.$salt)
    sha256($pass.$salt)
    sha512($pass.$salt)

Full Change Log:
Code:
type: feature
file: kernels
desc: added -m 0910 = md4($pass.$salt)

type: feature
file: kernels
desc: added -m 1410 = sha256($pass.$salt)

type: feature
file: kernels
desc: added -m 1700 = SHA512

type: feature
file: kernels
desc: added -m 1710 = sha512($pass.$salt)

type: feature
file: kernels
desc: added -m 3100 = Oracle 7-10g, DES(Oracle)

type: feature
file: kernels
desc: on AMD, switched from .kernel to .llvmir to reduce diskspace

type: feature
file: kernels
desc: on NV, switched from .cubin to .ptx to reduce diskspace

type: feature
file: kernels
desc: added kernel cache to avoid unnecessary recompilation
cred: m4tr1x

type: driver
file: kernels
desc: added support for NVidia CUDA 4.2

type: driver
file: kernels
desc: added support for NVidia sm_30 gpu-architecture [ Kepler ]

type: driver
file: host programs
desc: added support for NVAPI R300

type: driver
file: host programs
desc: added support for NVidia NVML library and got rid of nvidia-smi command

type: driver
file: host programs
desc: added support for AMD ADL v4.0 library

type: feature
file: host programs
desc: splitted --gpu-watchdog to --gpu-temp-disable and --gpu-temp-abort

type: feature
file: kernels
desc: added benchmarking mode
cred: m4tr1x

type: feature
file: host programs
desc: added --gpu-temp-retain to try retain temperature at NUM degrees celsius
cred: m4tr1x

type: feature
file: host programs
desc: workarounded AMD bug in clGetDeviceInfo() CL_DEVICE_MAX_CLOCK_FREQUENCY
cred: m4tr1x

type: feature
file: kernels
desc: added early check for zero-length password hashes
cred: m4tr1x

type: feature
file: host programs
desc: show LM-half as soon as it is cracked

type: feature
file: host programs
desc: added support for charset files and some example charset files

type: feature
file: host programs
desc: added support to read hashes from file

type: feature
file: host programs
desc: implemented base64 parser that would allow for dynamic salt lengths in nsldaps

type: feature
file: host programs
desc: added fan-speeds to status display

type: feature
file: host programs
desc: removed --pw-skip-plain and --pw-limit-plain as they are incompatible to markov

type: bug
file: host programs
desc: fixed bug in status display if ETA calculated > 60 years
cred: arex

type: bug
file: host programs
desc: fixed bug in Oracle 11g hash parsing function, salt length increased to 10 byte
cred: flipit

type: bug
file: host programs
desc: fixed bug in salt-length parser for MyBB1.2 hashes
cred: code841

type: change
file: host programs
desc: changed default charset to the one which passpal outputs running on rockyou.txt
cred: arex

Welcome to oclHashcat-lite v0.9.

Message from Atom (Hashcat-Lite Developer + Bruteforce Guru)
Code:
Hello Hashcat-Users,

I am proud to announce version 0.09 of the oclHashcat-lite series.

Download it here: http://hashcat.net/oclhashcat-lite/

The highlights of this release are:


Support for AMD GCN cards (hd7xxx series)

I already wrote some more detailed informations about the integration here: http://hashcat.net/forum/thread-817.html

This card is a true DES killer. I wrote some more detailed informations about this topic here: http://hashcat.net/forum/thread-846.html


Added the LM Algorithm

After so many people requested this algorithm in the feature request section I decided to add it even I had not interesst in it. 

However, it turned out it was a good investment of time. I realized how many pentester still have need for it.

See here for discussion: http://hashcat.net/forum/thread-167.html


Vectorized datatype kernels for sm_21 NVidia architecture

This a massive improvement for low- and mid-ranged NVidia GPUs. 

The gtx560Ti @ MD5, for example, increased by 23% (1252 Mhash/s -> 1660 Mhash/s). 

This improvement can be seen on nearly all algorithms for this architecture.


MD4 based algorithm tuning

To make it short: I found a way to reverse another step in MD4.

Especially the NTLM and DCC algorithm benefit from this code change.

The hd6990 @ NTLM broke the 20000 Mhash/s mark on stock clocks. Average increase is around + 9% (19100 Mhash/s -> 20864 Mhash/s).


Updated EULA

This goes back to a discussion we had HD Moore from Rapid7. 

The updated EULA is a lot more relaxed for professional pentesters than before. 

See changelog for more details.


Fixed some major issues

On thing that many user complained about in oclHashcat-lite 0.08 was its "instability" and problems with session restore. 

This popped in because of a default-settings change in oclHashcat-lite v0.07. It has been set back to oclHashcat-lite v0.06 default. 

Discussion can be found here: http://hashcat.net/forum/thread-681.html


Harmonization with oclHashcat-plus

The --help page, the --outfile-format and the -m parameter values, in case of an overlap, are now equal to oclHashcat-plus v0.08. 

It will help to avoid confusion, thats why I am planning to do the same change on CPU hashcat in the next version.

Official Download Link:
http://hashcat.net/oclhashcat-lite/

Official Hashcat Forum:
http://hashcat.net/forum/

Official SL3 BF Cracking Guide
http://hashcat.net/wiki/cracking_sl3/

oclHashcat now have a special SL3 Kernel with 12.24% Speed Increase on ALL SL3 LBF Tasks!!!


Download here: (yes it's 100% free)
Download oclHashcat-lite-0.06.7z - hashcat, advanced password recovery


Changelogs from v0.05 to v0.06
Code:
* changes v0.05 -> v0.06:
type: performance increase
file: kernels
desc: MD5:   AMD  1,07%, NVidia  0,62%
desc: md5($pass.$salt):  AMD  1,37%, NVidia  8,10%
desc: md5(md5($pass)):  AMD  0,94%, NVidia     0%
desc: vBulletin < v3.8.5: AMD  0,30%, NVidia     0%
desc: SHA1:   AMD 11,14%, NVidia 13,62%
desc: sha1($pass.$salt): AMD 16,96%, NVidia 39,10%
desc: MySQL > v4.1:  AMD  1,99%, NVidia  7,15%
desc: MD4:   AMD 13,46%, NVidia  3,34%
desc: NTLM:   AMD 13,16%, NVidia  2,57%
desc: DCC:   AMD 34,20%, NVidia  0,89%
desc: MSSQL:   AMD 11,23%, NVidia 17,89%
desc: SL3:   AMD 12,24%, NVidia 13,48%
desc: Oracle 11G:  AMD 16,93%, NVidia 13,53%
type: password length increase
file: kernels
desc: MD5:   from 15 to 55
desc: md5($pass.$salt):  from 15 to 55
desc: md5(md5($pass)):  from 15 to 55
desc: vBulletin < v3.8.5: from 15 to 55
desc: SHA1:   from 15 to 55
desc: sha1($pass.$salt): from 15 to 55
desc: MySQL > v4.1:  from 15 to 55
desc: MD4:   from 15 to 55
desc: NTLM:   from 15 to 27
desc: DCC:   from 15 to 27
desc: MSSQL:   from 15 to 25
desc: SHA256:   from 15 to 55
desc: Oracle 11G:  from 15 to 45
type: feature
file: kernels
desc: added -m 15 = vBulletin > v3.8.5
cred: chick0n
type: feature
file: kernels
desc: increased salt length for DCC from 7 to 19
cred: Rabbitz
type: feature
file: host programs
desc: hardcoded cpu affinity mask to one (cpu #0) to save energy
cred: randyberger
type: feature
file: host programs
desc: added --pw-skip and --pw-limit parameters for distributed computing
cred: d3ad0ne
type: feature
file: host programs
desc: added status codes on exit, see status_codes.txt for listing
cred: hermix
type: bug
file: host programs
desc: rewritten restore function check from scratch
cred: anonymous
type: bug
file: host programs
desc: fixed multiple instances check
cred: FractalizeR
type: bug
file: host programs
desc: fixed 8 bit characters from russian alphabet
cred: Rolf


8,8xx Million Hash Per Second!
HW Specs: 4 x 5870 @ 980 Mhz


















New and Faster SL3 LBF Kernel UPDATE for oclHashcat-lite v0.05 by atom


Official Download Link:
Download oclHashcat-lite-0.05.7z - hashcat, advanced password recovery

Official oclHashcat-lite Homepage:
oclHashcat-lite - advanced password recovery

Official Discussion Forum and Discussion Thread:
hashcat Forum



Featuring:

1. Ultra Fast and Stable SL3 Kernel
2. Upto 4% Faster HASH Speeds on 5xxx and 6xxx Cards
3. 100% Free Software !!!
4. Fixed --restore for Resuming BF Tasks
5. Easier Command Line


IMPORTANT CHANGES FOR COMMANDLINE INPUT

1. Change -m 101 into -m 1900
2. Change --output-file into --outfile
3. No need to use --pw-min and --pw-max
4. No need to use --hex-charset --hex-salt


EXAMPLE:

ORIGINAL COMMANDLINE for v0.03:
oclHashcat-lite64 3D5D9E11835243015407B7BA327E30CCB70F4DB0:003519730379149500 -1 00010203040506070809 -m 101 ?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1 --pw-min=15 --pw-max=15 -n 160 --hex-charset --hex-salt --output-format=1 --output-file=351973037914952.txt


NEW COMMANDLINE for v0.05:
oclHashcat-lite64 3D5D9E11835243015407B7BA327E30CCB70F4DB0:003519730379149500 -1 00010203040506070809 -m 1900 ?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1 -n 160 --outfile-format=1 --outfile=351973037914952.txt




REAL SPEED with 2 x HD 6990 @ 950 Mhz, 7,6xx MILLION HASH per Second !!!





REAL SPEED with 2 x HD 5970 @ 950 Mhz, 7,8xx MILLION HASH per Second !!!

















Fastest SL3 LBF Free and UPDATED!! OlcHashcat-lite v0.03 by atom!! (HD6xxx Supported).

Thanks to atom for providing us with 100% Free and 100% fast SL3 LBF Software.
Also 100% support for new ATI 6xxx cards (6970, 6990 etc)...

BR

Thomas


BUGFIXES in v0.03

type: bug
file: cudaHashcat-lite, oclHashcat-lite
desc: fixed a bug in security causing hash was not found randomly
cred: RaNdy

type: bug
file: cudaHashcat-lite, oclHashcat-lite
desc: fixed a bug in --restore if command-line contains --pw-skip
cred: Ciukut

type: bug
file: cudaHashcat-lite, oclHashcat-lite
desc: fixed a bug in --restore if command-line contains --pw-min
cred: hermix

information taken from:
oclHashcat-lite v0.03


official download area:
oclHashcat-lite - advanced password recovery

GPU Driver and SDK Requirements:






  • NV users require ForceWare v260.x+
  • AMD users require Catalyst v11.3+ with APP SDK2.4+ or integrated OpenCL driver
Features







  • Worlds fastest MD4, MD5, SHA1 and SHA256 cracker
  • Free
  • Multi-GPU (up to 16 gpus)
  • Multi-OS (Linux & Windows native binaries)
  • Multi-Platform (OpenCL & CUDA support)
  • Multi-Algo (see below)
  • Low resource utilization, you can still watch movies or play games while cracking
  • Supports password masks
  • Supports distributed cracking
  • Supports pause / resume while cracking
  • Supports sessions
  • Supports restore
  • Supports hex-salt
  • Supports hex-charset
  • Integrated thermal watchdog
  • ... and much more
Algorithms







  • MD5
  • md5($pass.$salt)
  • md5(md5($pass))
  • vBulletin < v3.8.5
  • SHA1
  • sha1($pass.$salt)
  • MySQL > v4.1
  • MD4
  • NTLM
  • Domain Cached Credentials
  • SHA256
Tested OS's







  • All Windows and Linux versions should work on both 32 and 64 bit
Tested GPU's







  • All CUDA and Stream enabled cards should work
==================================================

==================================================
For more information about how to setup Windows or Ubuntu with
oclHashcat-lite, you can visit atom's official forum or you can also
post your inquiries in ATF Section on this thread:

Fastest LBF Free Download!! OlcHashcat-lite v0.2!! HD6xxx Supported!


You can now build yourself the fastest LBF "******* PC" by using:

Motherboard: MSI Big Bang Marshal
Video Card: 8 pieces ATI 6970

This will give you 14,170 Million HASH/s on STOCK CLOCKS...
Overclock with give you more than 15,xxx HASH/s and the video cards
will still be less than 80 degrees celcius with the stock cooling system.


==================================================
==================================================

Here is OFFICIAL and UPDATED "HOWTO" for hashcat-lite v0.02


oclHashcat-lite SL3 cracking howto

Check out Post # 6 Where atom discusses about MULTIPLE PC Setups to attack a single phone.


atom's forum is 100% open for discussion about his work...


[B]Happy BF to all!

Last edited by Advance-Box; 07-02-2012 at 12:05.
 
The Following 177 Users Say Thank You to gsmfun For This Useful Post:
Show/Hide list of the thanked
Old 04-11-2011, 02:43   #2 (permalink)
Registered User
 
Join Date: Aug 2007
Location: TEA||Tukang Endog Asin
Age: 13
Posts: 289
Member: 559397
Status: Offline
Thanks Meter: 53
for............... speed ................. ATF

and.................. what the best for ATI 6XXXX series ?
 
Old 04-11-2011, 02:53   #3 (permalink)
No Life Poster
 
gsmfun's Avatar
 
Join Date: Oct 1999
Location: Shenzhen, Hong Kong, Bangkok
Posts: 2,183
Member: 611
Status: Offline
Sonork: 100.33333
Thanks Meter: 29,604
Quote:
Originally Posted by pipip View Post
for............... speed ................. ATF

and.................. what the best for ATI 6XXXX series ?
HD6970 More stable.

BR

Thomas
 
The Following 4 Users Say Thank You to gsmfun For This Useful Post:
Show/Hide list of the thanked
Old 04-11-2011, 03:04   #4 (permalink)
Registered User
 
Join Date: Aug 2007
Location: TEA||Tukang Endog Asin
Age: 13
Posts: 289
Member: 559397
Status: Offline
Thanks Meter: 53
Quote:
Originally Posted by gsmfun View Post
HD6970 More stable.

BR

Thomas
crossfire with 5970 or 5870 ..................... ? can stable ?
 
Old 04-11-2011, 03:09   #5 (permalink)
Cheater -Don't Deal with him-
 
Join Date: Apr 2006
Age: 36
Posts: 699
Member: 265129
Status: Offline
Thanks Meter: 281
Quote:
Originally Posted by pipip View Post
crossfire with 5970 or 5870 ..................... ? can stable ?
Yes crossfire with 5970 or 5870 is suported.
 
Old 04-11-2011, 04:06   #6 (permalink)
No Life Poster
 
dyowei's Avatar
 
Join Date: Aug 2006
Location: Philippines
Posts: 729
Member: 324705
Status: Offline
Thanks Meter: 192
How to use???




........................
 
Old 04-11-2011, 04:12   #7 (permalink)
No Life Poster
 
Join Date: May 2005
Location: Vietnam
Age: 50
Posts: 1,485
Member: 149256
Status: Offline
Thanks Meter: 285
Quote:
Originally Posted by dyowei View Post
How to use???




........................
The soft is ready to use, but i don't know how
 
Old 04-11-2011, 04:25   #8 (permalink)
No Life Poster
 
Advance-Box's Avatar
 
Join Date: Dec 2007
Posts: 7,598
Member: 651945
Status: Offline
Thanks Meter: 20,118
oclHashcat-lite, advanced password recovery
Usage: oclHashcat-lite64 [options] hash [mask]
Startup:
-V, --version print version
-h, --help print help
--eula print eula
Logging and Files:
--quiet enable quiet
-o, --output-file=FILE output-file for recovered hash
--output-format=NUM 0 = hash***
1 = hash:hex_pass
2 = hash***:hex_pass

Misc:
--hex-salt assume salt is given in hex
--hex-charset assume charset is given in hex
--runtime=NUM automatically abort session after NUM seconds

Resources:
--restore restore previous session
--gpu-async use non-blocking async calls
-d, --gpu-devices=STR CUDA devices to use, seperate with comma
-n, --gpu-accel=NUM workload tuning: choose 1, 8, 40, 80 or 160
scales best if you choose the number of SP per SM
--gpu-loops=NUM workload fine-tuning if -n is not precise enough
--gpu-watchdog=NUM automatically abort session if NUM celsius (ATI only)

Built-in charsets:
?l = abcdefghijklmnopqrstuvwxyz
?u = ABCDEFGHIJKLMNOPQRSTUVWXYZ
?d = 0123456789
?s = !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~
?h = 8 bit characters from 0xc0 - 0xff
?D = 8 bit characters from german alphabet
?F = 8 bit characters from french alphabet
?R = 8 bit characters from russian alphabet
Custom charsets:
-1, --custom-charset1=CS user-definable charsets
-2, --custom-charset2=CS example:
-3, --custom-charset3=CS --custom-charset1=?dabcdef
-4, --custom-charset4=CS sets charset ?1 to 0123456789abcdef

Attack options:
--pw-min=NUM password-length minimum
--pw-max=NUM password-length maximum
Attack modes:
-m, --hash-mode=NUM number of hash-mode
0 = MD5
1 = md5($pass.$salt)
3 = md5(md5($pass))
5 = vBulletin
100 = SHA1
101 = sha1($pass.$salt)
300 = MySQL4.1/MySQL5
900 = MD4
1000 = NTLM
1100 = Domain Cached Credentials
1400 = SHA256









Example for Windows XP/Vista/7 64-bit and ATI Cards 5xxx or 6xxx:

IMEI: 356046033398077
HASH: 0FA0023A35BE661697AAE37123CF06D18940C9E0

oclHashcat-lite64 0FA0023A35BE661697AAE37123CF06D18940C9E0:003560460333980700 -1 00010203040506070809 -m 101 ?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1 --pw-min=15 --pw-max=15 -n 160 --hex-charset --hex-salt --output-format=1 --output-file=356046033398077_COD.txt

Example for Windows XP/Vista/7 32-bit and ATI cards 5xxx 6xxx:

IMEI: 356046033398077
HASH: 0FA0023A35BE661697AAE37123CF06D18940C9E0

oclHashcat-lite32 0FA0023A35BE661697AAE37123CF06D18940C9E0:003560460333980700 -1 00010203040506070809 -m 101 ?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1 --pw-min=15 --pw-max=15 -n 160 --hex-charset --hex-salt --output-format=1 --output-file=356046033398077_COD.txt


Example for Windows XP/Vista/7 64-bit and NVIDIA Cuda Cards:

IMEI: 356046033398077
HASH: 0FA0023A35BE661697AAE37123CF06D18940C9E0

cudaHashcat-lite64 0FA0023A35BE661697AAE37123CF06D18940C9E0:003560460333980700 -1 00010203040506070809 -m 101 ?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1 --pw-min=15 --pw-max=15 --hex-charset --hex-salt --output-format=1 --output-file=356046033398077_COD.txt


Example for Windows XP/Vista/7 32-bit and NVIDIA Cuda Cards:

IMEI: 356046033398077
HASH: 0FA0023A35BE661697AAE37123CF06D18940C9E0

cudaHashcat-lite32 0FA0023A35BE661697AAE37123CF06D18940C9E0:003560460333980700 -1 00010203040506070809 -m 101 ?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1 --pw-min=15 --pw-max=15 --hex-charset --hex-salt --output-format=1 --output-file=356046033398077_COD.txt


B.R>

Last edited by Advance-Box; 04-11-2011 at 10:27.
 
The Following 30 Users Say Thank You to Advance-Box For This Useful Post:
Show/Hide list of the thanked
Old 04-11-2011, 04:30   #9 (permalink)
No Life Poster
 
Chevka's Avatar
 
Join Date: Sep 2004
Location: NeverL@Nd
Posts: 758
Member: 82106
Status: Offline
Thanks Meter: 1,208
hmm... start to make totorial how to use it with ATF sir,
then ATF would be the Leading in Nokia SL3. Undoubtly !!
 
The Following 2 Users Say Thank You to Chevka For This Useful Post:
Old 04-11-2011, 04:33   #10 (permalink)
Banned
 
Join Date: Apr 2009
Posts: 223
Member: 1020230
Status: Offline
Sonork: beepcellular
Thanks Meter: 15
The soft is ready to use, but i don't know how
I cant open it i have win 7 64b and latest catalist driver
HOW!! HOW!! HOW!! HOW!!
 
Old 04-11-2011, 04:34   #11 (permalink)
No Life Poster
 
MUTUAL's Avatar
 
Join Date: Jul 2005
Location: Auckland
Posts: 4,547
Member: 160928
Status: Offline
Thanks Meter: 338
Quote:
Originally Posted by Chevka View Post
hmm... start to make totorial how to use it with ATF sir,
then ATF would be the Leading in Nokia SL3. Undoubtly !!
yes we need to know step by step how do we use this software i got *** pcs with 6970 dual card i just dont know how do i use it what do with it?
 
The Following User Says Thank You to MUTUAL For This Useful Post:
Old 04-11-2011, 04:35   #12 (permalink)
No Life Poster
 
Advance-Box's Avatar
 
Join Date: Dec 2007
Posts: 7,598
Member: 651945
Status: Offline
Thanks Meter: 20,118
Step 1:

Download Catalyst 11.3 with Integrated OCL Driver here for Windows 7 64 bit...
ATI Radeon


Download Catalyst 11.3 with Integrated OCL Driver here for Windows 7 32 bit...
ATI Radeon



Step 2:

Download oclHashcatlite software by atom here: oclHashcat-lite - advanced password recovery



Step 3:

Now let us convert your LOGS for Local Brute Force command line:

Example File: 356046033398077.sha


Open 356046033398077.sha in Notepad and you will see this:

0FA0023A35BE661697AAE37123CF06D18940C9E0

This is your HASH...

And your IMEI is ... 356046033398077


Now take your HASH and first 14 digits of the IMEI and compose
command line like this:










Example for Windows XP/Vista/7 64-bit and ATI Cards 5xxx or 6xxx:

IMEI: 356046033398077
HASH: 0FA0023A35BE661697AAE37123CF06D18940C9E0


oclHashcat-lite64 0FA0023A35BE661697AAE37123CF06D18940C9E0:003560460333980700 -1 00010203040506070809 -m 101 ?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1 --pw-min=15 --pw-max=15 -n 160 --hex-charset --hex-salt --output-format=1 --output-file=356046033398077_COD.txt



Example for Windows XP/Vista/7 32-bit and ATI cards 5xxx 6xxx:

IMEI: 356046033398077
HASH: 0FA0023A35BE661697AAE37123CF06D18940C9E0


oclHashcat-lite32 0FA0023A35BE661697AAE37123CF06D18940C9E0:003560460333980700 -1 00010203040506070809 -m 101 ?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1 --pw-min=15 --pw-max=15 -n 160 --hex-charset --hex-salt --output-format=1 --output-file=356046033398077_COD.txt




Example for Windows XP/Vista/7 64-bit and NVIDIA Cuda Cards:

IMEI: 356046033398077
HASH: 0FA0023A35BE661697AAE37123CF06D18940C9E0


cudaHashcat-lite64 0FA0023A35BE661697AAE37123CF06D18940C9E0:003560460333980700 -1 00010203040506070809 -m 101 ?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1 --pw-min=15 --pw-max=15 --hex-charset --hex-salt --output-format=1 --output-file=356046033398077_COD.txt




Example for Windows XP/Vista/7 32-bit and NVIDIA Cuda Cards:

IMEI: 356046033398077
HASH: 0FA0023A35BE661697AAE37123CF06D18940C9E0


cudaHashcat-lite32 0FA0023A35BE661697AAE37123CF06D18940C9E0:003560460333980700 -1 00010203040506070809 -m 101 ?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1 --pw-min=15 --pw-max=15 --hex-charset --hex-salt --output-format=1 --output-file=356046033398077_COD.txt



B.R>

Last edited by Advance-Box; 04-11-2011 at 10:29.
 
The Following 75 Users Say Thank You to Advance-Box For This Useful Post:
Show/Hide list of the thanked
Old 04-11-2011, 04:39   #13 (permalink)
No Life Poster
 
MUTUAL's Avatar
 
Join Date: Jul 2005
Location: Auckland
Posts: 4,547
Member: 160928
Status: Offline
Thanks Meter: 338
Quote:
Originally Posted by Advance-Box View Post
Download Catalyst 11.3 with Integrated OCL Driver here for Windows 7 64 bit...
ATI Radeon


Download Catalyst 11.3 with Integrated OCL Driver here for Windows 7 32 bit...
ATI Radeon
can we use windows xp?
 
Old 04-11-2011, 04:45   #14 (permalink)
No Life Poster
 
fred's Avatar
 
Join Date: May 2002
Location: dont ask!
Posts: 694
Member: 12411
Status: Offline
Sonork: 100.113572
Thanks Meter: 813
@thomas

or just simply use the GUI version....





br
freddy
gsmph
Attached Images
File Type: jpg 1.jpg (51.0 KB, 59753 views)
 
The Following 13 Users Say Thank You to fred For This Useful Post:
Show/Hide list of the thanked
Old 04-11-2011, 04:50   #15 (permalink)
Crazy Poster
 
Join Date: Mar 2006
Posts: 58
Member: 239441
Status: Offline
Thanks Meter: 19
Quote:
Originally Posted by fred View Post
@thomas

or just simply use the GUI version....





br
freddy
gsmph
Much simpler !

Well this is an independent software and can be useful to crack the hash decrypted (Read Nokia SL3 ) by ATF or any other similar gsm industrial software tool.

BR

 
 

Bookmarks


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


LinkBacks (?)
LinkBack to this Thread: https://forum.gsmhosting.com/vbb/f609/worlds-fastest-sl3-lbf-markov-edition-oclhashcat-lite-v0-10-atom-1244843/
Posted By For Type Date
LBF computer configuration This thread Trackback: 07-04-2011 20:15

 



All times are GMT +1. The time now is 07:22.



Powered by Searchlight © 2024 Axivo Inc.
vBulletin Optimisation provided by vB Optimise (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
- GSM Hosting Ltd. - 1999-2023 -
Page generated in 0.51303 seconds with 9 queries

SEO by vBSEO