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/python3 | |
import json | |
from Wappalyzer import Wappalyzer, WebPage | |
from os import system | |
import warnings | |
import time,sys | |
import argparse | |
def techno(url): | |
start = time.time() | |
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
<?php | |
print " | |
_______ ________ ___ ___ ___ __ ____ ___ ____ __ _ _ | |
/ ____\ \ / / ____| |__ \ / _ \__ \/_ | |___ \ / _ \___ \/_ | || | | |
| | \ \ / /| |__ ______ ) | | | | ) || |______ __) | (_) |__) || | || |_ | |
| | \ \/ / | __|______/ /| | | |/ / | |______|__ < > _ <|__ < | |__ _| | |
| |____ \ / | |____ / /_| |_| / /_ | | ___) | (_) |__) || | | | | |
\_____| \/ |______| |____|\___/____||_| |____/ \___/____/ |_| |_| | |
Author: @powerexploit |
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 | |
import re | |
import requests | |
import argparse | |
import sys | |
def upi_grabber(url): | |
response= requests.get('%s' %(url)).text | |
UPI_ID = re.findall(r'[a-zA-Z0-9.\-_]{2,256}@[a-zA-Z]{2,64}',response) | |
print(UPI_ID) |
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 requests | |
import argparse | |
from colorama import Fore | |
def oni(address): | |
proxies = { | |
'http': 'socks5h://127.0.0.1:9050', | |
'https': 'socks5h://127.0.0.1:9050' | |
} | |
r = requests.get("http://%s" %(address), proxies=proxies).text | |
with open('Onion_site.html', 'w') as f: |
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 | |
# Hackthebox invite code generator | |
import requests | |
import base64 | |
import json | |
from os import system | |
system('tput setaf 9') | |
print(""" |
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
#TTlOs.psm1 | |
#< | |
# Ping scanner with os detection according with ttl value. | |
# Test-connection is a type of function in powershell uses as a ping command. | |
#> | |
# | |
function PsPing | |
{ | |
param($ip) | |
Process |
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/python3 | |
import smtplib | |
import getpass | |
smtpobj = smtplib.SMTP('smtp.gmail.com',587) | |
my_email = input("What is your gmail?:") | |
my_passw = getpass.getpass("Enter the password:") | |
smtpobj.starttls() | |
#This step enables encryption(TLS Encryption) for your connection. | |
smtpobj.login(my_email,my_passw) | |
#this will help user to logged in gmail account |
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 | |
#Robot.py | |
from scapy.all import * | |
from pyfiglet import Figlet | |
logo = Figlet(font='graffiti') | |
print(logo.renderText('%R%\nfs0c131y..%')) | |
ip = input("Enter the ip address or url:\n") | |
port = int(input("Enter the port number:\n")) | |
def checkhost(): | |
ping = IP(dst=ip)/ICMP() |
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/python3 | |
#pingscanner.py | |
import sys | |
from scapy.all import * | |
ip = sys.argv[1] # command line argument | |
icmp = IP(dst=ip)/ICMP() | |
#icmp = IP(dst=ip)/TCP() | |
#IP defines the protocol for IP addresses | |
#dst is the destination IP address | |
#TCP defines the protocol for the ports |
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/python3 | |
#mass_mailer.py -> mass mailing script | |
import smtplib | |
def mass(): | |
smtpobj = smtplib.SMTP('smtp.gmail.com',587) | |
#smtpobj is a SMTP object that represents a connection to an SMTP mail server and has methods for sending emails. | |
my_email = input("What is your gmail?:") | |
my_passw = input("Enter the password:") | |
recip_mail = input("What is the recipient gmail?:") | |
message = input("Enter the message that you want to mail:\n") |
NewerOlder