Posts

Showing posts from September, 2017

How to Install Kivy on Window 10

Image
Python Secret #Author: ManishHacker1 Hello Everyone, Welcome to introduction Kivy. First off all we will be talking about Kivy. Kivy is a multi-platform application development kit, using Python. You will require a basic knowledge of Pyhton. In this article we will learn about Mobile Application Development using Kivy and how to install Kivy in our windows Operating System. Platform Independent Kivy runs on various plateform Android devices: Android Phone, Tablets iOS Devices: iPhone, iPad Desktop Computer Operating System: Windows Operating System, UNIX/Linux, MacOSX etc. Kivy is a multi-touch framework for the Python. Kivy contain several objects, called widgets, to display a graphical user interface.Kivy is an Open Source Python library for rapid development of applications. What can I do with Kivy Framework? Using Kivy, you can develope everything which you can imagine. Using touch screen the user can interact with kivy application. You can make or

How to Brute Force ZIP File Password Using Python

Image
Python Secret #Author: ManishHacker1 How to Brute Force ZIP File Password Using Python Hello Everyone, In my previous article, we did learn how to brute force md5 hashes. Today we will learn, How to create zip password brute force script using python.This is my another example of dictionary attack. Full Source Code: #md5 Cracker #Author:ManishHacker1 #https://pythonsecret.blogspot.in #http://krypsec.com #https://www.facebook.com/ManishHacker1 import zipfile import time def main(): try: Zip = raw_input("Enter your Zip File Name: ") myZip = zipfile.ZipFile(Zip) except zipfile.BadZipfile: print "[!] There was an error opening your zip file." return password = '' start = time.time() pwdfile = raw_input("please enter your wordlist dictionary path: ") try: f = open(pwdfile,"r") except: print "\nFile not found" quit() passe

How to Create MD5 Brute Force Script Using Python

Image
Python Secret #Author: ManishHacker1 How to Create MD5 Brute Force Script Using Python Hello guys, Today we will be learn How to create MD5 brute force script using Python. What is brute-force Attack? Brute-force attack also known exhaustive key search Process of checking all possible keys Using a dictionary to attack with Dictionary is usually more effective than searching the whole key space. Exponentially grow with increasing key size. Brute force Attack Limit Because time/energy required to crack a key grows exponentially with key size, encryption in today's standards and computing power are safe brute-force attack. A 256 bit key would take on 50 of today's super computer 3x10^51 years What is Dictionary Attack Much faster than a whole key space search Not guaranteed Commonaly used on passwords Dictionaries can be found online A popular one is darkc0de.lst Good to run before a big dictionary like darkc0de. Can eliminate the most com

How to create Hash calculator Using Python

Image
Python Secret #Author: ManishHacker1 Hello guys, Today we will learn, how to create hash calculator with the help from hashlib module using Python. In my previous article, we was learnt about cryptographic hashes. Now we will be make a hash calculator. Requirment: Python Installed in your Operating System. Step: In my code, first import import hashlib import sys import optparse where hashlib module for hashing algorithm sys module use for system fuction and last one, optparse module use for command line options. Full Source Code import hashlib import sys import optparse parser = optparse.OptionParser() parser.add_option('-n', '--name', dest='name', help='''Your Algo Name Options: md5,sha1,sha224,sha256,sha384,sha512''') parser.add_option('-k', '--key', dest='key', help='Your string key value') (options, args) = parser.parse_a

How to Use Cryptographic hashes Using Python

Image
Python Secret #Author: ManishHacker1 Hello everyone, Today we will be going to learn about Cryptographic Hashes and message digest. What is hash Function? A cryptographic hash function is a function which takes an input or message and convert it to a fixed-size alphanumeric bit string.The output string is called the 'hash value', 'hash code', 'message digest', 'digital fingerprint', 'digest' or 'checksum'). It is a one way hash function. It means if "f" is a hashing function and we convert in to F(x) is very fast and easy. But if you want to obtain again "x" value, It will take many years. Now suppose you want to hash the string "ManishHacker1" with the md5 Function, the result is f9dece57a97af246e7132b02d5c76d77 Uses of Hash Function One use is a data structure called a hash table, widely used in computer software for rapid data lookup. One use is a data structure called a