Skip to content

Instantly share code, notes, and snippets.

View marcostolosa's full-sized avatar
👽
Mem3nt0 Mori.

Marco 'Tr0p' Tolosa marcostolosa

👽
Mem3nt0 Mori.
View GitHub Profile
@marcostolosa
marcostolosa / block_scanners.sh
Created November 20, 2025 15:03 — forked from s0ld13rr/block_scanners.sh
Script for Blocking Censys & Shodan IPs
#!/bin/bash
echo "[+] Installing scanners block rules with logging..."
LOGTAG="SCANNERS_BLOCK"
########################################
# Censys IPv4 ranges
########################################
CENSYS_V4=(
@marcostolosa
marcostolosa / heap_bof.py
Created November 13, 2025 01:45
Heap Buffer Overflow Automatic
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from pwn import *
import sys
import os
# ==================== CONFIGURAÇÃO DO EXPLOIT ====================
class HeapExploit:
def __init__(self, binary_path, libc_path=None, remote_host=None, remote_port=None):
@marcostolosa
marcostolosa / br-list.txt
Created November 9, 2025 22:59
DNS Wordlist Sub Domain Enum
pag.
pagamento.
buy.
registro.
registra.
registrado.
registrar.
compra.
pay.
day.
@marcostolosa
marcostolosa / README.md
Created November 8, 2025 22:26
Android Regex Cheat Sheet II

Android Regex Cheat Sheet

A regex collection to help quickly perform static analysis on decompiled Android APKs. Designed for detection of security controls (root / tamper / hooking), secrets, Raw SQL usage, Native library, WebView configurations, and more.

Usage: Decompile the APK, and search using these regex patterns to quickly locate relevant code.

Security controls

Regex:

@marcostolosa
marcostolosa / NtMonitor.py
Created November 6, 2025 20:39 — forked from matterpreter/NtMonitor.py
Frida script to spawn a process and monitor Native API calls
import frida
import sys
def on_message(message, data):
if message['type'] == 'send':
print(message['payload'])
elif message['type'] == 'error':
print(message['stack'])
else:
print(message)
@marcostolosa
marcostolosa / patch.sh
Created November 6, 2025 16:41 — forked from jakeajames/patch.sh
Make h3lix work when installed not-via-Impactor. To be used with the latest h3lix.
if [ $# != 2 ]; then
echo "Usage: $0 /path/to/input_ipa /path/to/output_ipa"
exit 1
fi
if ! [ -f $1 ]; then
echo "'$1' does not exist"
exit 1
fi
@marcostolosa
marcostolosa / search-n-squeal.sh
Created October 18, 2025 09:22 — forked from scumdestroy/search-n-squeal.sh
Search'N'Squeal : Bash script that searches a list of dorks on Github and notifies if new search result has appeared
#!/bin/sh
# func to do the search w/ curl
# syntax `perform_search anti-fur_APIKEY gh_APIKEYAPIKEYAPIKEY`
perform_search() {
local search_term="$1"
local api_key="$2"
curl -s -H "Authorization: token $api_key" "https://api.github.com/search/repositories?q=$search_term" | jq '.items[].html_url'
}
WordPress: /wp-admin
Drupal: /admin
Joomla: /administrator
Magento: /admin
Concrete5: /dashboard
SilverStripe: /admin
Textpattern: /textpattern
MODX: /manager
Radiant CMS: /admin
Contao: /contao
#!/usr/bin/env python3
'''
Greetings bug-slaying brothers of the pythonian blood. This script takes my httpx output after slamming in a bunch of subdomains
and organizes it so its a bit easier to read and work with.
The HTTPX payload I use first is:
httpx -sc -cl -title -bp -server -td -ip -cname -asn -cdn -vhost -fhr | anew httpx-quicc
This script will organize the data by status code and then from smallest to largest for each status code
#!/usr/bin/env python3
'''
Get the excellent GoLinkFinder tool via github.com/0xsha/GoLinkFinder
... based on my boy here: https://github.com/GerbenJavado/LinkFinder
Anyways, this gives an excellent clean and parsed output after running GoLinkFinder on a gang of urls.
use this like:
python3 golinkfinderx.py urls.txt
'''