GithubHelp home page GithubHelp logo

problemsolvewithridoy / wordlist-using-python Goto Github PK

View Code? Open in Web Editor NEW
3.0 1.0 0.0 14.67 MB

The "Wordlist using python" project is a Python script that generates a list of words that can be used for various purposes, such as password cracking, dictionary attacks, or brute-force attacks. The script is designed to generate a wordlist based on user-specified parameters, such as word length, character set, and prefix/suffix options.

License: MIT License

Python 100.00%
python-word-dictonary python-words wordlist wordlist-generator wordlist-maker wordlist-processing wordlistgenerator make-wordlist python-wordlist

wordlist-using-python's Introduction

Wordlist using python

The "Wordlist using python" project is a Python script that generates a list of words that can be used for various purposes, such as password cracking, dictionary attacks, or brute-force attacks. The script is designed to generate a wordlist based on user-specified parameters, such as word length, character set, and prefix/suffix options. The generated wordlist can be saved in a text file for future use.

The script is written in Python programming language and uses built-in Python libraries such as itertools and string. It is a beginner-friendly project that can be useful for anyone interested in learning Python programming and ethical hacking techniques. The project can also be extended to add more features, such as custom wordlists or advanced pattern matching algorithms. The code is available on Github and can be easily downloaded and customized to meet specific requirements.

let's start...............

To make this project you need to follow this step:-

Installation

Install package with pip

  pip install more-itertools

Deployment

To deploy this project run

from string import *
from itertools import product

value = ascii_letters + digits + punctuation

count = 0

for i in range(3,4):
    for j in product(value, repeat = i):
        count += 1
        word = "".join(j)
        f = open("YourFileName.txt", "a")
        try:
            f.write(word)
            f.write("\n")
            print(f"\r{count} password created", end= "")
            if len(word) == 5:
                break
        except:
            print("can't able to create password")


print(f"{count} password is created")

You can follow me

Facebook:- https://www.facebook.com/problemsolvewithridoy/

Linkedin:- https://www.linkedin.com/in/ridoyhossain/

YouTube:- https://www.youtube.com/@problemsolvewithridoy

Gmail:- [email protected]

If you have any confusion, please feel free to contact me. Thank you

wordlist-using-python's People

Contributors

problemsolvewithridoy avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.