Skip to main content

Posts

How to Use Cryptographic hashes Using Python

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...

How to Create Advanced Folder Lock with Setup Your Own Password Using Python

Python Blog #Author: ManishHacker1 Hello guys, I am back. Today we will be create advanced Folder Lock. In this folder lock, you can setup your password and create Locker folder where you want in your Hard-Drive. In my last article, We learned about "How to create Folder Lock with Password Protected using Python". Now we will be make a Advanced Folder Lock using Python. How to create folder lock using Python Compatibility: Compatible with any Microsoft Windows Operating system. Pre-Reuisites: You will need pyhton installed in your operating system. win32api: For windows purpose if you want to distribute your Folder Lock then you will be also need pyinstaller using to convert our python file to .exe file. First open your python IDE or Notepad, where you want to write code. If you use to notepad please remember indentation using to write code. Or copy the following code and paste in your python IDE or Notepad and save as anyname.py. Where ".py...

How to Sending Keystrokes to Windows exe Programs

Python Blog #Author: ManishHacker1 Hello Guys, Today we will learn about How to send keystrokes to windows exe program using pyautogui module and using win32api. If you want to friendship with a girl and you want to impress with your program and ask for friendship. Or if you want to all your daily computer work done automatically. Then you can also use python script. For Example: import time import win32com import win32com.client import pyautogui shell = win32com.client.Dispatch('WScript.Shell') shell.Run('notepad') time.sleep(0.1) shell.AppActivate('notepad') while True: mm = pyautogui.typewrite('Hello Akan!, Will you friendship with me? If yes then tell me.', interval=0.25) pyautogui.press('enter') pyautogui.typewrite('Your Wellwisher :)', interval=0.25) shell.SendKeys("mm",0) shell.SendKeys("{Enter}", 0) shell.SendKeys("{F5}", 0) # F5 prints the time/date pyau...

How to create Folder Lock with Password Protected using Python

Amazon.in Widgets Python Blog #Author: ManishHacker1 Hello guys, Today we will be learn how to create folder lock with password protected using Python programming language. What is Folder Lock? Folder Lock is a data security software that is allows its users to encrypt thier files and folder. Lock, hide and password protects files and folder on your computer. You can use Folder Lock to secure your files and folder on windows. So, I am going to tell you how to make your own Folder Lock, without using any software. Pre-Reuisites: You will need only pyhton installed in your operating system. if you want to distribute your Folder Lock then you will be also need pyinstaller using to convert our python file to .exe file. Compatibility: Compatible with any Microsoft Windows Operating system. Instructions: First open your python IDE or Notepad, where you want to write code. If you use to notepad please remember indentation using to write code. Or copy th...

How to Create Key-logger with Capture Screenshot using Python

Python Blog #Author: ManishHacker1 Hi guys, Today we will learn about how to create basic keylogger with capture screenshot using Python Programming. What is Keylogger? Keylogger is a simple software program or hardware device that is used to monitor or record our real time activity of a computer including every keystroke made by a computer user without any notice of the computer user. The keystrokes will be stored in a log file and saved in a hiddin location and send to the person who managed to infect your PC. Keylogger are designed to steal sensitive information such as username and password, credit card details, or your privet conversation. Requirement to create a Keylogger with screenshot using Python Python must be installed on the system pyHook and pythoncom: pyHook library allows us to hook the keyboard and mouse. win32gui: Is a window module time: Import time datetime: For date and time os : Using for operation system operation sys: Using for system funtio...

How to Create a Calculator Using Python 2.7.x

Python Secret #Author: ManishHacker1 Hello guys, I am back. Today we will create a simple Calculator using Python 2.7.x version. This calculator perform basic mathematical operation such as add, minus, multiply and divide two number entered by user. Source Code #ManishHacker1 #https://www.facebook.com/ManishHacker1 #https://www.facebook.com/krypsec from __future__ import division import os import time # This function adds two numbers def add(x, y): return x + y # This function subtracts two numbers def subtract(x, y): return x - y # This function multiplies two numbers def multiply(x, y): return x * y # This function divides two numbers def divide(x, y): return x / y while True: print("Select operation.") print("1.Add") print("2.Subtract") print("3.Multiply") print("4.Divide") # Take input from the user try: choice = int(raw_input("Enter choice(1/2/3/4):")) ...

How to Base64 Encode and Base64 Decode an Image and Text using Python

Python Secret #Author: ManishHacker1 Hello friends... Today my article about Encode and Decode in our text content and binary image using base64 algorithm. In this article, i will show you how to encode and decode our text content and binary image using base64 algorithm. What is Base64? Base64 is a group of similar binary to text encoding schemes that represent binary data in an ASCII string format by translating it into a radix-64 representation. The term Base64 originates from a specific MIME content transfer encoding. Full article read about base64 Source: Read about Base64 Why we use Base64? when we sent a text mail and other multimedia attachment to other person then email program use SMTP protocol and MIME(Multi Internet Mail Extensions) protocol respectively for sending mail successfully. Suppose you have a binary image file and you want to transfer whole network. But file was not received properly to other side. It contained only strange character. The r...