Skip to content

Instantly share code, notes, and snippets.

View abuvanth's full-sized avatar

Syed abuvanth

View GitHub Profile
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=[]
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
@abuvanth
abuvanth / bug-bounty-list.txt
Created May 3, 2018 12:01 — forked from Plazmaz/bug-bounty-list.txt
A list of bug bounty urls
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/
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
123contactform
abacus
acquia
activecampaign
adobe
aerofs
airbnb
amazon
ancile
appcelerator
[-] 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
[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
{
"$schema": "http://json-schema.org/draft-06/schema#",
"$ref": "#/definitions/Welcome4",
"definitions": {
"Welcome4": {
"type": "object",
"additionalProperties": false,
"properties": {
"dht": {
"$ref": "#/definitions/Dht"
@abuvanth
abuvanth / esp32-cyberfly.py
Created October 22, 2023 04:54
Control esp32 onboard LED using Cyberfly IoT platform
from data_shipper import CyberflyDataShipper
import machine
import time
key_pair = {"publicKey":"37a720dcf056387df1d9c85cda3cbff55aa9084b6eaee8bb9fde20c684fd9418","secretKey":"f18adeab3f38b5531f6fcd9ae05d3fb0ea42f0314ea5b93f0d7114d14ff3daac"}
device_id="0afcff85-5b57-4136-aa6c-2897cc5b6b88"
client = CyberflyDataShipper(device_id=device_id, key_pair=key_pair, ssid="Abu",wifi_password="abu12345678", network_id="testnet04")
@client.on_message()
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")