-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhelp_info.py
77 lines (49 loc) · 1.99 KB
/
help_info.py
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
ctftime_help = '''
`>ctftime upcoming [1-5]`
return info on a number of upcoming ctfs from ctftime.org
`>ctftime current`
return info on the currently running ctfs on ctftime.org
`>ctftime [countdown/timeleft]`
return specific times for the time until a ctf begins, or until a currently running ctf ends
`>ctftime top [year]`
display the leaderboards from ctftime from a certain year
'''
utility_help = '''
`>magicb [filetype]`
return the magicbytes/file header of a supplied filetype.
`>rot "message"`
return all 25 different possible combinations for the popular caesar cipher - use quotes for messages more than 1 word
`>b64 [encode/decode] "message"`
encode or decode in base64 - if message has spaces use quotations
`>binary [encode/decode] "message"`
encode or decode in binary - if message has spaces use quotations
`>hex [encode/decode] "message"`
encode or decode in hex - if message has spaces use quotations
`>url [encode/decode] "message"`
encode or decode based on url encoding - if message has spaces use quotations
`>reverse "message"`
reverse the supplied string - if message has spaces use quotations
`>counteach "message"`
count the occurences of each character in the supplied message - if message has spaces use quotations
`>characters "message"`
count the amount of characters in your supplied message
`>wordcount "phrase"`
count the amount of words in your supplied message
`>atbash "message"`
encode or decode in the atbash cipher - if message has spaces use quotations (encode/decode do the same thing)
`>github [user]`
get a direct link to a github profile page with your supplied user
`>twitter [user]`
get a direct link to a twitter profile page with your supplied user
`>cointoss`
get a 50/50 cointoss to make all your life's decisions
`>amicool`
for the truth.
'''
help_page = '''
`>help ctftime`
info for all ctftime commands
`>help utility`
everything else! (basically misc)
'''
src = "Under Construction"