Skip to main content

Posts

Showing posts from 2017

How to Become a Penetration Tester with Python

Python Secret #Author: ManishHacker1 How to Become a Penetration Tester with Python There are many security books that discuss every types of tools and every types of vulnerability, where only small portion of the attacks seem to relevant to the average penetration tester. My hope is that i will evolve your security knowledge and better understand how you need to protect your own environment. Save 80.0% on select products from PAUL JONES with promo code 80ENGPCD, through 3/31 while supplies last. To become a better security professional, some of the most importtant things to do are: Learn, study and understand vulnerabilities and common security weaknesses. Practice exploiting and securing vulnerabilities in controlled environments. Perform testing in real world environments. Teach and present to the security community. Penetration tester, Attacker and Hacker interchangeably as they use the same techniques and tools to access the security of network and...

How to Create Undetectable Backdoor Using Python (For Penetration Tester)

Amazon.in Widgets Python Secret #Author: ManishHacker1 How to Create Undetectable Backdoor Using Python Hello guys, Welcome back to my next article about Paramiko module. In my previous article we have learnt about how to get SSH password by using paramiko library. Today we will create a most powerful program which uses two script. First one Server Side Second one Client Side Many times when Attacker are attack on client machine or Network, where all the server and end-client machine are fully patched, updated, fully fire-walled, updated antivirus installed, a network based IDS/IPS sensor activated and watching all the traffic, Network Firewall rules have properly configured. But you want to still gain access. How it is possible.?? Here only one trick is work if client's security guard work with you. Here we are talking about SSH protocol which is the most secure protocol connection between two remote connection machine. If attacker attach malicious code w...

How to Brute Force SSH Password Using Python

Python Secret #Author: ManishHacker1 How to Brute Force SSH Password Using Python Hello Everyone, In my previous article, we did learn how to connect window machine to linux machine using python via SSH. Today we will learn, how to get SSH password using brute force technique. What is SSH SSH is a Secure Socket Shell cryptographic network protocol which provides administrators with a secure way to access a remote computer. SSH provides a secure channel over an unsecured network in a client-server architecture, connecting a SSH client application with a SSH server. For example: If you want to remote login to another computer system that time we can use SSH. An encrypted remote terminal connection allows command line access to the device Most managed networks will use SSH for management of routers, switches and servers. SSH is simply yet complex, Some reading would be highly beneficial. How it works We use the python paramico module to connect to the ssh s...

How to Connect Client Machine via SSH using Python

Python Secret #Author: ManishHacker1 Hello everyone, Today we will learn very interesting topic how to use SSH using python. In this article we will learn about SSH and how to connect your maching via ssh using python and how to run command on it. Today we will make an automatic python script which is connect your one machine to another machine. Where do you play some interesting stuffs. Most of time I think why we are using software. Why do we not make it?? If You are computer science student expand your mind and create your own software. Python is an open source programming language and free also. Python has very huge library. So now, we concentrate on our main topic. We will use pxssh class of the pexpect module in Python which is used to to take care of some of the automation needs, like ssh and ftp etc. What is Pxssh? pxssh class used to connect our client machine.This class extends pexpect.spawn to specialize setting up SSH connections. This adds methods for login...

How to Install Kivy on Window 10

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

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

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

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