Hacking Articles Tips Tricks Videos Tutorials
471 subscribers
66K 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
HackTheBox: Magic Write-Up

https://cdn-images-1.medium.com/max/600/1*s_UYo9Rc7qTeVFHf5lM0CQ.png
Magic is a medium-rated Linux machine on the reputable penetration testing platform known as HackTheBox. The ultimate goal is to…

Continue reading on Medium »
SNOWCRASH creates a script that can be launched on both Linux and Windows machines. Payload (https://www.kitploit.com/search/label/Payload) selected by the user (in this case combined Bash and Powershell code) is embedded (https://www.kitploit.com/search/label/Embedded) into a single polyglot template, which is platform-agnostic. There are few payloads available, including command execution, reverse shell establishment, binary execution and some more :>
Basic usage
Install dependencies: ./install.sh List available payloads: ./snowcrash --list Generate chosen payload: ./snowcrash --payload memexec --out polyglot_script Change extension of the polyglot script: mv polyglot_script polyglot_script.ps1 Execute polyglot script on the target machine
Additional notes
Delay before script run and payload execution can be specified as an interval (using --sleep flag) in the form: x[s|m|h]
where x = Amount of interval to spend in idle state
s = Seconds
m = Sinutes
h = Hours
After generation, the extension of generated script containing the payload can be set either to .sh or .ps1 (depending on the platform we want to target). Generated payload can be written directly to STDOUT (instead of writing to a file) using --stdout flag.
Screenshots
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!
SNOWCRASH - A Polyglot Payload Generator

https://1.bp.blogspot.com/-4QZK_wPBE6c/YGveYpfHSUI/AAAAAAAAVz8/BbzVg74NAdECVjT_lllrjy1SdbHfsLligCNcBGAsYHQ/w640-h360/SNOWCRASH_1_snowcrash.png

SNOWCRASH creates a script that can be launched on both Linux and Windows machines. Payload selected by the user (in this case combined Bash and Powershell code) is embedded into a single polyglot template, which is platform-agnostic.

There are few payloads available, including command execution, reverse shell establishment, binary execution and some more :>
Basic usage

1.
Install dependencies: ./install.sh

2.
List available payloads: ./snowcrash --list

3.
Generate chosen payload: ./snowcrash --payload memexec --out polyglot_script

4.
Change extension of the polyglot script: mv polyglot_script polyglot_script.ps1

5.
Execute polyglot script on the target machine
Additional notes

Delay before script run and payload execution can be specified as an interval (using --sleepflag) in the form:
x[s|m|h]

where
x = Amount of interval to spend in idle state
s = Seconds
m = Sinutes
h = Hours

After generation, the extension of generated script containing the payload can be set either to .shor .ps1(depending on the platform we want to target).

Generated payload can be written directly to STDOUT (instead of writing to a file) using --stdoutflag.

Screenshots
https://1.bp.blogspot.com/-WX2kf_rZw2g/YGveohMkEvI/AAAAAAAAV0Q/U3qQhHvzN1MHNr46BVW8dOr7ehWfMMF-QCNcBGAsYHQ/w640-h360/SNOWCRASH_4_screenshot1.png
https://1.bp.blogspot.com/-AQNyxW8I-7Q/YGveootO4EI/AAAAAAAAV0M/kLiOIbLVXsEbnL5RGnGbE90nMLtTssS4ACNcBGAsYHQ/w640-h360/SNOWCRASH_5_screenshot2.png
Download SNOWCRASH
Recon Methodology for Bug Hunting !

What is Reconnaissance or information gathering?Continue reading on Medium »
Read more...
hacking: security in practice
Crack executables with gdb?

Hi, I'm a beginner in hacking and I have some Linux executables(Elf) from which I have to extract some data, the first one use several system sleeps and very long loops to avoid this data print, the data Is generated procedurally so I cannot just search, find and decode It in the binaries, so my first question Is, Is It possible to use gdb to skip sleeps and loops and how can I do It? The second executable gets an input and does some operations on It, when I try to reach the part of code that I'd like to execute I get segmentation fault error, It seems that the code was written to have this error on purpose. Reading the assembly code I found that segmentation fault is generated on some variables copy in or from DWORD PTR and BYTE PTR, I've also noticed that most of the times the pointers point to nothing(0x000...), In this case what should I do to get over this error and execute the code I want? Note that I don't have debug symbols and source codes, just the elfs, both doesn't have canaries + I have installed gef to have some additional help.

submitted by /u/TurdPedo
[link] [comments]
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Ethical Hacking Terminology

Ethical Hacking Terminology — Learn what is login bomb? what is shrink wrap code? what is buffer overflow? and many important ethical…

Continue reading on Learn Ethical Hacking »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Vulnhub: Hemisphere-Gemini Walkthrough

https://cdn-images-1.medium.com/max/1897/1*FlW9UFVJ63YPuJzdpj5Kmw.png
Hey everyone, here’s a write-up of the box from vulnhub Hemisphere: Gemini. You can download this box from link…

Continue reading on Medium »