This file contains 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
import requests | |
from bs4 import BeautifulSoup as bs | |
import csv | |
u=int(raw_input("Enter Your starting Reg No ")) | |
n=int(raw_input("Enter Your Ending Reg No ")) | |
while u<=n: #ending Register number | |
r=requests.post('http://aucoe.annauniv.edu/cgi-bin/result/cgrade.pl',data={'regno':u}) | |
u=u+1 | |
s=bs(r.content,'html.parser') | |
a=[] |
This file contains 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
sudo apt-get install g++ -y | |
sudo apt-get install autoconf automake libtool -y | |
sudo apt-get install autoconf-archive -y | |
sudo apt-get install pkg-config -y | |
sudo apt-get install libpng12-dev -y | |
sudo apt-get install libjpeg8-dev -y | |
sudo apt-get install libtiff5-dev -y | |
sudo apt-get install zlib1g-dev -y | |
sudo apt-get install libicu-dev -y | |
sudo apt-get install libpango1.0-dev -y |
This file contains 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
http://www.123contactform.com/ | |
http://99designs.com/ | |
https://www.abacus.com/ | |
https://www.acquia.com/ | |
http://www.activecampaign.com/ | |
http://activeprospect.com/ | |
http://www.adobe.com/ | |
https://www.aerofs.com/ | |
https://www.airbnb.com/ | |
http://en.altervista.org/ |
This file contains 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
<font color="#8AE234">www.twitter.com</font> | |
<font color="#8AE234">0.twitter.com</font> | |
<font color="#8AE234">2010.twitter.com</font> | |
<font color="#8AE234">2011.twitter.com</font> | |
<font color="#8AE234">2012.twitter.com</font> | |
<font color="#8AE234">2013.twitter.com</font> | |
<font color="#8AE234">2014.twitter.com</font> | |
<font color="#8AE234">2015.twitter.com</font> | |
<font color="#8AE234">6nations.twitter.com</font> |
This file contains 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
[-] Total Unique Subdomains Found: 3105 | |
www.yahoo.com | |
uk.118800.yahoo.com | |
360.yahoo.com | |
blog.360.yahoo.com | |
de.blog.360.yahoo.com | |
blogs.360.yahoo.com | |
ca.360.yahoo.com | |
de.360.yahoo.com | |
download.360.yahoo.com |
This file contains 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
www.google.com | |
alt.aspmx.1.google.com | |
client.1.google.com | |
clients.1.google.com | |
gmail-smtp-mas.1.google.com | |
misc-anycast.1.google.com | |
104-cache-blicnet.google.com | |
119-cache-blicnet.google.com | |
216-239-45-10.google.com | |
31.google.com |
This file contains 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
123contactform | |
abacus | |
acquia | |
activecampaign | |
adobe | |
aerofs | |
airbnb | |
amazon | |
ancile | |
appcelerator |
This file contains 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
import re | |
fil=open('hhh','r') | |
fil2=open('splt.txt','a') | |
rgx=r'(https?:\/\/[a-zA-Z0-9._\-]+)(\/.+)' | |
for i in fil.readlines(): | |
m=re.search(rgx,i) | |
print(m.group(2)) #change 2 to 1 if you want hostname | |
fil2.write(m.group(2)+'\n') #change 2 to 1 if you want hostname |
This file contains 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
[Unit] | |
Description=Cyberfly python Client | |
After=network.target | |
[Service] | |
ExecStart=/usr/bin/python3 /home/cyberfly/temp_test.py #replace your script localtion | |
Restart=always | |
StandardOutput=append:/home/cyberfly/cy.log # replace cyberfly with your raspberry pi username | |
StandardError=append:/home/cyberfly/cy.log # replace cyberfly with your raspberry pi username | |
User=cyberfly #replace cyberfly with your raspberry pi username |
This file contains 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
from time import sleep | |
from machine import UART | |
import time | |
import network | |
uart = UART(2, baudrate=115200, tx=17, rx=16) | |
uart.write("AT+CGDCONT=1,\"IP\",\"jionet\"\r\n") | |
sleep(1.5) | |
uart.write("ATD*99#\r\n") |
OlderNewer