Tuesday 27 February 2018

cain and abel download wifi cracker, password dumper, sniffer all in one.

HACKING FOR WINDOWS PC



Cain & Abel is a password recovery tool for Microsoft Operating Systems. It allows easy recovery of several kind of passwords by sniffing the network, cracking encrypted passwords using Dictionary, Brute-Force and Cryptanalysis attacks, recording VoIP conversations, decoding scrambled passwords, recovering wireless network keys, revealing password boxes, uncovering cached passwords and analyzing routing protocols. 


Cain's Password Crackers support the most common hashing algorithms and several encryption methods based on them :
Hash Types:
MD2, MD4, MD5, SHA1, SHA2 (256 bit), SHA2 (384 bit), SHA2 (512 bit), RIPEMD160.
Encryption algorithms:
PWL files, Cisco-IOS Type-5 enable passwords, Cisco PIX enable passwords, APOP-MD5, CRAM-MD5, LM, LM + Challenge, NTLM, NTLM + Challenge, NTLM Session Security, NTLMv2, RIPv2-MD5, OSPF-MD5, VRRP-HMAC-96, VNC-3DES, MS-Kerberos5 Pre-Auth, RADIUS Shared Secrets, IKE Pre-Shared Keys, Microsoft SQL Server 2000, Microsoft SQL Server 2005, Oracle, Oracle-TNS-DES, Oracle-TNS-3DES, Oracle-TNS-AES128, Oracle-TNS-AES192, MySQL323, MySQLSHA1, SIP-MD5, WPA-PSK, WPA-PSK-AUTH, CHAP-MD5, MS-CHAPv1, MS-CHAPv2. 


Password Crackers can be found in the program under the "Cracker" sub tab. The tree on the left allows you to select the list containing desired encrypted passwords or hashes to crack.  Those selected are then loaded into the Dictionary / Brute-Force dialog using the relative function within the list pop up menu.

Tuesday 13 February 2018

Fixing a Error in Kali Rolling Repository




W: Failed to fetch http://http.kali.org/kali/dists/kali-rolling/InRelease The following signatures were invalid: EXPKEYSIG ED444FF07D8D0BF6 Kali Linux Repository <devel@kali.org>"
The question was, how do I fix this? Simple enough, you add the keys. Duh.
In order to add the keys we need a certain package, kali-archive-keyring2018.1all.deb
To get the deb file we use wget command.
The command is:
wget https://http.kali.org/kali/pool/main/k/kali-archive-keyring/kali-archive-keyring_2018.1_all.deb
Simple right?
Now how do we install the package? We use dpkg command and the -i flag to install the package, like so:
dpkg -i kali-archive-keyring2018.1all.deb
And now finally do,
apt update && apt upgrade
That's it!
I hope this will help anyone that ran into this issue.