Hacking Articles Tips Tricks Videos Tutorials
468 subscribers
65.9K photos
15 videos
157 files
132K links
Exploit
Pentesting
Hacking
Red Team
Blue Team
Kali Linux
Bug Bounty
Black Hat
Cyber security etc

@Hacking_Video
@Hacking_attack
Download Telegram
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Hacktivism — A growing threat

https://cdn-images-1.medium.com/max/600/1*r8-czTZQaShexU-8f5g5sg.png
Hacktivism is often associated with the term Cyberwar, and is sometimes associated with “Cyber Terror”. A DIR server is an Internet…

Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Belkasoft CTF4 (Kidnapping Case)

https://cdn-images-1.medium.com/max/640/0*1DZnje4tXpZUqA-c.png
In this article, we’ll look at how to solve the CTF (Capture The Flag) of a Kidnapping Case that happened somewhere of a school-going boy…

Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Dina:1.0.1 vulnhub walkthrough

https://cdn-images-1.medium.com/max/640/0*RjAoQcuMhV1GuTra.jpg
Dina:1.0.1[vulnhub]→ walkthrough
We will be looking at how I can solved dina:1.0.1 machine. In this machine we find
flag.txt file and root…

Continue reading on Medium »
Dalam proses penetration atau hacking ada beberapa step/workflow yang biasa dilakukan oleh para penetration tester atau hacker sebelum…Continue reading on Medium » (https://medium.com/@cakraadi/msa-weekly-4-cara-mendapatakn-subdomain-menggunakan-subfinder-sudomy-26ecc517779f?source=rss------bug_bounty-5)
MSA Weekly 4 — “Cara Mendapatakn Subdomain Menggunakan Subfinder & Sudomy

Dalam proses penetration atau hacking ada beberapa step/workflow yang biasa dilakukan oleh para penetration tester atau hacker sebelum…Continue reading on Medium »
Read more...
A Story Of My First Bug Bounty

Hello everyone,Continue reading on Medium »
Read more...
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
CRLFsuite : Fast CRLF Injection Scanning Tool

CRLFsuite is a fast tool specially designed to scan CRLF injection.

Installation

$ git clone https://github.com/Nefcore/CRLFsuite.git
$ cd CRLFsuite
$ sudo python3 setup.py install
$ crlfsuite -h

Features

https://s.w.org/images/core/emoji/14.0.0/72x72/2714.png Single URL scanning

https://s.w.org/images/core/emoji/14.0.0/72x72/2714.png Multiple URL scanning

https://s.w.org/images/core/emoji/14.0.0/72x72/2714.png WAF detection

https://s.w.org/images/core/emoji/14.0.0/72x72/2714.png XSS through CRLF injection

https://s.w.org/images/core/emoji/14.0.0/72x72/2714.png Stdin supported

https://s.w.org/images/core/emoji/14.0.0/72x72/2714.png GET & POST method supported

https://s.w.org/images/core/emoji/14.0.0/72x72/2714.png Concurrency

https://s.w.org/images/core/emoji/14.0.0/72x72/2714.png Powerful payloads (WAF evasion payloads are also included)

https://s.w.org/images/core/emoji/14.0.0/72x72/2714.png Fast and efficient scanning with negligible false-positive

Arguments
ArgumentDiscription-u/–urltarget URL-i/–import-urlsImport targets from the file-s/–stdinScan URLs from stdin-o/–outputPath for output file-m/–methodRequest method (GET/POST)-d/–dataPOST data-uA/–user-agentSpecify User-Agent-To/–timeoutConnection timeout-c/–cookiesSpecify cookies-v/–verifyVerify SSL cert.-t/–threadsNumber of concurrent threads-sB/–skip-bannerSkip banner and args info-sP/–show-payloadsShow all the available CRLF payloads
Usage

Single URL scanning:

$ crlfsuite -u “http://testphp.vulnweb.com

Multiple URLs scanning:

$ crlfsuite -i targets.txt

from stdin:

$ subfinder -d google.com -silent | httpx -silent | crlfsuite -s

Specifying cookies :

$ crlfsuite -u “http://testphp.vulnweb.com” –cookies “key=val; newkey=newval”

Using POST method:

$ crlfsuite -i targets.txt -m POST -d “key=val&newkey=newval”
Download