Skip to content

Instantly share code, notes, and snippets.

View tedmdelacruz's full-sized avatar

Ted Mathew dela Cruz tedmdelacruz

View GitHub Profile
@tedmdelacruz
tedmdelacruz / commands.sh
Last active July 9, 2022 00:55
Personal bug bounty commands
# Download all URLs from a text file
while read line; do; wget $line; done<urls.txt
# Quick probe of an asset
function probe(){
TARGET=$1
whatweb $TARGET
gau $TARGET
echo $TARGET | waybackurls
ffuf -v -mc 200,401,500 -c -w ~/wordlists/configfiles -u $TARGET/FUZZ
{
"bootstrapped": true,
"in_process_packages":
[
],
"installed_packages":
[
"A File Icon",
"AdvancedNewFile",
"Agila Theme",
@tedmdelacruz
tedmdelacruz / Personal Linux terminal PS1
Last active May 18, 2016 14:29
Personal Linux terminal PS1
PS1='\[\e[0;92m\]\u \[\e[0;37m\]at \[\e[0;92m\]\h \[\e[0;37m\]in \[\e[0;92m\]\w \n\[\e[0;92m\]λ \[\e[0m\]'
@tedmdelacruz
tedmdelacruz / .vimrc
Created July 29, 2015 05:50
Personal simple .vimrc
set tabstop=4
set shiftwidth=4
set expandtab
set list
set listchars=tab:>-,trail:-,extends:-,precedes:-
set nobackup
autocmd BufWritePre * :%s/\s\+$//e
@tedmdelacruz
tedmdelacruz / Preferences.sublime-settings
Last active August 30, 2017 09:46
Personal Sublime Text 3 settings
{
"auto_complete": false,
"bold_folder_labels": false,
"caret_extra_bottom": 3,
"caret_extra_top": 3,
"caret_extra_width": 2,
"caret_style": "phase",
"color_scheme": "Packages/Boxy Theme/schemes/Boxy Solarized Dark.tmTheme",
"detect_indentation": true,
"detect_slow_plugins": false,
@tedmdelacruz
tedmdelacruz / Default (OSX).sublime-keymap
Last active July 31, 2016 04:30
Personal Sublime Text 3 keymap
[
{
"keys": [
"ctrl+k",
"ctrl+m"
],
"command": "toggle_minimap"
},
{
"keys": [