Hacking Articles Tips Tricks Videos Tutorials
467 subscribers
65.7K 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 on Medium
Operationalizing and Improving Cybersecurity Posture

Cybersecurity posture, also known as security posture, is the strength possessed by an organization to mitigate threats. A strong security…

Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
How to fix WordPress redirect hacks

https://cdn-images-1.medium.com/max/1280/1*UtLRdzqUJQC5l_HQqJvX5Q.jpeg
WordPress redirect hack is one of the common types of hacks, happens on WordPress. But it causes more severe side effects to your website.

Continue reading on Medium »
Heappy - A Happy Heap Editor To Support Your Exploitation Process

Heappy is an editor based on gdb/gef that helps you to handle the heap during your exploitation development. The project should be considered a didactic tool useful to understand the evolution of the heap during the process life cycle. It has been created to simplify the study of the most common heap exploitation techniques and to support you to solve some binary exploitation CTFs related to this fantastic topic.Main features This is what Heappy implements: take heap snapshots and compare them each other recognize immediately type and fields of heap bins search and edit heap values by decimal, hex or string find yourself with the panoramic view of the heap status take notes about a cell in the comment column enjoy the light and dark modeGetting Started These instructions will help you to install and run Heappy fastly. Prerequisites If you don't have it, install GEF in GDB: wget -q -O- https://github.com/hugsy/gef/raw/master/scripts/gef.sh | sh md5(gef.sh): eb053864d050048cb001c80c79fde7b5 Installing Install Node.js and npm: apt updatesudo apt install nodejs npm Download and install Heappy: git clone https://github.com/gand3lf/heappycd heappy/npm install Load the server inside GDB: gef➤ source /my/path/heappy/server/heappy.py It is suggested to run the Heappy GUI after that the target heap has been initialized. For example: gef➤ break maingef➤ run From another terminal launch the GUI: cd /my/path/heappy/npm start Have fun!  Not yet implemented  32-bit addresses support (coming soon)  multiple heaps support  gdb checkpoint integrationDownload Heappy
Read more...
Easter egg for pentest
https://www.reddit.com/r/Pentesting/comments/o9jz04/easter_egg_for_pentest/

<!-- SC_OFF -->Our company will have a pentest audit in the next week. Any idea of a good easter egg for them to find and brighten their day? <!-- SC_ON --> submitted by /u/Dark_Horse1995 (https://www.reddit.com/user/Dark_Horse1995)
[link] (https://www.reddit.com/r/Pentesting/comments/o9jz04/easter_egg_for_pentest/) [comments] (https://www.reddit.com/r/Pentesting/comments/o9jz04/easter_egg_for_pentest/)
Heappy is an editor based on gdb/gef that helps you to handle the heap during your exploitation (https://www.kitploit.com/search/label/Exploitation) development.
The project should be considered a didactic tool useful to understand the evolution of the heap during the process life cycle. It has been created to simplify (https://www.kitploit.com/search/label/Simplify) the study of the most common heap exploitation techniques and to support you to solve some binary exploitation (https://www.kitploit.com/search/label/Binary%20Exploitation) CTFs related to this fantastic topic.
Main features
This is what Heappy implements:
take heap snapshots and compare them each other recognize immediately type and fields of heap bins search and edit heap values by decimal, hex or string find yourself with the panoramic view of the heap status take notes about a cell in the comment column enjoy the light and dark mode
Getting Started
These instructions will help you to install and run Heappy fastly.
Prerequisites
If you don't have it, install GEF in GDB: wget -q -O- https://github.com/hugsy/gef/raw/master/scripts/gef.sh | sh
md5(gef.sh): eb053864d050048cb001c80c79fde7b5
Installing
Install Node.js (https://www.kitploit.com/search/label/Node.js) and npm: apt update
sudo apt install nodejs npm
Download and install Heappy: git clone https://github.com/gand3lf/heappy
cd heappy/
npm install
Load the server inside GDB: gef➤ source /my/path/heappy/server/heappy.py
It is suggested to run the Heappy GUI after that the target heap has been initialized.
For example: gef➤ break main
gef➤ run
From another terminal launch the GUI: cd /my/path/heappy/
npm start
Have fun! 
Not yet implemented
 32-bit addresses support (coming soon)
 multiple heaps support
 gdb checkpoint integration

Download Heappy (https://github.com/gand3lf/heappy)
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
Rustcat : Netcat Alternative

Rustcat is a port listener that can be used for different purposes.It is basically like netcat but with fewer options. Why Use Rustcat? Serves it purpose of listening to ports Has command history It is easy to use Supports udp Uses colors Installation Debian wget https://github.com/robiot/rustcat/releases/latest/download/rustcat_amd64.debsudo apt install ./rustcat_amd64.deb Arch git clone https://aur.archlinux.org/rustcat.gitcd rustcatmakepkg -si […]

The post Rustcat : Netcat Alternative appeared first on Kali Linux Tutorials.