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

@Hacking_Video
@Hacking_attack
Download Telegram
OTP bypass with response manipulation.

Greetings, I wanted to share with you the OTP Bypass vulnerability that I found in a VDP.Continue reading on Medium »
Read more...
Greetings, I wanted to share with you the OTP Bypass vulnerability that I found in a VDP.Continue reading on Medium » (https://ertugrull.medium.com/otp-bypass-with-response-manipulation-12646c6d7f33?source=rss------bug_bounty-5)
hacking: security in practice
What are some of your early security mistakes?

For people who have built websites, apps, or other projects that required security, what mistakes did you make early on that you look back on and laugh about?

For me, the first thing that comes to mind is my forgetting to think about SQL injection in an app I made for a class project. Halfway through presenting it to the class, it was already hacked, and another kid in the class made themself an admin account.

submitted by /u/dragonfiremalus
[link] [comments]
hacking: security in practice
Can virtualbox interfere with using hashcat with GPU ?

I’ve downloaded the relevant drivers for my GPU but im still unable to see it on kali, is it possible that the reason is that i use virtualbox?

If someone managed to run hashcat using his GPU on a kali in virtualbox i would really like to know

submitted by /u/guykehat
[link] [comments]
Cracken - A Fast Password Wordlist Generator, Smartlist Creation And Password Hybrid-Mask Analysis Tool
http://www.kitploit.com/2021/11/cracken-fast-password-wordlist.html
Cracken is a fast password wordlist generator, Smartlist creation and password hybrid-mask analysis tool written in pure safe Rust (more on talk/ (https://github.com/shmuelamar/cracken/blob/main/talk)). Inspired by great tools like maskprocessor (https://hashcat.net/wiki/doku.php?id=maskprocessor), hashcat (https://hashcat.net/), Crunch (https://github.com/crunchsec/crunch) and珞 HuggingFace's tokenizers (https://github.com/huggingface/tokenizers).
What? Why? Woot?? At DeepSec2021 (https://deepsec.net/speaker.html#PSLOT517) we presented a new method for analysing passwords as Hybrid-Masks exploiting (https://www.kitploit.com/search/label/Exploiting) common substrings in passwords by utilizing NLP tokenizers (more info on talk/ (https://github.com/shmuelamar/cracken/blob/main/talk)). Our method splits a password into its subwords instead of just a characters mask. HelloWorld123! splitted into ['Hello', 'World', '123!'] as these three subwords are very common in other passwords. Hybrid Masks & Smartlists Smartlists - Compact & representative subword lists created from passwords by utilizing NLP tokenizers Hybrid-Mask - A representation of a password as a combination of wordlists & characters (e.g. ?w1?w2?l?d) Analyzing RockYou Passwords (https://www.kitploit.com/search/label/Passwords) with Smartlists & Hybrid-Masks:
full table here (https://github.com/shmuelamar/cracken/blob/main/talk/rockyou_hybrid-masks_counts.csv) Cracken
is used for: Generating Hybrid-Masks very VERY FAST 隸 (see performance (https://github.com/shmuelamar/cracken#performance) section) Building Smartlists - compact & representative list of subwords from given passwords files (using 珞 HuggingFace's tokenizers (https://github.com/huggingface/tokenizers)) Analyzing passwords for their Hybrid-Masks - building statistics for better password candidates (again very fast) Possible workflows with Cracken: Simple: Generate wordlist candidates from a hybrid mask - e.g. cracken -w rockyou.txt -w 100-most-common.txt '?w1?w2?d?d?d?d?s' You can pipe the passwords Cracken generates into hashcat, john or your favorite password cracker Advanced: Create a Smartlist from existing passwords - cracken create Analyze a passwords list of plaintext passwords - cracken entropy use most frequent Hybrid-Masks to generate password candidates fast - cracken generate -i hybrid-masks.txt For more details see Usage (https://github.com/shmuelamar/cracken#usage-info) section Getting Started download (linux only currently): latest release (https://github.com/shmuelamar/cracken/releases) (https://github.com/shmuelamar/cracken/releases) for more installation options see installation section run Cracken: generate all words of length 8 starting with uppercase followed by 6 lowercase chars and then a digit: $ cracken -o pwdz.lst '?u?l?l?l?l?l?l?d' generate words from two wordlists with year suffix (1000-2999) $ cracken --wordlist firstnames.txt --wordlist lastnames.lst --charset '12' '?w1?w2?1?d?d?d' create a Smartlist of size 50k from subwords extracted from rockyou.txt $ cracken create -f rockyou.txt -m 50000 --smartlist smart.lst estimate the entropy of hybrid mask of the password HelloWorld123! using a smartlist $ cracken entropy -f smart.lst 'HelloWorld123!'

hybrid-min-split: ["hello", "world1", "2", "3", "!"]
hybrid-mask: ?w1?w1?d?d?s
hybrid-min-entropy: 42.73
--
charset-mask: ?l?l?l?l?l?l?l?l?l?l?d?d?d?s
charset-mask-entropy: 61.97 Performance As of writing this, Cracken is probably the world's fastest wordlist generator: