#Shell_UPCheck 0.2
- - É uma ferramenta escrita em python que verifica se suas shells ainda estão online, se uma
ou várias derem "not found" ela é automaticamente retirada do arquivo .txt.
Apenas usuários registrados e ativados podem ver os links., Clique aqui para se cadastrar...
- - É uma ferramenta escrita em python que verifica se suas shells ainda estão online, se uma
ou várias derem "not found" ela é automaticamente retirada do arquivo .txt.
Código:
#Created by MixLoL (Amazon Underground) #Website/Contact: http://mixlol.wordpress.com // http://twitter.com/MixLoL_ // https://twitter.com/UnderAmazon #Greetzzz: Zack, tom #Shell_UPCheck 0.2 print '''############Amazon Underground############ ############Shell_UPCheck 0.2############# ~~~~~~~https://twitter.com/UnderAmazon~~~~~~ ''' print ''' ''' import os import sys import tempfile import urllib2 good_urls = set() with open('urls.txt') as urls: #Altere o nome do arquivo se o seu for diferente. for url in urls: try: r = urllib2.urlopen(url) except urllib2.URLError as e: r = e if r.code in (200, 401): sys.stdout.write('[{}]: Up!\n'.format(url)) good_urls.add(url) elif r.code == 404: sys.stdout.write('[{}]: Not found!\n'.format(url)) else: sys.stdout.write('[{}]: Unexpected response code {}\n'.format(url, r.code)) tmp = None try: tmp = tempfile.NamedTemporaryFile(mode='w', suffix='.txt', dir='.', delete=False) for url in sorted(good_urls): tmp.write(url + "") tmp.close() os.rename(tmp.name, 'urls.txt') tmp = None finally: if tmp is not None: os.unlink(tmp.name)
Apenas usuários registrados e ativados podem ver os links., Clique aqui para se cadastrar...
Comment