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
|
/* +------------------------------------+
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
* InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
* E-mail:
* <brain@chatspike.net>
* <Craig@chatspike.net>
*
* Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
*
* ---------------------------------------------------
*/
/* m_opersha256 - Originally written by Special <john@yarbbles.com>
* Updated December 2006 by Craig Edwards
*/
/* $ModDesc: Allows for SHA-256 encrypted oper passwords */
/* $ModDep: m_sha256.h */
#include "inspircd_config.h"
#include "users.h"
#include "channels.h"
#include "modules.h"
#include "inspircd.h"
#include "m_sha256.h"
class cmd_mksha256 : public command_t
{
Module* Source;
Module* SHA256Provider;
public:
cmd_mksha256 (InspIRCd* Instance, Module* Src, Module* SHA256) : command_t(Instance,"MKSHA256", 'o', 1), Source(Src), SHA256Provider(SHA256)
{
this->source = "m_opersha256.so";
syntax = "<any-text>";
}
CmdResult Handle(const char** parameters, int pcnt, userrec *user)
{
SHA256ResetRequest(Source, SHA256Provider).Send();
user->WriteServ("NOTICE %s :SHA256 hashed password for %s is %s", user->nick, parameters[0], SHA256SumRequest(Source, SHA256Provider, parameters[0]).Send() );
return CMD_SUCCESS;
}
};
class ModuleOperSHA256 : public Module
{
cmd_mksha256 *mksha256cmd;
Module* SHA256Provider;
public:
ModuleOperSHA256(InspIRCd* Me) : Module::Module(Me)
{
SHA256Provider = ServerInstance->FindModule("m_sha256.so");
if (!SHA256Provider)
throw ModuleException("Can't find m_sha256.so. Please load m_sha256.so before m_opersha256.so.");
mksha256cmd = new cmd_mksha256(ServerInstance, this, SHA256Provider);
ServerInstance->AddCommand(mksha256cmd);
}
virtual ~ModuleOperSHA256()
{
}
void Implements(char *List)
{
List[I_OnOperCompare] = 1;
}
virtual int OnOperCompare(const std::string &data, const std::string &input)
{
SHA256ResetRequest(this, SHA256Provider).Send();
if (data.length() == SHA256_BLOCK_SIZE) // If the data is as long as a hex sha256 hash, try it as that
{
if (!strcasecmp(data.c_str(), SHA256SumRequest(this, SHA256Provider, input.c_str()).Send() ))
return 1;
else
return -1;
}
return 0;
}
virtual Version GetVersion()
{
return Version(1, 1, 0, 1, VF_VENDOR, API_VERSION);
}
};
class ModuleOperSHA256Factory : public ModuleFactory
{
public:
ModuleOperSHA256Factory()
{
}
~ModuleOperSHA256Factory()
{
}
virtual Module *CreateModule(InspIRCd* Me)
{
return new ModuleOperSHA256(Me);
}
};
extern "C" void * init_module( void )
{
return new ModuleOperSHA256Factory;
}
|