forked from openbullet/openbullet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
278 lines (233 loc) · 10.9 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Threading;
using CommandLine;
using CommandLine.Text;
using Extreme.Net;
using RuriLib;
using RuriLib.Models;
using RuriLib.Runner;
using RuriLib.ViewModels;
using Console = Colorful.Console;
namespace OpenBulletCLI
{
/*
* THIS IS A POC (Proof Of Concept) IMPLEMENTATION OF RuriLib IN CLI (Command Line Interface).
* The functionalities supported here don't even come close to the ones of the WPF GUI implementation.
* Feel free to contribute to the versatility of this project by adding the missing functionalities.
*
* */
class Program
{
private static string envFile = @"Settings/Environment.ini";
private static string settFile = @"Settings/RLSettings.json";
private static string outFile = "";
public static EnvironmentSettings Env { get; set; }
public static RLSettingsViewModel RLSettings { get; set; }
private static Random random = new Random();
public static RunnerViewModel Runner { get; set; }
public static bool Verbose { get; set; } = false;
public static string ProxyFile { get; set; }
public static ProxyType ProxyType { get; set; }
class Options
{
[Option('c', "config", Required = true, HelpText = "Configuration file to be processed.")]
public string ConfigFile { get; set; }
[Option('w', "wordlist", Required = true, HelpText = "Wordlist file to be processed.")]
public string WordlistFile { get; set; }
[Option('o', "output", Default = "", HelpText = "Output file for the hits.")]
public string OutputFile { get; set; }
[Option("wltype", Required = true, HelpText = "Type of the wordlist loaded (see Environment.ini for all allowed types).")]
public string WordlistType { get; set; }
[Option("useproxies", HelpText = "Enable / Disable the usage of proxies (uses config default if not set).")]
public bool? UseProxies { get; set; }
[Option('p', "proxies", Default = null, HelpText = "Proxy file to be processed.")]
public string ProxyFile { get; set; }
[Option("ptype", Default = ProxyType.Http, HelpText = "Type of proxies loaded (Http, Socks4, Socks4a, Socks5).")]
public ProxyType ProxyType { get; set; }
[Option('v', "verbose", Default = false, HelpText = "Prints all bots behaviour.")]
public bool Verbose { get; set; }
[Option('s', "skip", Default = 1, HelpText = "Number of lines to skip in the Wordlist.")]
public int Skip { get; set; }
[Option('b', "bots", Default = 0, HelpText = "Number of concurrent bots working. If not specified, the config default will be used.")]
public int BotsNumber { get; set; }
[Usage(ApplicationAlias = "OpenBulletCLI.exe")]
public static IEnumerable<Example> Examples
{
get
{
return new List<Example>() {
new Example("Simple POC CLI Implementation of RuriLib that executes a Runner.",
new Options {
ConfigFile = "config.loli",
WordlistFile = "rockyou.txt",
WordlistType = "Default",
ProxyFile = "proxies.txt",
OutputFile = "hits.txt",
ProxyType = ProxyType.Http,
UseProxies = true,
Verbose = false,
Skip = 1,
BotsNumber = 1
}
)
};
}
}
}
static void Main(string[] args)
{
// Read Environment file
Env = IOManager.ParseEnvironmentSettings(envFile);
// Read Settings file
if (!File.Exists(settFile)) IOManager.SaveSettings(settFile, new RLSettingsViewModel());
RLSettings = IOManager.LoadSettings<RLSettingsViewModel>(settFile);
// Initialize the Runner (and hook event handlers)
Runner = new RunnerViewModel(Env, RLSettings, random);
Runner.AskCustomInputs += AskCustomInputs;
Runner.DispatchAction += DispatchAction;
Runner.FoundHit += FoundHit;
Runner.MessageArrived += MessageArrived;
Runner.ReloadProxies += ReloadProxies;
Runner.SaveProgress += SaveProgress;
Runner.WorkerStatusChanged += WorkerStatusChanged;
// Parse the Options
CommandLine.Parser.Default.ParseArguments<Options>(args)
.WithParsed<Options>(opts => Run(opts))
.WithNotParsed<Options>((errs) => HandleParseError(errs));
}
private static void WorkerStatusChanged(IRunnerMessaging obj)
{
// Nothing to do here since the Title is updated every 100 ms anyways
}
private static void SaveProgress(IRunnerMessaging obj)
{
// TODO: Implement progress saving (maybe to a file)
}
private static void ReloadProxies(IRunnerMessaging obj)
{
// Set Proxies
if (ProxyFile == null) return;
var proxies = File.ReadLines(ProxyFile)
.Select(p => new CProxy(p, ProxyType))
.ToList();
List<CProxy> toAdd;
if (Runner.Config.Settings.OnlySocks) toAdd = proxies.Where(x => x.Type != ProxyType.Http).ToList();
else if (Runner.Config.Settings.OnlySsl) toAdd = proxies.Where(x => x.Type == ProxyType.Http).ToList();
else toAdd = proxies;
Runner.ProxyPool = new ProxyPool(toAdd);
}
private static void MessageArrived(IRunnerMessaging obj, LogLevel level, string message, bool prompt, int timeout)
{
// Do not print anything if no verbose argument was declared
if (!Verbose) return;
// Select the line color based on the level
Color color = Color.White;
switch (level)
{
case LogLevel.Warning:
color = Color.Orange;
break;
case LogLevel.Error:
color = Color.Tomato;
break;
}
// Print the message to the screen
Console.WriteLine($"[{DateTime.Now}][{level}] {message}", color);
}
private static void FoundHit(IRunnerMessaging obj, Hit hit)
{
// Print the hit information to the screen
Console.WriteLine($"[{DateTime.Now}][{hit.Type}][{hit.Proxy}] {hit.Data}", Color.GreenYellow);
// If an output file was specified, print them to the output file as well
if (outFile != string.Empty)
{
lock (FileLocker.GetLock(outFile))
{
File.AppendAllText(outFile, $"[{ DateTime.Now}][{hit.Type}][{hit.Proxy}] {hit.Data}{Environment.NewLine}");
}
}
}
private static void DispatchAction(IRunnerMessaging obj, Action action)
{
// No need to delegate the action to the UI thread in CLI, so just invoke it
action.Invoke();
}
private static void AskCustomInputs(IRunnerMessaging obj)
{
// Ask all the custom inputs in the console and set their values in the Runner
foreach (var input in Runner.Config.Settings.CustomInputs)
{
Console.WriteLine($"Set custom input ({input.Description}): ", Color.Aquamarine);
Runner.CustomInputs.Add(new KeyValuePair<string, string>(input.VariableName, Console.ReadLine()));
}
}
private static void Run(Options opts)
{
// Set Runner settings from the specified Options
LoadOptions(opts);
// Create the hits file
if (opts.OutputFile != string.Empty)
{
File.Create(outFile).Close();
Console.WriteLine($"The hits file is {outFile}", Color.Aquamarine);
}
// Start the runner
Runner.Start();
// Wait until it finished
while (Runner.Busy)
{
Thread.Sleep(100);
UpdateTitle();
}
// Print colored finish message
Console.Write($"Finished. Found: ");
Console.Write($"{Runner.HitCount} hits, ", Color.GreenYellow);
Console.Write($"{Runner.CustomCount} custom, ", Color.DarkOrange);
Console.WriteLine($"{Runner.ToCheckCount} to check.", Color.Aquamarine);
// Prevent console from closing until the user presses return, then close
Console.ReadLine();
Environment.Exit(0);
}
private static void HandleParseError(IEnumerable<Error> errs)
{
}
private static void LoadOptions(Options opts)
{
// Load the user-defined options into local variables or into the local Runner instance
Verbose = opts.Verbose;
outFile = opts.OutputFile;
ProxyFile = opts.ProxyFile;
ProxyType = opts.ProxyType;
Runner.SetConfig(IOManager.LoadConfig(opts.ConfigFile), false);
Runner.SetWordlist(new Wordlist(opts.WordlistFile, opts.WordlistFile, opts.WordlistType, ""));
Runner.StartingPoint = opts.Skip;
if (opts.BotsNumber <= 0) Runner.BotsAmount = Runner.Config.Settings.SuggestedBots;
else Runner.BotsAmount = opts.BotsNumber;
if (opts.ProxyFile != null && opts.UseProxies != null)
{
Runner.ProxyMode = (bool)opts.UseProxies ? ProxyMode.On : ProxyMode.Off;
}
}
private static void LogErrorAndExit(string message)
{
Console.WriteLine($"ERROR: {message}", Color.Tomato);
Console.ReadLine();
Environment.Exit(0);
}
private static void UpdateTitle()
{
Console.Title = $"OpenBulletCLI - {Runner.Master.Status} | " +
$"Config: {Runner.ConfigName} | " +
$"Wordlist {Runner.WordlistName} | " +
$"Bots {Runner.BotsAmount} | " +
$"CPM: {Runner.CPM} | " +
$"Progress: {Runner.ProgressCount} / {Runner.WordlistSize} ({Runner.Progress}%) | " +
$"Hits: {Runner.HitCount} Custom: {Runner.CustomCount} ToCheck: {Runner.ToCheckCount} Fails: {Runner.FailCount} Retries: {Runner.RetryCount} | " +
$"Proxies: {Runner.AliveProxiesCount} / {Runner.TotalProxiesCount}";
}
}
}