Skip to content

Instantly share code, notes, and snippets.

View dahabjr's full-sized avatar

Gem'sFinder dahabjr

  • world wide web
View GitHub Profile
@dahabjr
dahabjr / content_discovery_all.txt
Created December 2, 2024 13:21 — forked from jhaddix/content_discovery_all.txt
a masterlist of content discovery URLs and files (used most commonly with gobuster)
This file has been truncated, but you can view the full file.
`
~/
~
ים
___
__
_
---
@dahabjr
dahabjr / sqlmap-cheat-sheet.md
Created November 10, 2024 16:50 — forked from jkullick/sqlmap-cheat-sheet.md
SQLMap Cheat Sheet
# Enumerate databases
sqlmap --dbms=mysql -u "$URL" --dbs

# Enumerate tables
sqlmap --dbms=mysql -u "$URL" -D "$DATABASE" --tables

# Dump table data
sqlmap --dbms=mysql -u "$URL" -D "$DATABASE" -T "$TABLE" --dump
@dahabjr
dahabjr / host_getter.svg
Created February 21, 2024 18:15 — forked from jakekarnes42/host_getter.svg
An SVG "image" that uses an XXE attack to embed the hostname file of whichever system processes it into the image itself
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@dahabjr
dahabjr / install.sh
Created January 14, 2024 06:51 — forked from miguelmota/install.sh
Linux install hydra
git clone https://github.com/vanhauser-thc/thc-hydra.git
cd thc-hydra/
./configure
make
sudo make install
@dahabjr
dahabjr / .bashrc
Created December 28, 2023 08:11
Parrot Os bash theme for ubuntu
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines in the history. See bash(1) for more options
# ... or force ignoredups and ignorespace
HISTCONTROL=ignoredups:ignorespace