An open API service indexing awesome lists of open source software.

https://github.com/sepppenner/bruteforcing

Bruteforcing implementation in C#.
https://github.com/sepppenner/bruteforcing

Last synced: about 1 year ago
JSON representation

Bruteforcing implementation in C#.

Awesome Lists containing this project

README

          

Bruteforcing
====================================

Bruteforcing implementation in C#.

[![Build status](https://ci.appveyor.com/api/projects/status/gyev94dkfeka6csq?svg=true)](https://ci.appveyor.com/project/SeppPenner/bruteforcing-8op89)
[![GitHub issues](https://img.shields.io/github/issues/SeppPenner/Bruteforcing.svg)](https://github.com/SeppPenner/Bruteforcing/issues)
[![GitHub forks](https://img.shields.io/github/forks/SeppPenner/Bruteforcing.svg)](https://github.com/SeppPenner/Bruteforcing/network)
[![GitHub stars](https://img.shields.io/github/stars/SeppPenner/Bruteforcing.svg)](https://github.com/SeppPenner/Bruteforcing/stargazers)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://raw.githubusercontent.com/SeppPenner/Bruteforcing/master/License.txt)
[![Nuget](https://img.shields.io/badge/Bruteforcing-Nuget-brightgreen.svg)](https://www.nuget.org/packages/HaemmerElectronics.SeppPenner.Bruteforcing/)
[![NuGet Downloads](https://img.shields.io/nuget/dt/HaemmerElectronics.SeppPenner.Bruteforcing.svg)](https://www.nuget.org/packages/HaemmerElectronics.SeppPenner.Bruteforcing/)
[![Known Vulnerabilities](https://snyk.io/test/github/SeppPenner/Bruteforcing/badge.svg)](https://snyk.io/test/github/SeppPenner/Bruteforcing)
[![Gitter](https://img.shields.io/matrix/CSharpBruteforcing_community%3Agitter.im?server_fqdn=matrix.org)](https://matrix.to/#/#CSharpBruteforcing_community:gitter.im)
[![Blogger](https://img.shields.io/badge/Follow_me_on-blogger-orange)](https://franzhuber23.blogspot.de/)
[![Patreon](https://img.shields.io/badge/Patreon-F96854?logo=patreon&logoColor=white)](https://patreon.com/SeppPennerOpenSourceDevelopment)
[![PayPal](https://img.shields.io/badge/PayPal-00457C?logo=paypal&logoColor=white)](https://paypal.me/th070795)

## Available for
* Net 8.0
* Net 9.0

## Net Core and Net Framework latest and LTS versions
* https://dotnet.microsoft.com/download/dotnet

## Basic usage
```csharp
public void Bruteforce()
{
IBruteforcing bruteforce = new Bruteforcing("abcdefghijklmnopqrstuvwxyz0123456789", 1, 3);

foreach (string result in bruteforce)
{
var text = result;
}
}
```

The project can be found on [nuget](https://www.nuget.org/packages/HaemmerElectronics.SeppPenner.Bruteforcing/).

## Install

```bash
dotnet add package HaemmerElectronics.SeppPenner.Bruteforcing
```

Change history
--------------

See the [Changelog](https://github.com/SeppPenner/Bruteforcing/blob/master/Changelog.md).