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
| // YouTube Music - Dislike all songs from an artist | |
| // 1. Ve a la página del artista en YouTube Music | |
| // 2. Haz clic en "Songs" / "Canciones" para ver todas las canciones | |
| // 3. Haz scroll hasta cargar todas las canciones que quieras | |
| // 4. Abre la consola del navegador (F12 > Console) | |
| // 5. Pega y ejecuta este script | |
| (async () => { | |
| const DELAY_MS = 800; // Delay entre acciones para no saturar |
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
| #!/bin/bash | |
| if [ $# -ne 1 ]; then | |
| echo "Usage $0 <binary>" | |
| exit 1 | |
| fi | |
| BIN="$1" | |
| if [ ! -f "$BIN" ]; then |
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 boofuzz import * | |
| import sys | |
| host = sys.argv[1] | |
| port = int(sys.argv[2]) | |
| #def banner(target, fuzz_data_logger, session, *args, **kwargs): | |
| # target.send(b"SSH-2.0-OpenSSH_7.9p1 Debian-10+deb10u2\x0d\x0a") | |
| # data = target.recv(1024) | |
| # print("RECV: %s" % str(data)) |
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 boofuzz import * | |
| import sys | |
| host = sys.argv[1] | |
| port = int(sys.argv[2]) | |
| session = Session(target=Target(SocketConnection(host, int(port)))) | |
| s_initialize(name="request") | |
| with s_block("verb"): |
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 pwn import * | |
| context(arch = 'amd64', os = 'linux') | |
| elf = ELF("./write4") | |
| p = process(elf.path) | |
| #p = gdb.debug("/home/manu/Challenges/write4", ''' | |
| #break main |
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 | |
| from bs4 import BeautifulSoup | |
| user_agent = { 'User-Agent' : 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko/20100101 Firefox/25.0' } | |
| r = requests.get("url", verify=False, headers=user_agent) | |
| soup = BeautifulSoup(r.text, "html5lib") | |
| print soup.find_all('a') |
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 pwn import * | |
| ''' | |
| // File: bypass-protections.c | |
| // gcc bypass-protections.c -o bypass-protections | |
| #include <stdio.h> | |
| #include <stdlib.h> |
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 pwn import * | |
| ''' | |
| // Raspberry pi: | |
| // File: leak.c | |
| // gcc leak.c -o leak | |
| // socat -v tcp-listen:4444,reuseaddr,fork exec:"./leak" | |
| #include <stdio.h> |
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 pwn import * | |
| ''' | |
| // File: leak.c | |
| // gcc leak.c -o leak | |
| #include <stdio.h> | |
| int main(int argc, char *argv[]){ | |
| char buff[64]; |
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 pwn import * | |
| ''' | |
| // File: bypass-canary.c | |
| // $ gcc bypass-canary.c -o bypass-canary | |
| #include <stdio.h> | |
| #include <stdlib.h> |
NewerOlder