Skip to content

Commit ad04058

Browse files
committedMar 16, 2019
Added md5decrypt API hash lookups.
1 parent 3f34641 commit ad04058

File tree

3 files changed

+71
-2
lines changed

3 files changed

+71
-2
lines changed
 

‎marvin/handlers.go

+13-2
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,8 @@ func handlePrivMsg(conn *irc.Conn, line *irc.Line, config *MarvinConfig, db *sql
199199
sendFn("fine, I will relay your message... here I am, brain the size of a planet...")
200200
}
201201
break
202-
case ".awgh":
203-
fallthrough
202+
case ".awgh":
203+
fallthrough
204204
case ".m":
205205
if markovChains != nil && markovChains[0] != nil {
206206
sendFn(markovChains[0].Generate(23))
@@ -209,6 +209,17 @@ func handlePrivMsg(conn *irc.Conn, line *irc.Line, config *MarvinConfig, db *sql
209209
}
210210
break
211211

212+
case ".md5", ".md4", ".sha1", ".sha256", ".sha384", ".sha512", ".ntlm":
213+
hash := args[1]
214+
hashType := args[0][1:]
215+
result, err := RemoteHashLookup(hash, hashType, config.MD5ApiUser, config.MD5ApiCode)
216+
if err == nil {
217+
sendFn(result)
218+
} else {
219+
sendFn(err.Error())
220+
}
221+
break
222+
212223
default: // The Wormhole Case : forward public messages across servers
213224
for i := range ircClients {
214225
if ircClients[i] != conn {

‎marvin/main.go

+3
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ type MarvinConfig struct {
3838
SASL bool
3939
Proxy string
4040
Channel string
41+
42+
MD5ApiUser string
43+
MD5ApiCode string
4144
}
4245

4346
// Message - Contains an answering machine message

‎marvin/md5decrypt.go

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
package main
2+
3+
import (
4+
"errors"
5+
"io/ioutil"
6+
"net/http"
7+
"strings"
8+
)
9+
10+
// ValidateHexString - returns true iff all chars in string are valid hex chars
11+
func ValidateHexString(hex string) bool {
12+
for _, c := range hex {
13+
if !strings.Contains("0123456789abcdefABCDEF", string(c)) {
14+
return false
15+
}
16+
}
17+
return true
18+
}
19+
20+
// ValidateHashType - returns true iff hashType argument is a supported type
21+
func ValidateHashType(hashType string) bool {
22+
switch hashType {
23+
case "md5", "md4", "sha1", "sha256", "sha384", "sha512", "ntlm":
24+
return true
25+
}
26+
return false
27+
}
28+
29+
// RemoteHashLookup - Looks up given hash in the md5decrypt online service
30+
func RemoteHashLookup(hash, hashType, email, code string) (string, error) {
31+
32+
if !ValidateHashType(hashType) {
33+
return "", errors.New("Invalid Hash Type")
34+
}
35+
36+
if !ValidateHexString(hash) {
37+
return "", errors.New("Invalid Hash String")
38+
}
39+
40+
if len(code) < 1 || len(email) < 1 {
41+
return "", errors.New("md5decrypt API not configured")
42+
}
43+
44+
queryString := "https://md5decrypt.net/en/Api/api.php?hash=" + hash +
45+
"&hash_type=" + hashType + "&email=" + email + "&code=" + code
46+
47+
resp, err := http.Get(queryString)
48+
if err != nil {
49+
return "", err
50+
}
51+
defer resp.Body.Close()
52+
body, err := ioutil.ReadAll(resp.Body)
53+
54+
return string(body), err
55+
}

0 commit comments

Comments
 (0)