Skip to content

Instantly share code, notes, and snippets.

View tas33n's full-sized avatar
🥱
Being lazy

Tas33n tas33n

🥱
Being lazy
View GitHub Profile
@tas33n
tas33n / arend-ascii-big-text.md
Created July 7, 2024 15:01 — forked from ice1000/arend-ascii-big-text.md
A collection of ASCII art for "Arend"

A collection of ASCII art for "Arend"

... that doesn't look crazy to me.

Speed

_______                   _________
___    |________________________  /
__ /| |_ ___/ _ \_ __ \ __ / 
@tas33n
tas33n / index.php
Created November 16, 2023 04:10 — forked from beveradb/index.php
PHP dump/log details of HTTP requests received
<?php
# Log string to file whilst also printing it to screen (stdout)
# Named tee to match the core unix command - https://en.wikipedia.org/wiki/Tee_(command),
# which in turn is named after the T-splitter used in plumbing.
function tee($message, $logFilepath)
{
file_put_contents($logFilepath, $message, FILE_APPEND);
echo $message;
}
@tas33n
tas33n / GoogleDorking.md
Created September 19, 2023 10:04 — forked from ikuamike/GoogleDorking.md
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"