Krenair

MC stats snooping fake info

May 24th, 2012
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.90 KB | None | 0 0
  1. import urllib
  2. import urllib2
  3.  
  4. memory_total = 128*1024*1024*1024
  5. memory_max = 64*1024*1024*1024
  6.  
  7. 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)}
  8. response = urllib2.urlopen(urllib2.Request('http://snoop.minecraft.net/client', urllib.urlencode(data)))
  9.  
  10. 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'}
  11. response = urllib2.urlopen(urllib2.Request('http://snoop.minecraft.net/server', urllib.urlencode(data)))
Advertisement
Add Comment
Please, Sign In to add comment