forked from kumpulanremaja/Internet-Gratis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServerInfo.py
More file actions
26 lines (23 loc) · 756 Bytes
/
ServerInfo.py
File metadata and controls
26 lines (23 loc) · 756 Bytes
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
#ServerInfo.py
class Info:
def __init__(self, get):
self.get = get
def get_info(self):
if self.get.lower() == 'uid':
return '0x00000000'
if self.get.lower() == 'heap':
return '0x8000-0x1000000'
if self.get.lower() == 'name':
return 'simpleserver'
if self.get.lower() == 'about':
return 'linux version'
if self.get.lower() == 'ver':
return '1.0.0b'
if self.get.lower() == 'date':
return '07-09-2014'
if self.get.lower() == 'by':
return 'inunxlabs'
if self.get.lower() == 'mail':
return 'inunxlabs@gmail.com'
if self.get.lower() == 'remode':
return 'Sane4tsu'