Posts

Showing posts from August, 2017

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

Image
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

Image
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

Image
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

Image
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

Image
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

Image
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

Choose Your Weapon

Image

How to Install Pandas on Windows Operating System

Image
How to Install Pandas on Windows Operating System #Author: ManishHacker1 Hello Everyone, what is going on, welcome to a Data Analysis with Python and Pandas. Today we will learn about Pandas but first we will learn, how to install Pandas package in our Windows Operating System. Pandas is a Python module and python is a Programming language. Pandas is a python package which providing fast, flexible and expressive data structure and real world data analysis in Python. pandas is an open source, BSD-licensed library providing high-performance, easy-to-use data structures and data analysis tools for the Python programming language. How to install pandas for Python 2.7 or Python 3.x on windows? When i was first time install pandas in our windows machine. I got the following error when I tried to install pandas with pip. error: Microsoft Visual C++ 9.0 is required Before Install pandas, we must be install some other module of Python. Requirment First Install M