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
[Metasploit]Upgrade Normal Shell To Meterpreter Shell

After we got access to the machine, sometimes we get Meterpreter Shell immediately after exploitation.Continue reading on Medium »
Read more...
How to Run BurpSuite API with a script?

So in my previous post, I told you how to integrate Jenkins with BurpSuite Professional. But this one is different we will run the Burp’s…Continue reading on Medium »
Read more...
hacking: security in practice
Answered call from friend but she said automated voice answered?

So my friend called me and I answered, but there was nothing coming through from her end it was just silence. She then hung up and texted me saying the call was answered by an automated voice that sounds like it was calling from a car, and she can’t recall what it said. I’m really confused as to what happened. I’m pretty sure this isn’t the right subreddit for this, but if anyone knows a better subreddit to post it to or if you know what happened please let me know. Thank you.

submitted by /u/Jogen666
[link] [comments]
Hacking on Medium
Bluetooth BrakTooth Bug causing Havoc!


What Is Bluetooth-

Continue reading on rootissh »
Hacking on Medium
How To Protect Your Accounts From Getting Hacked


In recent times, the way hackers or should I say Script Kiddies are hacking people’s social media, mails and other accounts is very…

Continue reading on Medium »
Hacking on Medium
Hacking Bill Joel Blog — TryHackMe


The intermediate level machine to hack into the Bil Joel Blog.

Continue reading on Medium »
Hacking on Medium
The Throughtek Kalay Vulnerability Is Absolutely Absurd; Here’s Why It Should Worry You


Visualize 83 million people (about the population of Canada, Oregon, and California combined) each with a baby monitor or security camera…

Continue reading on AWS in Plain English »
Hacking on Medium
Linh tinh về Oracle Business Intelligence [part 2]


Description

Continue reading on Medium »
How I found my first AEM related bug.

Hello all the amazing hackers and cyber security enthusiasts. My name is Vedant(Also known as Vegeta on Twitter😁) and I’m an aspiring bug…
Read more...
[Metasploit]Upgrade Normal Shell To Meterpreter Shell

