# Basic MySQL brute force
nmap --script=mysql-brute <target>
# MySQL brute force with custom credentials
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 sys | |
import tldextract | |
def extract_main_domain(url): | |
return tldextract.extract(url).registered_domain | |
if __name__ == '__main__': | |
if len(sys.argv) > 1: | |
# read from file | |
with open(sys.argv[1], 'r') 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
#include <WiFi.h> | |
#include <WiFiClient.h> | |
#include <WebServer.h> | |
#include <RCSwitch.h> | |
const char* ssid = "Wifi"; | |
const char* password = "password"; | |
RCSwitch mySwitch = RCSwitch(); | |
WebServer server(80); // Initialize the WebServer object on port 80 |
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
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"os" | |
"regexp" | |
"strings" |
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
package main | |
import ( | |
"fmt" | |
"net" | |
"time" | |
) | |
func main() { | |
// Set the domain to check |
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
Dear [Employer], | |
I am writing to inform you that I wish to exercise my rights under the Working Time Directive. Specifically, I wish to confirm that I will be taking my full entitlement of paid annual leave, as well as any other entitlements such as rest breaks and rest periods. | |
I understand that the Working Time Directive is a set of EU regulations that aim to protect the health and safety of workers by establishing minimum standards for working time, including the amount of paid leave to which workers are entitled. These rights have been incorporated into UK law, and I believe it is important for me to take advantage of them in order to maintain my health and well-being. | |
I hope that this letter will serve as sufficient notification of my intention to exercise my rights under the Working Time Directive. If you have any questions or concerns, please do not hesitate to contact me. | |
Sincerely, |
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
https://10fastfingers.com/ | |
http://soccersuck.com/ | |
https://detran.mg.gov.br/ | |
https://www.smart-gsm.com/ | |
http://camvault.xyz/ | |
https://sphere.social/hello/ | |
https://www.sitejabber.com/ | |
https://musiczum.com/ | |
https://schnaeppchenfuchs.com/ | |
https://xatonline.in/ |
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
POST /test/DataTables/examples/resources/examples.php HTTP/1.1 | |
Host: 192.168.1.71 | |
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:95.0) Gecko/20100101 Firefox/95.0 | |
Accept: text/plain, */*; q=0.01 | |
Accept-Language: en-US,en;q=0.5 | |
Accept-Encoding: gzip, deflate | |
Content-Type: application/x-www-form-urlencoded; charset=UTF-8 | |
X-Requested-With: XMLHttpRequest | |
Content-Length: 35 | |
Origin: http://192.168.1.71 |
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 | |
from cryptography.fernet import Fernet | |
import argparse | |
parser = argparse.ArgumentParser() | |
parser.add_argument("-f", "--fernet", required=True,help="Fernet Key") | |
parser.add_argument("-v", "--val", required=True,help="Value to decode") | |
args = parser.parse_args() |
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
input { | |
file { | |
type => "app" | |
path => ["/home/u/archives/urlteam_2021-02-27-21-17-02/goo-gl/______.txt"] | |
start_position => "beginning" | |
sincedb_path => "/dev/null" | |
} | |
} | |