Skip to content

Instantly share code, notes, and snippets.

View igibek's full-sized avatar
😁
happy

Igibek Koishybayev igibek

😁
happy
View GitHub Profile
@igibek
igibek / analysis.draft.md
Created August 7, 2025 19:13 — forked from MattPD/analysis.draft.md
Program Analysis Resources (WIP draft)
@igibek
igibek / .gitignore
Last active June 24, 2024 19:40
Security specific gitignore file
# MacOS related
.DS_Store
# These files can contain private keys and/or public keys.
# If you are certain that files with these extensions in your repository does not contain any private keys,
# but only public keys, you can comment the rules out.
*.cer
*.der
*.pem
*.key
@igibek
igibek / Privilege Escalation.md
Created June 24, 2022 04:25 — forked from A1vinSmith/Privilege Escalation.md
Privilege Escalation: Systemctl (Misconfigured Permissions — sudo/SUID)
@igibek
igibek / Dockerfile
Last active July 19, 2022 15:47
My personal docker image configuration for hacking purposes
FROM ubuntu:jammy
ARG DEBIAN_FRONTEND=noninteractive
ENV PATH="${PATH}:/usr/local/go/bin:/root/go/bin"
WORKDIR /root
RUN apt-get update -y && \
apt-get autoremove -y && \
apt-get install -y \
build-essential \