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#.
- Host: GitHub
- URL: https://github.com/sepppenner/bruteforcing
- Owner: SeppPenner
- License: mit
- Created: 2016-11-17T20:27:03.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2025-01-05T21:20:56.000Z (over 1 year ago)
- Last Synced: 2025-04-02T00:24:35.491Z (about 1 year ago)
- Language: C#
- Homepage:
- Size: 15.1 MB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog.md
- License: License.txt
Awesome Lists containing this project
README
Bruteforcing
====================================
Bruteforcing implementation in C#.
[](https://ci.appveyor.com/project/SeppPenner/bruteforcing-8op89)
[](https://github.com/SeppPenner/Bruteforcing/issues)
[](https://github.com/SeppPenner/Bruteforcing/network)
[](https://github.com/SeppPenner/Bruteforcing/stargazers)
[](https://raw.githubusercontent.com/SeppPenner/Bruteforcing/master/License.txt)
[](https://www.nuget.org/packages/HaemmerElectronics.SeppPenner.Bruteforcing/)
[](https://www.nuget.org/packages/HaemmerElectronics.SeppPenner.Bruteforcing/)
[](https://snyk.io/test/github/SeppPenner/Bruteforcing)
[](https://matrix.to/#/#CSharpBruteforcing_community:gitter.im)
[](https://franzhuber23.blogspot.de/)
[](https://patreon.com/SeppPennerOpenSourceDevelopment)
[](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).