Hacking Articles Tips Tricks Videos Tutorials
471 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
hacking: security in practice
school project

I am working on a school project where I need to determine the vulnerability in a local host Wordpress website. I am adding a comment where I try to get a message onclick using script. But It is filtering it out. Can anyone help?

submitted by /u/The_Notorious_Spooni
[link] [comments]
hacking: security in practice
How to force connect to a Bluetooth speaker that already paired?

How to force connect to a Bluetooth speaker that already paired and kick the paired device? Any idea? Or tool to do that? I found a tool called gattacker it works on BLE devices! but i don’t know if it works on a speaker!

submitted by /u/zackeatos
[link] [comments]
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Game Hacking with Python and cheat engine

https://cdn-images-1.medium.com/max/1824/1*iv3P0RXP3NTplFPidT71PQ.png
Hi. In this write up, i will be showing you, how to hack games by editing the memory with cheat engine and will also write a program in…

Continue reading on Medium »
hacking: security in practice
Where can I learn the skill of hacking?

Any recommended resources would be greatly appreciated.

I have a p strong base is Python and Java already, though I know cyber security has very little to do with those two languages.

submitted by /u/SleepySpace-
[link] [comments]
hacking: security in practice
Attacking NTLMv2

This post describes two ways to attack NTLMv2. One is to crack the NTLMv2 hash and the other is to perform a relay attack. I know that if SMB signing is required, a relay attack is not possible. But can we still crack the hash with SMB signing?

submitted by /u/AviatingFotographer
[link] [comments]
hacking: security in practice
Did someone try to hack me?

One time when I was snooping through random websites and reading about hacking content, suddenly my system displays a pop up "Admin right permission to install a software". The software name was some random letters and numbers .exe, I don't have any software or download anything for the past few days....

Is it really someone tried to hack me? 🤔

submitted by /u/NeitherPassenger5
[link] [comments]
Hi. In this write up, i will be showing you, how to hack games by editing the memory with cheat engine and will also write a program in…Continue reading on Medium » (https://noob3xploiter.medium.com/game-hacking-with-python-and-cheat-engine-5000369e27b9?source=rss------bug_bounty-5)
Hacking Articles Tips Tricks Videos Tutorials
Photo
Black Hat Ethical Hacking
Obfuscated Payloads can be undetected even if you have real-time protection

https://www.blackhatethicalhacking.com/wp-content/uploads/2021/08/Untitled-design-2-1.png Obfuscated Payloads can be undetected even if you have real-time protectionPost Views: 34
https://www.blackhatethicalhacking.com/wp-content/uploads/2021/08/BECOME-A-PATRON-AND-UNLOCK-EXCLUSIVE-VIDEOS-1.png
Reading Time: 3 Minutes

Fact: Obfuscated Payloads can be undetected even if you have real-time protection
There is a certain reason why successful attacks still happen every day, even though you use various security solutions in some cases based on AI and different heuristic algorithms.
Experienced Hackers can craft more sophisticated payloads that can bypass any real-time protection no matter what security measures are implemented by any vendor. Whenever such payload is crafted as we will share some techniques known to do so, it will always be ahead of the way it gets handled, until it studies the behavior pattern and blocks it for the next time they get attacked using the same technique. However, that is too late, because the machine is already bypassed and criminals would have done their damage.
See Also: Hacking stories – Operation Troy – How researchers linked the cyberattacks
Going technically on this, the way it’s done is using several sophisticated methods that are implemented on a payload based on the way it gets delivered, the encryption used, and the time or where it is loaded.

It’s kinda vital that we have to encrypt the malware, not cause there’s any real cryptographic need, but just because if we leave a whole copy of our malware hanging around inside our binary which it will still gonna get detected. So instead of going down the AES/RSA route with our encryption (kinda pointless as we want obfuscation through encryption.) Therefore using XOR with multiple layers is one way to encrypt the payload at first. Next comes Parsing it into the Payload by checking magic bytes inside the malware through IAT tables. By doing this, it then gets written to run only on Memory without touching disks, which bypasses a lot of solutions.
See Also: Microsoft urges Exchange admins to patch bug exploited in the wild
Obfuscation can be done using various techniques, including backdooring official .exe files, changing the size making it much bigger so it could bypass the trigger, and finally making the code that contains the payload/malware executes in a timed interval.

That last step is huge when it comes to bypassing better defensive systems. This means if a user gets infected with such payload, it will run normally if it’s bound to another known application, and the trigger could be hours or days after it passes through the sandbox, and other measures would mark it safe to run, until the malware triggers after that time, giving shell to an attacker.
This is an issue that is unique to each piece of malware, and that’s defenders’ ability to detect common behavior of malware and use that to detect and shut down the malware. This is why we still see payloads execute successfully, and that is because of the detection that happens after the malware has been executed, meaning that the only way to bypass it is by changing the actual behavior of the malware.
See Also: OSINT Tool: Osintgram
Security works continuously using a variety of solutions that relies on automated software. Even if we see AI getting integrated using certain algorithms from different vendors consuming budgets on the protection side, we still see Offensive Security being a huge role in the evolution of Cyber Security, because of the skill & the mindset of building sophisticated Pa[...]