Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import urllib
- import urllib2
- memory_total = 128*1024*1024*1024
- memory_max = 64*1024*1024*1024
- data = {'os_name': 'Linux', 'version': '13.37', 'opengl_version': '5.0', 'java_version': '9', 'opengl_vendor': 'nouveau', 'memory_total': str(memory_total), 'os_version': '4', 'os_architecture': 'leet', 'memory_max': str(memory_max)}
- response = urllib2.urlopen(urllib2.Request('http://snoop.minecraft.net/client', urllib.urlencode(data)))
- data = {'os_name': 'Linux', 'version': '13.37', 'java_version': '9', 'memory_total': str(memory_total), 'os_version': '4', 'os_architecture': 'leet', 'memory_max': str(memory_max), 'memory_free': str(memory_total - memory_max), 'cpu_cores': '128', 'players_current': '1337', 'players_max': '9001', 'players_seen': '9999', 'uses_auth': 'false', 'server_brand': 'hMod'}
- response = urllib2.urlopen(urllib2.Request('http://snoop.minecraft.net/server', urllib.urlencode(data)))
Advertisement
Add Comment
Please, Sign In to add comment