Last active
October 5, 2016 03:31
-
-
Save vay3t/365a34cb0a2a471a7a56d7b70a244cdb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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