After we got access to the machine, sometimes we get Meterpreter Shell immediately after exploitation. Meterpreter Shell offers the easiest…
Read more...
Plution is a convenient way to scan at scale for pages that are vulnerable (https://www.kitploit.com/search/label/Vulnerable) to client side (https://www.kitploit.com/search/label/Client%20Side) prototype pollution (https://www.kitploit.com/search/label/Prototype%20Pollution) via a URL payload. In the default configuration, it will use a hardcoded payload that can detect 11 of the cases documented here: https://github.com/BlackFan/client-side-prototype-pollution/tree/master/pp
What this is not
This is not a one stop shop. Prototype pollution is a complicated beast. This tool does nothing you couldn't do manually. This is not a polished bug-free super tool. It is functional but poorly coded and to be considered alpha at best.
How it works
Plution appends a payload to supplied URLs, naviguates to each URL with headless chrome (https://www.kitploit.com/search/label/Headless%20Chrome) and runs javascript on the page to verify if a prototype was successfully polluted.
how it is used
Basic scan, output only to screen:
cat URLs.txt | plution Scan with a supplied payload rather than hardcoded one:
cat URLs.txt|plution -p '__proto__.zzzc=example'
Note on custom payloads: The variable you are hoping to inject must be called or render to "zzzc". This is because 'window.zzzc' will be run on each page to verify pollution. Output:
Passing '-o' followed by a location will output only URLs of pages that were successfully polluted. Concurrency:
Pass the '-c' option to specify how many concurrent jobs are run (default is 5)
questions and answers
How do I install it?
go get -u github.com/raverrr/plution why specifically limit it to checking if window.zzzc is defined?
zzzc is a short pattern that is unlikely to already be in a prototype. If you want more freedom in regards to the javascript use https://github.com/detectify/page-fetch instead Got a more specific question?
Ask me on twitter @divadbate.

Download Plution (https://github.com/raverrr/plution)
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!Plution - Prototype Pollution Scanner Using Headless Chrome



Plution is a convenient way to scan at scale for pages that are vulnerable to client side prototype pollution via a URL payload. In the default configuration, it will use a hardcoded payload that can detect 11 of the cases documented here: https://github.com/BlackFan/client-side-prototype-pollution/tree/master/pp



What this is not

This is not a one stop shop. Prototype pollution is a complicated beast. This tool does nothing you couldn't do manually. This is not a polished bug-free super tool. It is functional but poorly coded and to be considered alpha at best.

How it works

Plution appends a payload to supplied URLs, naviguates to each URL with headless chrome and runs javascript on the page to verify if a prototype was successfully polluted.

how it is used

*
Basic scan, output only to screen:
cat URLs.txt | plution

*
Scan with a supplied payload rather than hardcoded one:
cat URLs.txt|plution -p '__proto__.zzzc=example'
Note on custom payloads: The variable you are hoping to inject must be called or render to "zzzc". This is because 'window.zzzc' will be run on each page to verify pollution.

*
Output:
Passing '-o' followed by a location will output only URLs of pages that were successfully polluted.

*
Concurrency:


*
Pass the '-c' option to specify how many concurrent jobs are run (default is 5)


questions and answers

*
How do I install it?
go get -u github.com/raverrr/plution

*
why specifically limit it to checking if window.zzzc is defined?
zzzc is a short pattern that is unlikely to already be in a prototype. If you want more freedom in regards to the javascript use https://github.com/detectify/page-fetch instead

*
Got a more specific question?
Ask me on twitter @divadbate.




Download Plution
Plution - Prototype Pollution Scanner Using Headless Chrome

Plution is a convenient way to scan at scale for pages that are vulnerable to client side prototype pollution via a URL payload. In the default configuration, it will use a hardcoded payload that can detect 11 of the cases documented here: https://github.com/BlackFan/client-side-prototype-pollution/tree/master/ppWhat this is not This is not a one stop shop. Prototype pollution is a complicated beast. This tool does nothing you couldn't do manually. This is not a polished bug-free super tool. It is functional but poorly coded and to be considered alpha at best. How it works Plution appends a payload to supplied URLs, naviguates to each URL with headless chrome and runs javascript on the page to verify if a prototype was successfully polluted. how it is used Basic scan, output only to screen: cat URLs.txt | plution Scan with a supplied payload rather than hardcoded one: cat URLs.txt|plution -p '_proto_.zzzc=example' Note on custom payloads: The variable you are hoping to inject must be called or render to "zzzc". This is because 'window.zzzc' will be run on each page to verify pollution. Output: Passing '-o' followed by a location will output only URLs of pages that were successfully polluted. Concurrency: Pass the '-c' option to specify how many concurrent jobs are run (default is 5) questions and answers How do I install it? go get -u github.com/raverrr/plution why specifically limit it to checking if window.zzzc is defined? zzzc is a short pattern that is unlikely to already be in a prototype. If you want more freedom in regards to the javascript use https://github.com/detectify/page-fetch instead Got a more specific question? Ask me on twitter @divadbate. Download Plution
Read more...
hacking: security in practice
Previous post about hardware removal to maintain privacy and annonymity explained:

I picked up a Lenovo T250 as I believe IME is not installed on those models. Is there anything else I should physically remove in order to protect my privacy and maintain annonymity while persuing an ethical hacking career? While I will be engaging in legal activities online, something you need to venture over to the dark side to get a better understanding by witnessing both sides of the coin. I'm no longer a novice, but taking these next steps is making me nervous and I have small kiddos whonrely on me. My previous career was of a network engineer and got extremely bored and fast. I plan on running Kali inside of qubesos/whonix. If there is anything in the photo I am about to post, that needs to go, please let me know and if you have the time to explain why, even better. Thank you all, such a great sub.

submitted by /u/cho--e
[link] [comments]