Hacking Articles Tips Tricks Videos Tutorials
468 subscribers
65.8K 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
What you doing wrong when you fail at bug bounties?

Hi all, I hope all is well. I have 3+ years bug bounty experience so I want to talk about the common mistakes when doing bug bounty…Continue reading on Medium »
Read more...
Dark Reading: Attacks/Breaches
When Security Meets Development: The DevSecOps Conundrum

The DevSecOps journey is well worth undertaking because it can improve communication, speed up development, and ensure quality products.
hacking: security in practice
Resources/Advices to transition into Network Security

Title says it all. I am a experienced Web Security Engineer and now o want to transition into Network Security and learn it. Can you guys give me advice on how to approach this filed and anything I need to keep in mind

submitted by /u/CoolNCocky
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
A proof-of-concept WordPress plugin fuzzer used in the research described in https://kazet.cc/2022/02/03/fuzzing-wordpress-plugins.html that helped to discover more than 140 vulnerablities in WordPress plugins installed on almost 15 million sites. If you want to continue the research, start with less popular plugins - if a plugin achieved at least 10k active installs between October 2021 and January 2022, I have most probably looked at the fuzzer reports (and most focus has been put on plugins having at least 20k active installs). Because there is a lot of randomness in how fuzzer works, some vulnerabilities (https://www.kitploit.com/search/label/vulnerabilities) in these plugins remain undiscovered - but fewer ones. Fuzzer reports contain a lot of false positives - most of them don't indicate a vulnerability. After seeing a report, first analyze whether the behavior you're observing is indeed a vulnerability or a false positive. Don't spam WPScan/vendors with raw fuzzer reports - provide a PoC exploit instead.
Examples For obvious reasons, the examples will contain only vulnerabilities that have already been fixed. Arbitrary file read Let's assume you are fuzzing responsive-vector-maps in version 6.4.0: ./bin/fuzz_plugin responsive-vector-maps --version 6.4.0 (to fuzz the latest version, just skip --version). After the fuzzing finishes (which would take 10-30 minutes for this plugin) you can call: ./bin/print_findings data/plugin_fuzz_results/ You will see, among others:

___________________________
@hacking_Attack
@Hacking_Video
. That means that the fuzzer detected executing fopen() on a known payload. Most of the payloads contain the word GARLIC in them to facilitate automatic detection in output. You may see or configure them in docker_image/magic_payloads.php. Then, you may browse the source code and see that indeed the wp_ajax_rvm_import_markers endpoint uses the file content to render output, thus allowing you to read arbitrary files on the server: CVE-2021-24947 (https://wpscan.com/vulnerability/c6bb12b1-6961-40bd-9110-edfa9ee41a18). What you see in white is a crash considered interesting (you may modify them or add new ones in crash_detectors.py). Green is the context. In blue you see the report file name (with plugin name), plugin popularity and endpoint name (here: the ajax action name). The data in yellow are what payloads were injected into what variables. Reflected XSS Let's assume you are fuzzing page-builder-add in version 1.4.9.4: ./bin/fuzz_plugin page-builder-add --version 1.4.9.4 After printing the results, you will see known payload echoed back:

___________________________
@hacking_Attack
@Hacking_Video
. You can then manually test whether indeed this place (remember: in blue you have the endpoint name, here: the menu page name) is vulnerable to XSS. In this case, it is: CVE-2021-25067 (https://wpscan.com/vulnerability/365007f0-61ac-4e81-8a3a-3a068f2c84bc). Option update leading to stored XSS ./bin/fuzz_plugin duplicate-page-or-post --version 1.4.6 After printing the results, you will see update_option being called:

___________________________
@hacking_Attack
@Hacking_Video