Giter Site home page Giter Site logo

azizkpln / rbapg_ Goto Github PK

View Code? Open in Web Editor NEW
11.0 2.0 2.0 224 KB

An Advanced Wordlist Library Written In Python For Acm114

License: GNU Lesser General Public License v3.0

Python 100.00%
brute-force bruteforce password password-generator wordlist wordlist-generator wordlistgenerator rbapg rbapg-wordlist rbapg-wordlist-generator

rbapg_'s Introduction

RBAPG

->RBAPG is the abbreviation of "Rule Based Attack Password Generator".

->This module is a wordlist generator module.

->You can generate randomly password(like crunch tool in kali linux) or you can generate a personalized password list.

MODULE USAGE

  • INSTALL The Module

pip3 install RBAPG

  • Call The Module

import RBAPG

RBAPG=RBAPG.RuleBasedAttackPasswordGenerator()

  • Set the length of password

RBAPG.setLengthOfGeneratedPassword(min2-max5)

  • Set the wordlist content

RBAPG.wordlist="name surname year etc."

  • Generate the wordlist:

RBAPG.generate_wordlist()


OPTIONAL STEPS:

  • Aziz's combination algorithm. It's based on changing some certain indexes of password in the wordlist.

RBAPG.CombineCozily()

  • Tries the every combination of each password in the wordlist.
  • Note:Not recommended for a huge content of wordlist.

RBAPG.CombineTheWords()

Example Usage

import RBAPG

RBAPG=RBAPG.RuleBasedAttackPasswordGenerator() #Set the class in a variable.

RBAPG.setLengthOfGeneratedPassword(4)           #Set the length of generated password(if you say 4,
                                                #this means the length of password can be a maximum of 4 strings long.)
                                                #Note:this function takes min 2 max 5 int value

RBAPG.setWordlistName("Aziz.txt")               #set a name for wordlist. If you leave it blank, default name will be wordlist.txt

RBAPG.wordlist="Aziz Kaplan 2001"               #set a content for wordlist. If you leave it blank, default content will be 'You haven't specified a wordlist'

#RBAPG.CombineCozily()                          #This function is optional. You don't have to write it in your codes but if you do,
                                                #it'll generate the password with combining a certain algoritgm.

#RBAPG.CombineTheWords()                        #This function is optional, tries the every combination of each word in the wordlist.
                                                #This function is not recommended for a huge content of wordlist.
                                                #Because it tries the every combination of passwords which wordlist contains.

RBAPG.generate_wordlist()                       #Generate the wordlist

Example Script:

https://github.com/AzizKpln/RBAPG-WORDLIST_GENERATOR

rbapg_'s People

Contributors

azizkpln avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

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