Skip to content

Instantly share code, notes, and snippets.

@vay3t
Last active October 5, 2016 03:31
Show Gist options
  • Save vay3t/365a34cb0a2a471a7a56d7b70a244cdb to your computer and use it in GitHub Desktop.
Save vay3t/365a34cb0a2a471a7a56d7b70a244cdb to your computer and use it in GitHub Desktop.
#!/usr/bin/python
# Created by vay3t
# echo "http://www.com/shell.php" >> lista_shells.txt
import requests
obj=open("lista_shells.txt","r")
list_shells=obj.readlines()
obj.close()
for url in list_shells:
url_shell=url.rstrip()
r=requests.get(url_shell)
if r.status_code == 200:
print "[+] Live:",url_shell
else:
print "[-] Dead:",url_shell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment