diff options
| author | Darkelarious <darkelarious@333networks.com> | 2020-12-29 17:38:39 +0000 |
|---|---|---|
| committer | Darkelarious <darkelarious@333networks.com> | 2020-12-29 17:38:39 +0000 |
| commit | 6c9f14e8d2c10584d59a3c24127d95e447dc9ab0 (patch) | |
| tree | b0ca177ec9bfdc82bf98d0d4f5b3e07882332a78 /other/getsecure.pl | |
| parent | 47b7a453f6d7153077df6e8a534b7a8e2c7d9e11 (diff) | |
| download | Simulation-Tools-6c9f14e8d2c10584d59a3c24127d95e447dc9ab0.tar.gz Simulation-Tools-6c9f14e8d2c10584d59a3c24127d95e447dc9ab0.zip | |
gameserver simulation tool
Diffstat (limited to 'other/getsecure.pl')
| -rwxr-xr-x | other/getsecure.pl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/other/getsecure.pl b/other/getsecure.pl new file mode 100755 index 0000000..1228295 --- /dev/null +++ b/other/getsecure.pl @@ -0,0 +1,16 @@ +#!/usr/bin/perl + +use strict; +use warnings; +use Data::Dumper 'Dumper'; +$|++; + +our %S; +require "../common/supportedgames.pl"; +require "../common/auth.pl"; + +my $gamename = "ut"; +my $secure = "wookie", +my $enctype = 0; + +print Dumper get_validate_string($S{game}->{$gamename}->{key}, $secure, $enctype); |
