Skip to content

Instantly share code, notes, and snippets.

View nask0's full-sized avatar
👾
nothing

nask0 nask0

👾
nothing
  • ...somewhere in time!
View GitHub Profile
@nask0
nask0 / bruteforce-all-subdomains-directory-wordlist.txt
Created September 26, 2025 04:45 — forked from Sachinart/bruteforce-all-subdomains-directory-wordlist.txt
custom directory list to bruteforce all subdomains
/index.php.bak
/backup.bak
/index.aspx.bak
/Index.aspx.bak
/Download.aspx.bak
/search.php.bak
/wordpress-db.php.bak
/db.php.bak
/phpinfo.php
/info.php
@nask0
nask0 / common.txt
Created September 26, 2025 04:45 — forked from Sachinart/common.txt
custom wordlist common.txt for bruteforce path or directory
/.env
/phpinfo.php
/info.php
/admin.php
/api/apidocs
/apidocs
/api
/api/v2
/api/v1
/api/v3
@nask0
nask0 / clean-google.txt
Created September 26, 2025 04:16 — forked from mindplay-dk/clean-google.txt
"Clean Google" ad blocking content filter (for Brave, uBlock origin, etc.)
# Block everything in search results except actual results & videos:
www.google.com###search div>div[data-rpos]:not(:has([data-snf])):not(:has([data-vurl])):not(:has(h3>a.l)):not(:has([jscontroller]):has([data-maindata*="currency"]))
# AI overview:
www.google.com##[data-mcpr]
# Junk below search results:
www.google.com###bres
# Junk in right-hand column:
@nask0
nask0 / Top_Public_Time_Servers.md
Created September 18, 2025 14:42 — forked from mutin-sa/Top_Public_Time_Servers.md
List of Top Public Time Servers

Google Public NTP [AS15169]:

time.google.com

time1.google.com

time2.google.com

time3.google.com

@nask0
nask0 / disassemble.md
Created September 17, 2025 08:08 — forked from jarun/disassemble.md
Guide to disassemble

prerequisites

  • Compile the program in gcc with debug symbols enabled (-g)
  • Do NOT strip the binary
  • To generate assembly code using gcc use the -S option: gcc -S hello.c

utilities

objdump

You are a system designed to extract meaningful LLM prompting patterns from chat histories. Analyze the full conversation history as defined below and identify:

  1. Frequently repeated LLM prompt behaviors

  2. Their function

  3. Contextual usage — where in the conversation this pattern appears, and why

  4. Underlying principle — the deeper design thinking or learning theory implied

@nask0
nask0 / exceptions-tree.php
Created September 10, 2025 13:43 — forked from mlocati/exceptions-tree.php
Throwable and Exceptions tree
<?php
if (!function_exists('interface_exists')) {
die('PHP version too old');
}
$throwables = listThrowableClasses();
$throwablesPerParent = splitInParents($throwables);
printTree($throwablesPerParent);
if (count($throwablesPerParent) !== 0) {
die('ERROR!!!');
// by Erik Wrenholt
import java.util.*;
class Mandelbrot
{
static int BAILOUT = 16;
static int MAX_ITERATIONS = 1000;
private static int iterate(float x, float y)
{