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
| from time import ctime,sleep | |
| while True: | |
| print(ctime(),end="\r") | |
| sleep(0.1) |
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
| import threading | |
| import time | |
| from functools import wraps | |
| def thread(printd): | |
| def wrapper(function): | |
| def pw(*args, **kwargs): | |
| def process(*args, **kwargs): | |
| print("Started") | |
| function(*args, **kwargs) | |
| t=threading.Thread(target=process,args=args, kwargs=kwargs) |
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/env python | |
| # encoding=utf-8 | |
| # pip install pyaudio and pip install SpeechRecognition | |
| import speech_recognition as sr | |
| r = sr.Recognizer() | |
| with sr.Microphone() as source: | |
| print("Speak Anything :") | |
| audio = r.listen(source) | |
| try: |
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
| #pip install dnspython | |
| import re | |
| import smtplib | |
| import dns.resolver | |
| fromAddress = 'noreply@verifyemailaddress.org' | |
| regex = '^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,})$' | |
| inputAddress = "YOUR EMAIL HERE" | |
| addressToVerify = str(inputAddress) | |
| match = re.match(regex, addressToVerify) | |
| if match == None: |
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/env python | |
| # encoding=utf-8 | |
| # Any questions: lal45325@gmail.com | |
| # https://bash.ws/dnsleak | |
| import os, json, subprocess | |
| from random import randint | |
| from platform import system as system_name | |
| from subprocess import call as system_call | |
| from random import randint |
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
| import socket,signal,sys | |
| import random | |
| s=socket.socket(socket.AF_INET, socket.SOCK_DGRAM) | |
| host="127.0.0.1" | |
| port=80 | |
| bytes=random._urandom(10040) | |
| s.connect((host, port)) | |
| send=0 | |
| def signal_handler(signal, frame): | |
| print('You pressed Ctrl+C!') |
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
| import socket,sys,os | |
| host=input("host :") | |
| pfrom=input("Port from :") | |
| pto=input("Port to :") | |
| def TCP_connect(ip, port_number): | |
| TCPsock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
| TCPsock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) | |
| TCPsock.settimeout(0.5) | |
| try: | |
| TCPsock.connect((ip, port_number)) |
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
| import shodan | |
| api=shodan.Shodan(API_KEY_HERE) | |
| results = api.search('product:"Memcached" port:11211') | |
| print('Results found: {}'.format(results['total'])) | |
| for n in results["matches"]: | |
| print("http://"+n["ip_str"]+":"+str(n["port"])) |
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
| import urllib.request | |
| ''' | |
| url="https://pro.sabsongs.com/k7fh57dj648jd/bollywood/Raabta%20-%20Ik%20Vaari%20Aa.mp3" | |
| name="kk" | |
| ''' | |
| url=input("Enter Url ~$") | |
| name=input("File Name ~$") | |
| url1=url.split(".") | |
| len=len(url1) |
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
| import json, requests, sys | |
| def logo(): | |
| print("\n\tβββββββ βββββββββββ βββββββ βββββββ βββββββ βββββββ ") | |
| print("\tββββββββββββββββββββββββββββββββββββββββββββββββββββ") | |
| print("\tβββ βββββββββββββββββ βββ ββββββββββββββ βββ") | |
| print("\tβββ βββββββββββββββββ βββ ββββββββββββββ βββ") | |
| print("\tβββββββββββββββββββββββββββββββββββββββ βββββββββββ") | |
| print("\tβββββββ βββββββββββ βββββββ βββββββ βββ ββββββββββ ") | |
| print("\t=================+I am Ready+=======================") | |
| logo() |