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
Security module for php7 and php8 - Killing bugclasses and virtual-patching the rest! Snuffleupagus is a PHP 7+ and 8+ (https://secure.php.net/) module designed to drastically raise the cost of attacks against websites, by killing entire bug classes. It also provides a powerful virtual-patching system, allowing administrator to fix specific vulnerabilities (https://www.kitploit.com/search/label/vulnerabilities) and audit suspicious behaviours without having to touch the PHP code.
Key Features
No noticeable (https://dustri.org/b/snuffleupagus-030-dentalium-elephantinum.html)performance (https://www.kitploit.com/search/label/Performance) impact Powerful yet simple to write virtual-patching rules Killing several classes of vulnerabilities Unserialize-based (https://www.owasp.org/images/9/9e/Utilizing-Code-Reuse-Or-Return-Oriented-Programming-In-PHP-Application-Exploits.pdf) code execution mail-based code execution Cookie-stealing XSS (https://en.wikipedia.org/wiki/Cross-site_scripting) File-upload based code execution Weak PRNG XXE (https://en.wikipedia.org/wiki/XML_external_entity_attack) Several hardening (https://www.kitploit.com/search/label/Hardening) features Automatic secure and samesite flag for cookies Bundled set of rules to detect post-compromissions behaviours Global strict mode (https://secure.php.net/manual/en/migration70.new-features.php#migration70.new-features.scalar-type-declarations) and type-juggling prevention Whitelisting of stream wrappers (https://secure.php.net/manual/en/intro.stream.php) Preventing writeable files execution Whitelist/blacklist for eval Enforcing TLS certificate validation when using curl (https://secure.php.net/manual/en/book.curl.php) Request dumping capability A relatively sane code base: A comprehensive (https://coveralls.io/github/jvoisin/snuffleupagus?branch=master) test suite close to 100% coverage Every commit is tested on several distributions (https://gitlab.com/jvoisin/snuffleupagus/pipelines) An clang-format-enforced code style A comprehensive documentation (https://snuffleupagus.rtfd.io/) Usage of coverity (https://scan.coverity.com/projects/jvoisin-snuffleupagus)
Download
We've got a download page (https://snuffleupagus.readthedocs.io/download.html), where you can find packages for your distribution, but you can of course just git clone this repo, or check the releases on github (https://github.com/jvoisin/snuffleupagus/releases).
Examples
We're providing various example rules (https://github.com/jvoisin/snuffleupagus/tree/master/config), that are looking like this: # Harden the `chmod` function
sp.disable_function.function("chmod").param("mode").value_r("^[0-9]{2}[67]$").drop();

# Mitigate command injection (https://www.kitploit.com/search/label/Command%20Injection) in `system`
sp.disable_function.function("system").param("command").value_r("[$|;&`\\n]").drop(); Upon violation of a rule, you should see lines like this in your logs: [snuffleupagus][0.0.0.0][disabled_function][drop] The execution has been aborted in /var/www/index.php:2, because the return value (0) of the function 'strpos' matched a rule.
Documentation
We've got a comprehensive website (https://snuffleupagus.readthedocs.io/) with all the documentation that you could possibly wish for. You can of course build it yourself (https://github.com/jvoisin/snuffleupagus/tree/master/doc).
Thanks
Many thanks to the Suhosin project (https://suhosin.org/) for being a huge source of inspiration, and to all our contributors (https://github.com/jvoisin/snuffleupagus/graphs/contributors).

Download Snuffleupagus (https://github.com/jvoisin/snuffleupagus)

___________________________
@hacking_Attack
@Hacking_Video
JUST A SECOND, IS ALL IT TAKES…

In this article i am going to talk about my first bug that i had found recently which is nothing but the broken link hijacking.Continue reading on Medium »
Read more...
Hacking Articles Tips Tricks Videos Tutorials
Photo
hacking: security in practice
Interesting spam technique on Amazon

So, the guy is an idiot, but a genius as well. Some dingus went and mass-changed thousands of listings on Amazon to a pair of shoes with a watermark to his website.

Somehow, he was able to bypass the approval requirements to submit a "new" photo, and now about 1,600 products (from my inventory alone), have been updated to this image (screenshots below)

He's an idiot because his photo was not high resolution enough to see the URL in the image...

https://imgur.com/a/igNvfW8

I figured the hacking community would appreciate some weird social engineering on a huge platform like Amazon.

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

___________________________
@hacking_Attack
@Hacking_Video
Course Club
[O’REILLY] Cloud Computing with Python Video Course

https://courseclub.me/wp-content/uploads/2021/04/784515412.jpg

https://courseclub.me/wp-content/uploads/2021/04/784515412.jpg
Get started with Cloud Computing in Python. Topics include: Multi-Cloud, Cloud Computing Service Models, Distributed Computing in the Cloud, Cloud Computing ETL Pipelines, Serverless Soutions with the Cloud, Containers in the Cloud, and Continuous Delivery for ML Engineers
Table of contents

1. “Multi Cloud Onboarding With Cloud Computing”
2. “Cloud Computing Service Models”
3. “Distributed Computing In The Cloud”
4. “Cloud Computing Build Etl Pipelines”
5. “Build Serverless Solutions With Cloud Computing”
6. “Containers In The Cloud”
7. “Continuous Delivery For Ml Engineering”
8.

Size: 2.94 GB

Download Now

https://www.oreilly.com/library/view/cloud-computing-with/60650VIDEOPAIML/.

The post [O’REILLY] Cloud Computing with Python Video Course appeared first on Course Club.

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
Nginxpwner : Tool To Look For Common Nginx Misconfigurations & Vulnerabilities

Nginxpwner is a simple tool to look for common Nginx misconfigurations and vulnerabilities. Install cd /optgit clone https://github.com/stark0de/nginxpwnercd nginxpwnerchmod +x install.sh./install.sh Usage Target tab in Burp, select host, right click, copy all URLs in this host, copy to a filecat urllist | unfurl paths | cut -d”/” -f2-3 | sort -u > /tmp/pathlistOr get the […]

The post Nginxpwner : Tool To Look For Common Nginx Misconfigurations & Vulnerabilities appeared first on Kali Linux Tutorials.

___________________________
@hacking_Attack
@Hacking_Video
2FA Bypass techniques: ___________________ 1. Response Manipulation In response if "success":false Change it to "success":true 2. Status Code Manipulation If Status Code is 4xx Try to change it to 200 OK and see if it bypass restrictions 3. 2FA Code Leakage in Response Check the response of the 2FA Code Triggering Request to see if the code is leaked. 4.JS File Analysis Rare but some JS Files may contain info about the 2FA Code, worth giving a shot 5.2FA Code Reusability Same code can be reused 6.Lack of Brute-Force Protection Possible to brute-force any length 2FA Code 7.Missing 2FA Code Integrity Validation Code for any user account can be used to bypass the 2FA 8.CSRF on 2FA Disabling No CSRF Protection on disabling 2FA, also there is no auth confirmation 9. Password Reset Disable 2FA 2FA gets disabled on password change/email change 10.Backup Code Abuse Bypassing 2FA by abusing the Backup code feature Use the above mentioned techniques to bypass Backup Code to remove/reset 2FA reset restrictions 11.Clickjacking on 2FA Disabling Page Iframing the 2FA Disabling page and social engineering victim to disable the 2FA 12.Iframing the 2FA Disabling page and social engineering victim to disable the 2FA If the session is already hijacked and there is a session timeout vulnerbility 13.Bypass 2FA with null or 000000 Enter the code 000000 or null to bypass 2FA protection. Steps:- 1. Enter “null” in 2FA code 2. Enter 000000 in 2FA code 3. Send empty code - Someone found this in grammarly 4. Open new tab in same browser and check if other API endpoints are accessible without entering 2FA 14.Google Authenticator Bypass Steps:- 1) Set-up Google Authenticator for 2FA 2) Now, 2FA is enabled 3) Go on password reset page and change your password 4) If you are website redirect you to your dashboard then 2FA (Google Authenticator) is bypassed 15. Bypassing OTP in registration forms by repeating the form submission multiple times using repeater Steps :- 1) Create an account with a non-existing phone number 2) Intercept the Request in BurpSuite 3) Send the request to the repeater and forward 4) Go to Repeater tab and change the non-existent phone number to your phone number 5) If you got an OTP to your phone, try using that OTP to register that non-existent number

@Hacking_Video

___________________________
@hacking_Attack
@Hacking_Video