Skip to content

Instantly share code, notes, and snippets.

View dhaneshsivasamy07's full-sized avatar
:shipit:
Focusing

Dhanesh Sivasamy dhaneshsivasamy07

:shipit:
Focusing
View GitHub Profile
@dhaneshsivasamy07
dhaneshsivasamy07 / ret2csu.md
Created December 31, 2021 13:47 — forked from kaftejiman/ret2csu.md
ret2csu exploitation technique ROP pwn

ret2csu

I wanted to make a clean and simple explanation of ret2csu exploitation technique as I didnt get it easily with the ressources I found on google. As far as my understanding goes. You should take it with a grain of salt.

Tests carried on a AMD64 Linux Ubuntu.

Table of Contents

@dhaneshsivasamy07
dhaneshsivasamy07 / dracule.colorscheme
Created December 30, 2021 09:43
Dracula look a like colorscheme for qterminal
[Background]
Bold=false
Color=40,42,54
[BackgroundIntense]
Bold=false
Color=68,71,90
[Color0]
Bold=false

radare2

load without any analysis (file header at offset 0x0): r2 -n /path/to/file

  • analyze all: aa
  • show sections: iS
  • list functions: afl
  • list imports: ii
  • list entrypoints: ie
  • seek to function: s sym.main
@dhaneshsivasamy07
dhaneshsivasamy07 / resources.md
Created June 10, 2021 07:36 — forked from muff-in/resources.md
A curated list of Assembly Language / Reversing / Malware Analysis -resources
@dhaneshsivasamy07
dhaneshsivasamy07 / SSH-GIT
Created March 10, 2021 14:59
A quick note on using github with ssh
- Generate a ssh key
`ssh -t rsa -C <your-email>`
- Add the generated public ssh key to the SSH and GPG keys in the profile settings
- Check the configuration with
```bash
ssh -T git@github.com #might ask for adding in the trusted hosts
# output should be: Hi <github username> ! You've successfully authenticated, but GitHub does not provide shell access.
```
- Clone a repository with git
`git clone git@github.com:<user-name>/<repo>.git`
@dhaneshsivasamy07
dhaneshsivasamy07 / kerberos_attacks_cheatsheet.md
Created December 6, 2020 13:41 — forked from xct/kerberos_attacks_cheatsheet.md
A cheatsheet with commands that can be used to perform kerberos attacks

Kerberos cheatsheet

Bruteforcing

With kerbrute.py:

python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>

With Rubeus version with brute module: