Habbo Build SWF Scanner


/ Published in: Python
Save to your folder(s)

Scanner para ver facilmente todas las builds utilizadas en todos los hoteles de Habbo, el Print se podria cambiar por una variable auxiliar para grabarla en un archivo en forma de log.


Copy this code and paste it in your HTML
  1. import urllib
  2.  
  3. ############################
  4. ############################
  5. #### #### #### ####
  6. #### #### #### ####
  7. #### #### #### ####
  8. #### #### ####
  9. #### #### ####
  10. #### #### ############
  11. #### #### #### ####
  12. #### #### #### ####
  13. ############################
  14. ############################
  15.  
  16. hoteles = ["es","com","fr","fi","ch","it","se","nl","de","no","dk","com.br"]
  17.  
  18. print "Habbo Build SWF Scanner.\nBasado en la idea de Physlet\n"
  19.  
  20. for i in hoteles:
  21. url = urllib.urlopen("http://www.habbo." + i + "/")
  22. a = url.read()
  23. if i == "com.br":
  24. build = a[a.find('<meta name="build" content="') + 28 : a.find(" - br")]
  25. else:
  26. build = a[a.find('<meta name="build" content="') + 28 : a.find(" - " + i)]
  27. print "www.habbo." + i + ": " + build

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.