This document will guide you through the installation of Pyrit and it's modules.
Pyrit compiles and runs on Linux, FreeBSD and MacOS. Windows is not (and probably never will be) supported; there are however some reports of successful installations on Windows with the help of MinGW.
Pyrit consists of basically two parts:
You can choose between OpenCL and CUDA if you have a compatible Nvidia-GPU; you may want to take a look at this page to find out if your hardware supports Nvidia-CUDA. People with GPUs from ATI are supported through AMD's OpenCL-implementation and may find this page of interest; other possible OpenCL-platforms like IBM's Cell B.E. (that powers the Playstation 3) should work but are untested at the moment.
Compiling from source-code is the preferred way of getting Pyrit onto your system. Linux users running a binary distribution may need to install the development packages for Python (e.g. python-devel), OpenSSL (e.g. openssl-devel or libssl-dev) and Zlib (e.g. zlib-devel). You also need a C-compiler like gcc. Users of MacOS probably only need to have XCode installed.
From time to time Pyrit get's packed into (hopefully) stable packages. In general you should download, compile and install these source-code packages from the Download area. The more adventurous among you may instead want to try the latest source-code in Pyrit's repository. The code in svn-trunk may include more features and provide better performance but also may cause random problems or even not compile at all. Use the fixed packages when in doubt.
Download the source-code package for Pyrit and (optionally) a extension-module.
Now unpack the source-code into a new directory like this:
tar xvzf pyrit-0.3.0.tar.gz
tar xvzf cpyrit-cuda-0.3.0.tar.gz
Continue with the compiling as explained below.
You need to install a subversion-client before you can use Pyrit's source-code repository; most Linux distributions provide a package for that. Do the initial checkout from svn-trunk like this:
svn checkout http://pyrit.googlecode.com/svn/trunk/ pyrit_svn
This will create a new directory 'pyrit_svn' that holds all of Pyrit's latest source-code. Execute svn update
inside that directory to keep track of changes.
Switch to the main module's directory which should be 'Pyrit-0.2.4' (if you used a source-code package) or 'pyrit_svn/pyrit' (if you're on svn). We use Python's distutils to compile and install the code:
cd pyrit-0.3.0
python setup.py build
If everything went well and no errors are thrown at you, use distutils again to install Pyrit:
sudo python setup.py install
You can now execute 'pyrit' from your commandline; leave the source-code's directory before doing so to prevent Python from getting confused with module-lookups.
Get yourself a copy of the CUDA-Toolkit from http://www.nvidia.com/object/cuda_get.html. You need to modify either $PATH and ldconfig or setup.py if you choose not to install the Toolkit into either '/usr/local/cuda' or '/opt/cuda' so CPyrit-CUDA's installation routine can find Nvidia's compiler 'nvcc'. You also need to have Nvidia's proprietary hardware-drivers installed in the way that fits your OS.
Switch to the directory holding CPyrit-CUDA's source-code and compile and install it just like you did with Pyrit:
cd cpyrit-cuda-0.3.0
python setup.py build
sudo python setup.py install
Executing 'pyrit list_cores' should list your GPUs. Please see the troubleshooting-wiki if it doesn't work.
OpenCL is currently supported by Nvidia (GeForce GPUs), AMD (ATI Radeon GPUs and SSE3-capable CPUs) and IBM (CELL B.E. CPUs). You can get a copy of the SDKs that are required to build CPyrit-OpenCL from the following sites (registration required):
Please see the drivers' installation instruction for how to get everything up and running. The SDKs usually include simple demos and examples. First try to get those demos working and you'll most probably have no problems installing CPyrit-OpenCL.
Switch to the directory holding CPyrit-OpenCL's source-code and compile and install it just like you did with Pyrit:
cd cpyrit-opencl-0.3.0
python setup.py build
sudo python setup.py install
Executing 'pyrit list_cores' should list your GPUs. Please see the troubleshooting-wiki if it doesn't work
Binary packages are not directly supported. The Pentoo- and the Backtrack4-LiveCD include Pyrit as pre-build packages.
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: opmei...@gmail.com
Hi, I don't can install , this code in console in centos 6 32 bits
cpyrit/_cpyrit_cpu.c:1539: error: ‘PcapDevice?’ no tiene un miembro llamado ‘p’ cpyrit/_cpyrit_cpu.c:1549: error: puntero deferenciado a tipo de dato incompleto cpyrit/_cpyrit_cpu.c:1559: error: puntero deferenciado a tipo de dato incompleto cpyrit/_cpyrit_cpu.c:1560: error: puntero deferenciado a tipo de dato incompleto cpyrit/_cpyrit_cpu.c:1578: aviso: declaración implícita de la función ‘pcap_geterr’ cpyrit/_cpyrit_cpu.c:1578: error: ‘PcapDevice?’ no tiene un miembro llamado ‘p’ cpyrit/_cpyrit_cpu.c: En la función ‘PcapDevice?_send’: cpyrit/_cpyrit_cpu.c:1598: error: ‘PcapDevice?’ no tiene un miembro llamado ‘status’ cpyrit/_cpyrit_cpu.c:1620: aviso: declaración implícita de la función ‘pcap_sendpacket’ cpyrit/_cpyrit_cpu.c:1620: error: ‘PcapDevice?’ no tiene un miembro llamado ‘p’ cpyrit/_cpyrit_cpu.c:1622: error: ‘PcapDevice?’ no tiene un miembro llamado ‘p’ cpyrit/_cpyrit_cpu.c: En la función ‘PcapDevice?_set_filter’: cpyrit/_cpyrit_cpu.c:1639: error: no se conoce el tamaño de almacenamiento de ‘fp’ cpyrit/_cpyrit_cpu.c:1645: error: ‘PcapDevice?’ no tiene un miembro llamado ‘status’ cpyrit/_cpyrit_cpu.c:1651: aviso: declaración implícita de la función ‘pcap_compile’ cpyrit/_cpyrit_cpu.c:1651: error: ‘PcapDevice?’ no tiene un miembro llamado ‘p’ cpyrit/_cpyrit_cpu.c:1653: error: ‘PcapDevice?’ no tiene un miembro llamado ‘p’ cpyrit/_cpyrit_cpu.c:1657: aviso: declaración implícita de la función ‘pcap_setfilter’ cpyrit/_cpyrit_cpu.c:1657: error: ‘PcapDevice?’ no tiene un miembro llamado ‘p’ cpyrit/_cpyrit_cpu.c:1659: error: ‘PcapDevice?’ no tiene un miembro llamado ‘p’ cpyrit/_cpyrit_cpu.c:1660: aviso: declaración implícita de la función ‘pcap_freecode’ cpyrit/_cpyrit_cpu.c:1639: aviso: variable ‘fp’ sin usar cpyrit/_cpyrit_cpu.c: En el nivel principal: cpyrit/_cpyrit_cpu.c:1957: error: ‘PcapDevice?’ no tiene un miembro llamado ‘datalink’ error: command 'gcc' failed with exit status 1
any idea?
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: ewasta...@o2.pl
Please anyone could help i had NVIDIA 250GTS everything was working but card went down and i bought 295 GTX and it start when i run john, pyrit and cow-patty it gives me segmentation fault. So i install bt5 on different hdd to don't lose other copy i install drivers, cuda, most packages. Finally i reach point to build pyrit and there is my issue: (don't know how to fix it something missing bu i don't know what)
running build running build_py running build_ext building 'cpyrit._cpyrit_cpu' extension gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.6 -c cpyrit/_cpyrit_cpu.c -o build/temp.linux-x86_64-2.6/cpyrit/_cpyrit_cpu.o -Wall -fno-strict-aliasing -DVERSION="0.4.1-dev (svn r308)" -maes -mpclmul cpyrit/_cpyrit_cpu.c:35:26: error: openssl/hmac.h: No such file or directory cpyrit/_cpyrit_cpu.c:36:25: error: openssl/md5.h: No such file or directory cpyrit/_cpyrit_cpu.c:37:25: error: openssl/sha.h: No such file or directory cpyrit/_cpyrit_cpu.c:38:25: error: openssl/aes.h: No such file or directory In file included from cpyrit/_cpyrit_cpu.c:42: cpyrit/_cpyrit_cpu.h:59: error: expected specifier-qualifier-list before ‘SHA_CTX’ cpyrit/_cpyrit_cpu.c: In function ‘finalize_pmk_sse2’: cpyrit/_cpyrit_cpu.c:109: error: ‘struct pmk_ctr’ has no member named ‘ctx_ipad’ cpyrit/_cpyrit_cpu.c:110: error: ‘struct pmk_ctr’ has no member named ‘ctx_ipad’ cpyrit/_cpyrit_cpu.c:111: error: ‘struct pmk_ctr’ has no member named ‘ctx_ipad’ cpyrit/_cpyrit_cpu.c:112: error: ‘struct pmk_ctr’ has no member named ‘ctx_ipad’ cpyrit/_cpyrit_cpu.c:113: error: ‘struct pmk_ctr’ has no member named ‘ctx_ipad’ cpyrit/_cpyrit_cpu.c:115: error: ‘struct pmk_ctr’ has no member named ‘ctx_opad’ cpyrit/_cpyrit_cpu.c:116: error: ‘struct pmk_ctr’ has no member named ‘ctx_opad’ cpyrit/_cpyrit_cpu.c:117: error: ‘struct pmk_ctr’ has no member named ‘ctx_opad’ cpyrit/_cpyrit_cpu.c:118: error: ‘struct pmk_ctr’ has no member named ‘ctx_opad’ cpyrit/_cpyrit_cpu.c:119: error: ‘struct pmk_ctr’ has no member named ‘ctx_opad’ cpyrit/_cpyrit_cpu.c:125: error: ‘struct pmk_ctr’ has no member named ‘e1’ cpyrit/_cpyrit_cpu.c:126: error: ‘struct pmk_ctr’ has no member named ‘e2’ cpyrit/_cpyrit_cpu.c:153: error: ‘struct pmk_ctr’ has no member named ‘e1’ cpyrit/_cpyrit_cpu.c:154: error: ‘struct pmk_ctr’ has no member named ‘e2’ cpyrit/_cpyrit_cpu.c: In function ‘prepare_pmk_openssl’: cpyrit/_cpyrit_cpu.c:179: warning: implicit declaration of function ‘SHA1_Init’ cpyrit/_cpyrit_cpu.c:179: error: ‘struct pmk_ctr’ has no member named ‘ctx_ipad’ cpyrit/_cpyrit_cpu.c:180: warning: implicit declaration of function ‘SHA1_Update’ cpyrit/_cpyrit_cpu.c:180: error: ‘struct pmk_ctr’ has no member named ‘ctx_ipad’ cpyrit/_cpyrit_cpu.c:183: error: ‘struct pmk_ctr’ has no member named ‘ctx_opad’ cpyrit/_cpyrit_cpu.c:184: error: ‘struct pmk_ctr’ has no member named ‘ctx_opad’ cpyrit/_cpyrit_cpu.c:187: warning: implicit declaration of function ‘HMAC’ cpyrit/_cpyrit_cpu.c:187: warning: implicit declaration of function ‘EVP_sha1’ cpyrit/_cpyrit_cpu.c:187: error: ‘struct pmk_ctr’ has no member named ‘e1’ cpyrit/_cpyrit_cpu.c:190: error: ‘struct pmk_ctr’ has no member named ‘e2’ cpyrit/_cpyrit_cpu.c: In function ‘finalize_pmk_openssl’: cpyrit/_cpyrit_cpu.c:197: error: ‘SHA_CTX’ undeclared (first use in this function) cpyrit/_cpyrit_cpu.c:197: error: (Each undeclared identifier is reported only once cpyrit/_cpyrit_cpu.c:197: error: for each function it appears in.) cpyrit/_cpyrit_cpu.c:197: error: expected ‘;’ before ‘ctx’ cpyrit/_cpyrit_cpu.c:200: error: ‘struct pmk_ctr’ has no member named ‘e1’ cpyrit/_cpyrit_cpu.c:201: error: ‘struct pmk_ctr’ has no member named ‘e2’ cpyrit/_cpyrit_cpu.c:204: error: ‘ctx’ undeclared (first use in this function) cpyrit/_cpyrit_cpu.c:204: error: ‘struct pmk_ctr’ has no member named ‘ctx_ipad’ cpyrit/_cpyrit_cpu.c:206: warning: implicit declaration of function ‘SHA1_Final’ cpyrit/_cpyrit_cpu.c:208: error: ‘struct pmk_ctr’ has no member named ‘ctx_opad’ cpyrit/_cpyrit_cpu.c:213: error: ‘struct pmk_ctr’ has no member named ‘e1’ cpyrit/_cpyrit_cpu.c:215: error: ‘struct pmk_ctr’ has no member named ‘ctx_ipad’ cpyrit/_cpyrit_cpu.c:219: error: ‘struct pmk_ctr’ has no member named ‘ctx_opad’ cpyrit/_cpyrit_cpu.c:224: error: ‘struct pmk_ctr’ has no member named ‘e2’ cpyrit/_cpyrit_cpu.c: In function ‘CPUDevice_solve’: cpyrit/_cpyrit_cpu.c:300: error: ‘struct pmk_ctr’ has no member named ‘e1’ cpyrit/_cpyrit_cpu.c: In function ‘fourwise_md5hmac_openssl’: cpyrit/_cpyrit_cpu.c:655: warning: implicit declaration of function ‘EVP_md5’ cpyrit/_cpyrit_cpu.c: In function ‘fourwise_pke2tk_openssl’: cpyrit/_cpyrit_cpu.c:1015: error: ‘SHA_CTX’ undeclared (first use in this function) cpyrit/_cpyrit_cpu.c:1015: error: expected ‘;’ before ‘ctx’ cpyrit/_cpyrit_cpu.c:1022: error: ‘ctx’ undeclared (first use in this function) cpyrit/_cpyrit_cpu.c:1031: error: ‘ipad_ctx’ undeclared (first use in this function) cpyrit/_cpyrit_cpu.c:1042: error: ‘opad_ctx’ undeclared (first use in this function) cpyrit/_cpyrit_cpu.c: In function ‘ccmp_encrypt_openssl’: cpyrit/_cpyrit_cpu.c:1064: error: ‘AES_KEY’ undeclared (first use in this function) cpyrit/_cpyrit_cpu.c:1064: error: expected ‘;’ before ‘aes_ctx’ cpyrit/_cpyrit_cpu.c:1070: warning: implicit declaration of function ‘AES_set_encrypt_key’ cpyrit/_cpyrit_cpu.c:1070: error: ‘aes_ctx’ undeclared (first use in this function) cpyrit/_cpyrit_cpu.c:1071: warning: implicit declaration of function ‘AES_encrypt’ Failed to build; Compiling without AES-NI building 'cpyrit._cpyrit_cpu' extension gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.6 -c cpyrit/_cpyrit_cpu.c -o build/temp.linux-x86_64-2.6/cpyrit/_cpyrit_cpu.o -Wall -fno-strict-aliasing -DVERSION="0.4.1-dev (svn r308)" cpyrit/_cpyrit_cpu.c:35:26: error: openssl/hmac.h: No such file or directory cpyrit/_cpyrit_cpu.c:36:25: error: openssl/md5.h: No such file or directory cpyrit/_cpyrit_cpu.c:37:25: error: openssl/sha.h: No such file or directory cpyrit/_cpyrit_cpu.c:38:25: error: openssl/aes.h: No such file or directory In file included from cpyrit/_cpyrit_cpu.c:42: cpyrit/_cpyrit_cpu.h:59: error: expected specifier-qualifier-list before ‘SHA_CTX’ cpyrit/_cpyrit_cpu.c: In function ‘finalize_pmk_sse2’: cpyrit/_cpyrit_cpu.c:109: error: ‘struct pmk_ctr’ has no member named ‘ctx_ipad’ cpyrit/_cpyrit_cpu.c:110: error: ‘struct pmk_ctr’ has no member named ‘ctx_ipad’ cpyrit/_cpyrit_cpu.c:111: error: ‘struct pmk_ctr’ has no member named ‘ctx_ipad’ cpyrit/_cpyrit_cpu.c:112: error: ‘struct pmk_ctr’ has no member named ‘ctx_ipad’ cpyrit/_cpyrit_cpu.c:113: error: ‘struct pmk_ctr’ has no member named ‘ctx_ipad’ cpyrit/_cpyrit_cpu.c:115: error: ‘struct pmk_ctr’ has no member named ‘ctx_opad’ cpyrit/_cpyrit_cpu.c:116: error: ‘struct pmk_ctr’ has no member named ‘ctx_opad’ cpyrit/_cpyrit_cpu.c:117: error: ‘struct pmk_ctr’ has no member named ‘ctx_opad’ cpyrit/_cpyrit_cpu.c:118: error: ‘struct pmk_ctr’ has no member named ‘ctx_opad’ cpyrit/_cpyrit_cpu.c:119: error: ‘struct pmk_ctr’ has no member named ‘ctx_opad’ cpyrit/_cpyrit_cpu.c:125: error: ‘struct pmk_ctr’ has no member named ‘e1’ cpyrit/_cpyrit_cpu.c:126: error: ‘struct pmk_ctr’ has no member named ‘e2’ cpyrit/_cpyrit_cpu.c:153: error: ‘struct pmk_ctr’ has no member named ‘e1’ cpyrit/_cpyrit_cpu.c:154: error: ‘struct pmk_ctr’ has no member named ‘e2’ cpyrit/_cpyrit_cpu.c: In function ‘prepare_pmk_openssl’: cpyrit/_cpyrit_cpu.c:179: warning: implicit declaration of function ‘SHA1_Init’ cpyrit/_cpyrit_cpu.c:179: error: ‘struct pmk_ctr’ has no member named ‘ctx_ipad’ cpyrit/_cpyrit_cpu.c:180: warning: implicit declaration of function ‘SHA1_Update’ cpyrit/_cpyrit_cpu.c:180: error: ‘struct pmk_ctr’ has no member named ‘ctx_ipad’ cpyrit/_cpyrit_cpu.c:183: error: ‘struct pmk_ctr’ has no member named ‘ctx_opad’ cpyrit/_cpyrit_cpu.c:184: error: ‘struct pmk_ctr’ has no member named ‘ctx_opad’ cpyrit/_cpyrit_cpu.c:187: warning: implicit declaration of function ‘HMAC’ cpyrit/_cpyrit_cpu.c:187: warning: implicit declaration of function ‘EVP_sha1’ cpyrit/_cpyrit_cpu.c:187: error: ‘struct pmk_ctr’ has no member named ‘e1’ cpyrit/_cpyrit_cpu.c:190: error: ‘struct pmk_ctr’ has no member named ‘e2’ cpyrit/_cpyrit_cpu.c: In function ‘finalize_pmk_openssl’: cpyrit/_cpyrit_cpu.c:197: error: ‘SHA_CTX’ undeclared (first use in this function) cpyrit/_cpyrit_cpu.c:197: error: (Each undeclared identifier is reported only once cpyrit/_cpyrit_cpu.c:197: error: for each function it appears in.) cpyrit/_cpyrit_cpu.c:197: error: expected ‘;’ before ‘ctx’ cpyrit/_cpyrit_cpu.c:200: error: ‘struct pmk_ctr’ has no member named ‘e1’ cpyrit/_cpyrit_cpu.c:201: error: ‘struct pmk_ctr’ has no member named ‘e2’ cpyrit/_cpyrit_cpu.c:204: error: ‘ctx’ undeclared (first use in this function) cpyrit/_cpyrit_cpu.c:204: error: ‘struct pmk_ctr’ has no member named ‘ctx_ipad’ cpyrit/_cpyrit_cpu.c:206: warning: implicit declaration of function ‘SHA1_Final’ cpyrit/_cpyrit_cpu.c:208: error: ‘struct pmk_ctr’ has no member named ‘ctx_opad’ cpyrit/_cpyrit_cpu.c:213: error: ‘struct pmk_ctr’ has no member named ‘e1’ cpyrit/_cpyrit_cpu.c:215: error: ‘struct pmk_ctr’ has no member named ‘ctx_ipad’ cpyrit/_cpyrit_cpu.c:219: error: ‘struct pmk_ctr’ has no member named ‘ctx_opad’ cpyrit/_cpyrit_cpu.c:224: error: ‘struct pmk_ctr’ has no member named ‘e2’ cpyrit/_cpyrit_cpu.c: In function ‘CPUDevice_solve’: cpyrit/_cpyrit_cpu.c:300: error: ‘struct pmk_ctr’ has no member named ‘e1’ cpyrit/_cpyrit_cpu.c: In function ‘fourwise_md5hmac_openssl’: cpyrit/_cpyrit_cpu.c:655: warning: implicit declaration of function ‘EVP_md5’ cpyrit/_cpyrit_cpu.c: In function ‘fourwise_pke2tk_openssl’: cpyrit/_cpyrit_cpu.c:1015: error: ‘SHA_CTX’ undeclared (first use in this function) cpyrit/_cpyrit_cpu.c:1015: error: expected ‘;’ before ‘ctx’ cpyrit/_cpyrit_cpu.c:1022: error: ‘ctx’ undeclared (first use in this function) cpyrit/_cpyrit_cpu.c:1031: error: ‘ipad_ctx’ undeclared (first use in this function) cpyrit/_cpyrit_cpu.c:1042: error: ‘opad_ctx’ undeclared (first use in this function) cpyrit/_cpyrit_cpu.c: In function ‘ccmp_encrypt_openssl’: cpyrit/_cpyrit_cpu.c:1064: error: ‘AES_KEY’ undeclared (first use in this function) cpyrit/_cpyrit_cpu.c:1064: error: expected ‘;’ before ‘aes_ctx’ cpyrit/_cpyrit_cpu.c:1070: warning: implicit declaration of function ‘AES_set_encrypt_key’ cpyrit/_cpyrit_cpu.c:1070: error: ‘aes_ctx’ undeclared (first use in this function) cpyrit/_cpyrit_cpu.c:1071: warning: implicit declaration of function ‘AES_encrypt’ error: command 'gcc' failed with exit status 1
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: martimar...@gmail.com
Hello,
Here is what I get after python setup.py build:
root@bt:~/cpyrit-opencl-0.3.0# python setup.py build The headers required to build the OpenCL-kernel were not found. Trying to continue anyway... svn: '.' is not a working copy running build running build_ext Building modules... building 'cpyrit.cpyrit_opencl' extension gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.6 -c _cpyrit_opencl.c -o build/temp.linux-x86_64-2.6/_cpyrit_opencl.o -DVERSION="0.3.0" _cpyrit_opencl.c:23:19: error: CL/cl.h: No such file or directory _cpyrit_opencl.c:46: error: expected specifier-qualifier-list before ‘cl_device_id’ _cpyrit_opencl.c:57: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘’ token _cpyrit_opencl.c:58: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘attribute’ before ‘num_platforms’ _cpyrit_opencl.c:63: error: expected ‘)’ before ‘error’ _cpyrit_opencl.c: In function ‘oclplatf_init’: _cpyrit_opencl.c:122: error: ‘cl_uint’ undeclared (first use in this function) _cpyrit_opencl.c:122: error: (Each undeclared identifier is reported only once _cpyrit_opencl.c:122: error: for each function it appears in.) _cpyrit_opencl.c:122: error: expected ‘;’ before ‘num_devices’ _cpyrit_opencl.c:123: error: ‘cl_int’ undeclared (first use in this function) _cpyrit_opencl.c:123: error: expected ‘;’ before ‘err’ _cpyrit_opencl.c:130: error: ‘num_platforms’ undeclared (first use in this function) _cpyrit_opencl.c:140: error: ‘err’ undeclared (first use in this function) _cpyrit_opencl.c:140: warning: implicit declaration of function ‘clGetDeviceIDs’ _cpyrit_opencl.c:140: error: ‘platforms’ undeclared (first use in this function) _cpyrit_opencl.c:140: error: ‘CL_DEVICE_TYPE_ALL’ undeclared (first use in this function) _cpyrit_opencl.c:140: error: ‘num_devices’ undeclared (first use in this function) _cpyrit_opencl.c:141: error: ‘CL_SUCCESS’ undeclared (first use in this function) _cpyrit_opencl.c:143: warning: implicit declaration of function ‘getCLresultMsg’ _cpyrit_opencl.c:154: warning: implicit declaration of function ‘clGetPlatformInfo’ _cpyrit_opencl.c:154: error: ‘CL_PLATFORM_NAME’ undeclared (first use in this function) _cpyrit_opencl.c:167: error: ‘CL_PLATFORM_VENDOR’ undeclared (first use in this function) _cpyrit_opencl.c: In function ‘ocldevice_init’: _cpyrit_opencl.c:196: error: ‘cl_uint’ undeclared (first use in this function) _cpyrit_opencl.c:196: error: expected ‘;’ before ‘num_entries’ _cpyrit_opencl.c:197: error: ‘cl_device_id’ undeclared (first use in this function) _cpyrit_opencl.c:197: error: ‘devices’ undeclared (first use in this function) _cpyrit_opencl.c:198: error: ‘cl_device_type’ undeclared (first use in this function) _cpyrit_opencl.c:198: error: expected ‘;’ before ‘device_type’ _cpyrit_opencl.c:202: error: ‘cl_int’ undeclared (first use in this function) _cpyrit_opencl.c:202: error: expected ‘;’ before ‘err’ _cpyrit_opencl.c:207: error: ‘num_platforms’ undeclared (first use in this function) _cpyrit_opencl.c:213: error: ‘err’ undeclared (first use in this function) _cpyrit_opencl.c:213: error: ‘platforms’ undeclared (first use in this function) _cpyrit_opencl.c:213: error: ‘CL_DEVICE_TYPE_ALL’ undeclared (first use in this function) _cpyrit_opencl.c:213: error: ‘num_entries’ undeclared (first use in this function) _cpyrit_opencl.c:214: error: ‘CL_SUCCESS’ undeclared (first use in this function) _cpyrit_opencl.c:225: error: expected expression before ‘)’ token _cpyrit_opencl.c:238: error: ‘OpenCLDevice’ has no member named ‘device’ _cpyrit_opencl.c:241: error: ‘OpenCLDevice’ has no member named ‘dev_name’ _cpyrit_opencl.c:241: error: ‘OpenCLDevice’ has no member named ‘dev_type’ _cpyrit_opencl.c:241: error: ‘OpenCLDevice’ has no member named ‘dev_maxworksize’ _cpyrit_opencl.c:242: error: ‘OpenCLDevice’ has no member named ‘dev_ctx’ _cpyrit_opencl.c:243: error: ‘OpenCLDevice’ has no member named ‘dev_prog’ _cpyrit_opencl.c:244: error: ‘OpenCLDevice’ has no member named ‘dev_kernel’ _cpyrit_opencl.c:245: error: ‘OpenCLDevice’ has no member named ‘dev_queue’ _cpyrit_opencl.c:247: warning: implicit declaration of function ‘clGetDeviceInfo’ _cpyrit_opencl.c:247: error: ‘OpenCLDevice’ has no member named ‘device’ _cpyrit_opencl.c:247: error: ‘CL_DEVICE_NAME’ undeclared (first use in this function) _cpyrit_opencl.c:253: error: ‘OpenCLDevice’ has no member named ‘dev_name’ _cpyrit_opencl.c:254: error: ‘OpenCLDevice’ has no member named ‘dev_name’ _cpyrit_opencl.c:260: error: ‘OpenCLDevice’ has no member named ‘device’ _cpyrit_opencl.c:260: error: ‘CL_DEVICE_TYPE’ undeclared (first use in this function) _cpyrit_opencl.c:260: error: ‘device_type’ undeclared (first use in this function) _cpyrit_opencl.c:266: error: ‘CL_DEVICE_TYPE_CPU’ undeclared (first use in this function) _cpyrit_opencl.c:268: error: ‘OpenCLDevice’ has no member named ‘dev_type’ _cpyrit_opencl.c:269: error: ‘CL_DEVICE_TYPE_GPU’ undeclared (first use in this function) _cpyrit_opencl.c:271: error: ‘OpenCLDevice’ has no member named ‘dev_type’ _cpyrit_opencl.c:272: error: ‘CL_DEVICE_TYPE_ACCELERATOR’ undeclared (first use in this function) _cpyrit_opencl.c:274: error: ‘OpenCLDevice’ has no member named ‘dev_type’ _cpyrit_opencl.c:277: error: ‘OpenCLDevice’ has no member named ‘dev_type’ _cpyrit_opencl.c:279: error: ‘OpenCLDevice’ has no member named ‘dev_type’ _cpyrit_opencl.c:285: error: ‘OpenCLDevice’ has no member named ‘device’ _cpyrit_opencl.c:285: error: ‘CL_DEVICE_MAX_WORK_GROUP_SIZE’ undeclared (first use in this function) _cpyrit_opencl.c:285: error: ‘OpenCLDevice’ has no member named ‘dev_workgroupsize’ _cpyrit_opencl.c:285: error: ‘OpenCLDevice’ has no member named ‘dev_workgroupsize’ _cpyrit_opencl.c:292: error: ‘OpenCLDevice’ has no member named ‘device’ _cpyrit_opencl.c:292: error: ‘CL_DEVICE_MAX_WORK_ITEM_DIMENSIONS’ undeclared (first use in this function) _cpyrit_opencl.c:305: error: ‘OpenCLDevice’ has no member named ‘device’ _cpyrit_opencl.c:305: error: ‘CL_DEVICE_MAX_WORK_ITEM_SIZES’ undeclared (first use in this function) _cpyrit_opencl.c:312: error: ‘OpenCLDevice’ has no member named ‘dev_maxworksize’ _cpyrit_opencl.c:313: error: ‘OpenCLDevice’ has no member named ‘dev_maxworksize’ _cpyrit_opencl.c:320: error: ‘OpenCLDevice’ has no member named ‘dev_maxworksize’ _cpyrit_opencl.c: In function ‘ocldevice_compile’: _cpyrit_opencl.c:330: error: ‘cl_int’ undeclared (first use in this function) _cpyrit_opencl.c:330: error: expected ‘;’ before ‘err’ _cpyrit_opencl.c:332: error: ‘OpenCLDevice’ has no member named ‘dev_ctx’ _cpyrit_opencl.c:334: error: ‘OpenCLDevice’ has no member named ‘dev_ctx’ _cpyrit_opencl.c:334: warning: implicit declaration of function ‘clCreateContext’ _cpyrit_opencl.c:334: error: ‘OpenCLDevice’ has no member named ‘device’ _cpyrit_opencl.c:334: error: ‘err’ undeclared (first use in this function) _cpyrit_opencl.c:335: error: ‘CL_SUCCESS’ undeclared (first use in this function) _cpyrit_opencl.c:342: error: ‘OpenCLDevice’ has no member named ‘dev_queue’ _cpyrit_opencl.c:344: error: ‘OpenCLDevice’ has no member named ‘dev_queue’ _cpyrit_opencl.c:344: warning: implicit declaration of function ‘clCreateCommandQueue’ _cpyrit_opencl.c:344: error: ‘OpenCLDevice’ has no member named ‘dev_ctx’ _cpyrit_opencl.c:344: error: ‘OpenCLDevice’ has no member named ‘device’ _cpyrit_opencl.c:352: error: ‘OpenCLDevice’ has no member named ‘dev_prog’ _cpyrit_opencl.c:354: error: ‘OpenCLDevice’ has no member named ‘dev_prog’ _cpyrit_opencl.c:354: warning: implicit declaration of function ‘clCreateProgramWithSource’ _cpyrit_opencl.c:354: error: ‘OpenCLDevice’ has no member named ‘dev_ctx’ _cpyrit_opencl.c:362: error: ‘OpenCLDevice’ has no member named ‘dev_kernel’ _cpyrit_opencl.c:364: warning: implicit declaration of function ‘clBuildProgram’ _cpyrit_opencl.c:364: error: ‘OpenCLDevice’ has no member named ‘dev_prog’ _cpyrit_opencl.c:367: warning: implicit declaration of function ‘clGetProgramBuildInfo’ _cpyrit_opencl.c:367: error: ‘OpenCLDevice’ has no member named ‘dev_prog’ _cpyrit_opencl.c:367: error: ‘OpenCLDevice’ has no member named ‘device’ _cpyrit_opencl.c:367: error: ‘CL_PROGRAM_BUILD_LOG’ undeclared (first use in this function) _cpyrit_opencl.c:372: error: ‘OpenCLDevice’ has no member named ‘dev_prog’ _cpyrit_opencl.c:372: error: ‘OpenCLDevice’ has no member named ‘device’ _cpyrit_opencl.c:372: error: ‘CL_PROGRAM_BUILD_STATUS’ undeclared (first use in this function) _cpyrit_opencl.c:372: error: ‘status’ undeclared (first use in this function) _cpyrit_opencl.c:373: error: ‘CL_BUILD_SUCCESS’ undeclared (first use in this function) _cpyrit_opencl.c:375: error: ‘OpenCLDevice’ has no member named ‘dev_prog’ _cpyrit_opencl.c:375: error: ‘OpenCLDevice’ has no member named ‘device’ _cpyrit_opencl.c:380: error: ‘OpenCLDevice’ has no member named ‘dev_kernel’ _cpyrit_opencl.c:380: warning: implicit declaration of function ‘clCreateKernel’ _cpyrit_opencl.c:380: error: ‘OpenCLDevice’ has no member named ‘dev_prog’ _cpyrit_opencl.c: In function ‘ocldevice_dealloc’: _cpyrit_opencl.c:395: error: ‘OpenCLDevice’ has no member named ‘dev_queue’ _cpyrit_opencl.c:396: warning: implicit declaration of function ‘clReleaseCommandQueue’ _cpyrit_opencl.c:396: error: ‘OpenCLDevice’ has no member named ‘dev_queue’ _cpyrit_opencl.c:397: error: ‘OpenCLDevice’ has no member named ‘dev_kernel’ _cpyrit_opencl.c:398: warning: implicit declaration of function ‘clReleaseKernel’ _cpyrit_opencl.c:398: error: ‘OpenCLDevice’ has no member named ‘dev_kernel’ _cpyrit_opencl.c:399: error: ‘OpenCLDevice’ has no member named ‘dev_prog’ _cpyrit_opencl.c:400: warning: implicit declaration of function ‘clReleaseProgram’ _cpyrit_opencl.c:400: error: ‘OpenCLDevice’ has no member named ‘dev_prog’ _cpyrit_opencl.c:401: error: ‘OpenCLDevice’ has no member named ‘dev_ctx’ _cpyrit_opencl.c:402: warning: implicit declaration of function ‘clReleaseContext’ _cpyrit_opencl.c:402: error: ‘OpenCLDevice’ has no member named ‘dev_ctx’ _cpyrit_opencl.c:403: error: ‘OpenCLDevice’ has no member named ‘dev_name’ _cpyrit_opencl.c:403: error: ‘OpenCLDevice’ has no member named ‘dev_name’ _cpyrit_opencl.c:403: error: ‘OpenCLDevice’ has no member named ‘dev_name’ _cpyrit_opencl.c:403: error: ‘OpenCLDevice’ has no member named ‘dev_name’ _cpyrit_opencl.c:404: error: ‘OpenCLDevice’ has no member named ‘dev_type’ _cpyrit_opencl.c:404: error: ‘OpenCLDevice’ has no member named ‘dev_type’ _cpyrit_opencl.c:404: error: ‘OpenCLDevice’ has no member named ‘dev_type’ _cpyrit_opencl.c:404: error: ‘OpenCLDevice’ has no member named ‘dev_type’ _cpyrit_opencl.c:405: error: ‘OpenCLDevice’ has no member named ‘dev_maxworksize’ _cpyrit_opencl.c:405: error: ‘OpenCLDevice’ has no member named ‘dev_maxworksize’ _cpyrit_opencl.c:405: error: ‘OpenCLDevice’ has no member named ‘dev_maxworksize’ _cpyrit_opencl.c:405: error: ‘OpenCLDevice’ has no member named ‘dev_maxworksize’ _cpyrit_opencl.c: At top level: _cpyrit_opencl.c:410: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘attribute’ before ‘calc_pmklist’ _cpyrit_opencl.c: In function ‘cpyrit_solve’: _cpyrit_opencl.c:494: error: ‘OpenCLDevice’ has no member named ‘dev_kernel’ _cpyrit_opencl.c:589: warning: implicit declaration of function ‘calc_pmklist’ _cpyrit_opencl.c:593: error: ‘CL_SUCCESS’ undeclared (first use in this function) _cpyrit_opencl.c:596: warning: format ‘%s’ expects type ‘char ’, but argument 3 has type ‘int’ _cpyrit_opencl.c: At top level: _cpyrit_opencl.c:670: error: ‘OpenCLDevice’ has no member named ‘dev_name’ _cpyrit_opencl.c:671: error: ‘OpenCLDevice’ has no member named ‘dev_type’ _cpyrit_opencl.c:672: error: ‘OpenCLDevice’ has no member named ‘dev_maxworksize’ _cpyrit_opencl.c: In function ‘init_cpyrit_opencl’: _cpyrit_opencl.c:737: error: ‘cl_int’ undeclared (first use in this function) _cpyrit_opencl.c:737: warning: statement with no effect _cpyrit_opencl.c:737: error: expected ‘;’ before ‘err’ _cpyrit_opencl.c:739: error: ‘err’ undeclared (first use in this function) _cpyrit_opencl.c:739: warning: implicit declaration of function ‘clGetPlatformIDs’ _cpyrit_opencl.c:739: error: ‘num_platforms’ undeclared (first use in this function) _cpyrit_opencl.c:739: warning: statement with no effect _cpyrit_opencl.c:740: error: ‘CL_SUCCESS’ undeclared (first use in this function) _cpyrit_opencl.c:742: warning: format ‘%s’ expects type ‘char ’, but argument 3 has type ‘int’ cpyrit_opencl.c:746: error: ‘platforms’ undeclared (first use in this function) _cpyrit_opencl.c:746: error: ‘cl_platform_id’ undeclared (first use in this function) _cpyrit_opencl.c:746: error: invalid operands to binary / (have ‘long int’ and ‘struct PyMemberDef? ’) cpyrit_opencl.c:746: warning: comparison between pointer and integer _cpyrit_opencl.c:746: error: expected expression before ‘)’ token _cpyrit_opencl.c:746: error: invalid operands to binary ** (have ‘struct PyMemberDef? ’ and ‘struct PyMemberDef? ’) _cpyrit_opencl.c:746: warning: statement with no effect _cpyrit_opencl.c:753: warning: statement with no effect _cpyrit_opencl.c:756: warning: format ‘%s’ expects type ‘char **_’, but argument 3 has type ‘int’ error: command 'gcc' failed with exit status 1 _
any ideas?
Will REALLY appreciate it if you help me! THANKS!!!
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: martimar...@gmail.com
And this is what I get when I try to open AMD Catalyst Control Center:
There was a problem initializing Catalyst Control Center Linux edition. It could be caused by the following.
No AMD graphics driver is installed, or the AMD driver is not functioning properly. Please install the AMD driver appropriate for you AMD hardware, or configure using aticonfig.
HELP ME PLEASE!!!
Thank you very much!!!
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: YoushiGa...@gmail.com
TO RESOLVE error: command 'gcc' failed with exit status 1
cd pyrit-0.4.0 sudo su python setup.py build
Just go in root mode i have search 4 hours install many packets BUT WE HAVE JUST TO GO IN ROOT MODE But enjoy for other :D
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: gat...@gmail.com
When I try to build cpyrit cuda on my mid2008 iMac 24" i get this output: (pyrit works fine) Thanks in advance for any help.
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: aking101...@gmail.com
Just for funsies I tried to get it building against beignet for intel integrated graphics. I had to make a few tweaks to the setup.py files and export and additional folder for the linker to search... but if anyone is interested I'll drop the how. It's just one more hardware platform it is confirmed working on.
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: themrz...@gmail.com
After the command python setup.py build I've got this error :
running build running build_py running build_ext building 'cpyrit._cpyrit_cpu' extension gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.7 -c cpyrit/_cpyrit_cpu.c -o build/temp.linux-x86_64-2.7/cpyrit/_cpyrit_cpu.o -Wall -fno-strict-aliasing -DVERSION="0.4.0" cpyrit/_cpyrit_cpu.c:32:20: fatal error: Python.h: No such file or directory compilation terminated. error: command 'gcc' failed with exit status 1
Please can someone help me??? What i have to do ?
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: tylerspr...@gmail.com
tyler@kubuntu32:~/Downloads/pyrit-0.3.0$ sudo python setup.py build running build running build_py running build_ext running build_scripts tyler@kubuntu32:~/Downloads/pyrit-0.3.0$ sudo python setup.py install running install running build running build_py running build_ext running build_scripts running install_lib writing byte-compilation script '/tmp/tmpmv2Ujf.py' /usr/bin/python -O /tmp/tmpmv2Ujf.py removing /tmp/tmpmv2Ujf.py running install_scripts changing mode of /usr/local/bin/pyrit to 775 running install_egg_info Removing /usr/local/lib/python2.7/dist-packages/pyrit-0.3.0.egg-info Writing /usr/local/lib/python2.7/dist-packages/pyrit-0.3.0.egg-info tyler@kubuntu32:~/Downloads/pyrit-0.3.0$ cd .. tyler@kubuntu32:~/Downloads$ pyrit Traceback (most recent call last):
_ImportError?: /usr/local/lib/python2.7/dist-packages/cpyrit/_cpyrit_cpu.so: undefined symbol: EVP_md5
Kubuntu 14.04 LTS i686 (32) up to date as of today.
cannot run pyrit at all, I have apt-get install zlibg1-dev python-dev g++ libssl-dev python-scapy
any ideas at all? ive been trying to get pyrit or oclhashcat to work on 14.04 with zero luck, had to try oclhashcat in winblows with catalyst 14 drivers and it works, idk about speeds but it works. dying to get my gpu cracking with pyrit (i love the DB). Thanks in advance
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: anton.va...@gmail.com
tyler, try downloading the latest source from the svn and compiling as usual
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: bob.piel...@gmail.com
Does anyone know what the best flags for nvcc on cuda pyrit might be?
My Jetson TK1 does not seem to have the performance you would expect and I am guessing it may be related to flags or how the source gets compiled.
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: guacamol...@gmail.com
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: henrique...@gmail.com
To aking101 and guacamol:
I'm interested in trying to get pyrit working not only on beignet but also on Intel's OpenCL for Iris.
Please send the howto so I can try to replicate for the Iris, thank you both.
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: kga...@gmail.com
I got pyrit working with Intel's OpenCL without problem. I've used newer pkgs versions (0.4.0).
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: tdbo...@gmail.com
come on guys if you know how to get pyrit working with intel cpu-gpu using opencl please give a howto. i have 4th gen intel hd 4600 and would love to see some cpu-gpu lovin. i can put any flavor of ubuntu on the ssd that you wish. i have not installed beignet or intel opencl sdk. please a rough outline on what you had to do would be great.
i have heard the AMD opencl sdk is 100% compatible can anyone verify this?
anyhow let us know how to compile for our cpu-gpu for pyrit opencl. thanks
Last edit: Anonymous 2017-07-24
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: tdbo...@gmail.com
i kind of got it working on beignet with intel gpu here is what i got
en1gma@en1gma-All-Series:~$ pyrit benchmark Pyrit 0.4.1-dev (svn r308) (C) 2008-2011 Lukas Lueg http://pyrit.googlecode.com This code is distributed under the GNU General Public License v3+
Running benchmark (9398.0 PMKs/s)... \
Computed 9398.04 PMKs/s total. #1: 'OpenCL-Device 'Intel(R) HD Graphics Haswell GT2 Desktop'': 4421.5 PMKs/s (RTT 2.8) #2: 'CPU-Core (SSE2/AES)': 811.4 PMKs/s (RTT 3.0) #3: 'CPU-Core (SSE2/AES)': 719.6 PMKs/s (RTT 3.0) #4: 'CPU-Core (SSE2/AES)': 999.3 PMKs/s (RTT 3.3) #5: 'CPU-Core (SSE2/AES)': 1021.6 PMKs/s (RTT 2.5) #6: 'CPU-Core (SSE2/AES)': 720.7 PMKs/s (RTT 3.4) #7: 'CPU-Core (SSE2/AES)': 746.0 PMKs/s (RTT 3.0) #8: 'CPU-Core (SSE2/AES)': 719.8 PMKs/s (RTT 3.0) en1gma@en1gma-All-Series:~$ pyrit selftest Pyrit 0.4.1-dev (svn r308) (C) 2008-2011 Lukas Lueg http://pyrit.googlecode.com This code is distributed under the GNU General Public License v3+
Cores incorporated in the test: #1: 'OpenCL-Device 'Intel(R) HD Graphics Haswell GT2 Desktop'' #2: 'CPU-Core (SSE2/AES)' #3: 'CPU-Core (SSE2/AES)' #4: 'CPU-Core (SSE2/AES)' #5: 'CPU-Core (SSE2/AES)' #6: 'CPU-Core (SSE2/AES)' #7: 'CPU-Core (SSE2/AES)' #8: 'CPU-Core (SSE2/AES)'
Running selftest...
!!! WARNING !!! At least some results seem to be invalid. This may be caused by a bug in Pyrit, faulty hardware or malicious network clients. Do not trust this installation...
en1gma@en1gma-All-Series:~$ uname -a Linux en1gma-All-Series 4.2.0-040200rc3-lowlatency #201507192329 SMP PREEMPT Sun Jul 19 22:38:08 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux en1gma@en1gma-All-Series:~$ uname -r 4.2.0-040200rc3-lowlatency en1gma@en1gma-All-Series:~$ cat /etc/**-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=15.04 DISTRIB_CODENAME=vivid DISTRIB_DESCRIPTION="Ubuntu 15.04" NAME="Ubuntu" VERSION="15.04 (Vivid Vervet)" ID=ubuntu ID_LIKE=debian PRETTY_NAME="Ubuntu 15.04" VERSION_ID="15.04" HOME_URL="http://www.ubuntu.com/" SUPPORT_URL="http://help.ubuntu.com/" BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/" en1gma@en1gma-All-Series:~$ clinfo Number of platforms 1 **
Number of devices 1
NULL platform behavior
ICD loader properties
en1gma@en1gma-All-Series:~$ lsmod Module Size Used by arc4 16384 2 rt2800usb 28672 0 rt2x00usb 24576 1 rt2800usb rt2800lib 90112 1 rt2800usb rt2x00lib 53248 3 rt2x00usb,rt2800lib,rt2800usb mac80211 741376 3 rt2x00lib,rt2x00usb,rt2800lib crc_ccitt 16384 1 rt2800lib joydev 20480 0 input_leds 16384 0 binfmt_misc 20480 1 cfg80211 544768 2 mac80211,rt2x00lib hid_logitech_hidpp 20480 0 hid_logitech_dj 20480 0 hid_generic 16384 0 usbhid 49152 0 hid 118784 4 hid_generic,usbhid,hid_logitech_dj,hid_logitech_hidpp snd_hda_codec_hdmi 49152 1 intel_rapl 20480 0 iosf_mbi 16384 1 intel_rapl x86_pkg_temp_thermal 16384 0 intel_powerclamp 16384 0 coretemp 16384 0 snd_hda_intel 36864 2 snd_hda_codec 135168 2 snd_hda_codec_hdmi,snd_hda_intel kvm 507904 0 snd_hda_core 65536 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel snd_hwdep 16384 1 snd_hda_codec snd_pcm 102400 4 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel,snd_hda_core crct10dif_pclmul 16384 0 eeepc_wmi 16384 0 asus_wmi 28672 1 eeepc_wmi crc32_pclmul 16384 0 sparse_keymap 16384 1 asus_wmi ghash_clmulni_intel 16384 0 mxm_wmi 16384 0 snd_seq_midi 16384 0 snd_seq_midi_event 16384 1 snd_seq_midi snd_rawmidi 32768 1 snd_seq_midi aesni_intel 167936 0 i915 1114112 4 snd_seq 69632 2 snd_seq_midi_event,snd_seq_midi aes_x86_64 20480 1 aesni_intel lrw 16384 1 aesni_intel gf128mul 16384 1 lrw glue_helper 16384 1 aesni_intel ablk_helper 16384 1 aesni_intel cryptd 20480 3 ghash_clmulni_intel,aesni_intel,ablk_helper snd_seq_device 16384 3 snd_seq,snd_rawmidi,snd_seq_midi serio_raw 16384 0 snd_timer 32768 2 snd_pcm,snd_seq drm_kms_helper 126976 1 i915 drm 356352 5 i915,drm_kms_helper snd 81920 13 snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,snd_seq_device shpchp 36864 0 mei_me 24576 0 tpm_infineon 20480 0 soundcore 16384 1 snd i2c_algo_bit 16384 1 i915 mei 86016 1 mei_me lpc_ich 24576 0 video 36864 2 i915,asus_wmi mac_hid 16384 0 acpi_pad 20480 0 wmi 20480 2 mxm_wmi,asus_wmi parport_pc 32768 0 ppdev 20480 0 lp 20480 0 parport 49152 3 lp,ppdev,parport_pc autofs4 40960 2 e1000e 233472 0 psmouse 122880 0 ahci 36864 2 ptp 20480 1 e1000e libahci 32768 1 ahci pps_core 20480 1 ptp en1gma@en1gma-All-Series:~$
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: tdbo...@gmail.com
ok i think i found the problem. i had my cpu (I7 4770K @ 4.2GHz) and also i had the gpu overclocked. reset bios to defaults and here is results en1gma@en1gma-All-Series:~$ pyrit benchmark Pyrit 0.4.1-dev (svn r308) (C) 2008-2011 Lukas Lueg http://pyrit.googlecode.com This code is distributed under the GNU General Public License v3+
Running benchmark (8631.5 PMKs/s)... -
Computed 8631.47 PMKs/s total. #1: 'OpenCL-Device 'Intel(R) HD Graphics Haswell GT2 Desktop'': 4411.0 PMKs/s (RTT 2.8) #2: 'CPU-Core (SSE2/AES)': 686.5 PMKs/s (RTT 3.0) #3: 'CPU-Core (SSE2/AES)': 701.0 PMKs/s (RTT 3.1) #4: 'CPU-Core (SSE2/AES)': 743.7 PMKs/s (RTT 3.2) #5: 'CPU-Core (SSE2/AES)': 663.2 PMKs/s (RTT 3.1) #6: 'CPU-Core (SSE2/AES)': 813.5 PMKs/s (RTT 2.6) #7: 'CPU-Core (SSE2/AES)': 684.0 PMKs/s (RTT 3.3) #8: 'CPU-Core (SSE2/AES)': 643.7 PMKs/s (RTT 3.1) en1gma@en1gma-All-Series:~$
pretty much doubled the score using opencl-pyrit i also ran crunch piped through pyrit and it did find my wpa2 8 digit password with crunch i set it to 8 digit fixed and i gave it my characters and numbers but wasnt in order so it had to do some work this is AWESOME! me = en1gma on freenode