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
Hacking Articles Tips Tricks Videos Tutorials
Photo
hacking: security in practice
What password manager do you use? (PART 2)

Hello! I have recently made a poll about this on r/cybersecurity. Now we are gathering a broader picture!
I had lots of inquiries about apparently popular password managers (and the "other"-option) missing. Now, being all the more interested, I and added lots of the new options as well as a text-field.

I would be happy if you participate in the new poll: PW-MANAGER POLL (made with quiz-maker)

KEEP IN MIND: Revealing this kind of information can be a security risk. Depending on your threat model and risk-tolerance, you should consider not participating. You can still use the "show results" option if you are interested!
All answers are anonymous, however, feel free to use a VPN or TOR.

Thank you

submitted by /u/lights_random_reddit
[link] [comments]
IDOR on Resend SMS Verification

Haloo Bug Hunter! gimana kabarnya? semoga sehat-sehat ya!! Kali ini gw mau share tentang IDOR lagi.. dan kemaren ada yg bilang artikel yg…Continue reading on Medium »
Read more...
Dark Reading: Attacks/Breaches
Western Digital Hackers Demand 8-Figure Ransom Payment for Data

Western Digital has yet to comment on claims that the breach reported earlier this month led to data being stolen.
How to make money with hacking

Bug Bounty ProgramsContinue reading on Medium »
Read more...
SilentMoonwalk - PoC Implementation Of A Fully Dynamic Call Stack Spoofer
http://www.kitploit.com/2023/04/silentmoonwalk-poc-implementation-of.html
PoC Implementation of a fully dynamic call stack spoofer TL;DR SilentMoonwalk is a PoC implementation of a fully dynamic call stack spoofer, implementing a technique to remove the original caller from the call stack, using ROP to desynchronize unwinding from control flow.
Authors This PoC is the result of a joint research done on the topic of stack spoofing. The authors of the research are: KlezVirus (https://twitter.com/KlezVirus) Waldo-IRC (https://twitter.com/waldoirc) Trickster0 (https://twitter.com/trickster012) I want to stress that this work would have been impossible without the work of Waldo-IRC (https://twitter.com/waldoirc) and Trickster0 (https://twitter.com/trickster012), which both contributed to the early stages of the PoC, and to the research behind the PoC. Overview This repository demonstrates a PoC implementation to spoof the call stack when calling arbitrary Windows APIs. This attempt was inspired by this Twitter thread (https://twitter.com/_Kudaes_/status/1594753842310434816), and this Twitter thread (https://twitter.com/namazso/status/1442314742488567808), where sensei namazso (https://twitter.com/namazso) showed and suggested to extend the stack unwinding approach with a ROP chain to both desynchronize the unwinding from real control flow and restore the original stack afterwards. This PoC attempts to do something similar to the above, and uses a desync stack to completely hide the original call stack, also removing the EXE image base from it. Upon return, a ROP gadget is invoked to restore the original stack. In the code, this process is repeated 10 times in a loop, using different frames at each iteration, to prove stability. Supported Modes The tool currently supports 2 modes, where one is actually a wrong patch to a non-working pop RBP frame identified, which operates by shifting the current RSP and adding two fake frames to the call stack. As it operates using synthetic frames, I refer to this mode as "SYNTHETIC". When selecting the frame that unwinds by popping the RBP register from the stack, the tool might select an unsuitable frame, ending up in an abruptly cut call stack, as observable below.