βοΈ { ππ ππ―π©π’π±π±π'π° ππ¬π²π«π€π’ } βοΈ
Closed channel
π§ͺ ππππβππΈππ πΈπΉπππ πΌππΌβππβπβπΎπ§ͺ You search how to setup windows on VM, what credit reports are or how checks work? We show you practical ones to understand β οΈ Unauthorized advertisments in comments will lead to a ban from channel :)
Show moreNo data
Subscribers
+724 hours
+657 days
+16630 days
Posts Archive
How to Warm Up SMTP Server IP β Improve Reputation and Deliverability
=============================
Your Emails going to SPAM? Donβt worry, Itβs OK since you on the right Channel | ExpertHackers weβll look through it and how to warmup.
It is very common for emails to go land in the spam folder for a new sender with a new
SMTP server (Email Server), new IP & Domain.
Even if all technical aspects such as SPF, DKIM, DMARC, RDNS, No Blacklists and 10/10
Score on Mail-Tester.com are in place your emails may land in spam.
OpenVoice : Instant voice cloning by MyShell
https://github.com/myshell-ai/OpenVoice
We should reach 11,500 for more private tools π
π» Share And Support Channelπ»
https://t.me/+ZFUM798YLi5mODUy
βΌοΈTHRILLED TO ANNOUCE TO YOU THE BEST PHP SENDER [SOURCE] βΌοΈ
π£π¬1024 SENDER
Seamlessly designed to improved your campaigns inboxing rate
β€οΈβπ₯ Features include:
β‘οΈ User-friendly interface
β‘οΈ Auto Rotate SMTP
β‘οΈ Auto Rotate IP to prevent spam filters
β‘οΈ HTML/Text Letter Support
β‘οΈ Auto-Encode Name/Subject to Prevent Detection ensuring high inbox rate
β‘οΈ Single and Multiple From Emails
β‘οΈ Auto Encode letter
β‘οΈ Adjustable send delay (0-60sec)
β‘οΈ Random strings
β‘οΈ Private Headers
β‘οΈ Letter/Attachment Zero Detection
β‘οΈ Supports Windows and Linux
β‘οΈ Spoof support (only sms)
β‘οΈ Adjustable send priority
β‘οΈ Auto rotate link
Download xammp to run this tool
https://www.apachefriends.org/download_success.html
composer installRun
Sender.bat or SenderGCLIHVNC is a tool that allows operators to interact with a remote desktop session without the user's knowledge. The VNC protocol is not involved, but the result is similar. This implementation of Cobalt Strike BOF was created as an alternative to TinyNuke/forks written in C++.
The hidden desktop consists of four components:
1. BOF Initializer: A small program responsible for injecting the HVNC code into the Beacon process.
2. HVNC shellcode: PIC implementation of TinyNuke HVNC.
3. Server and Operator UI: A server that listens for connections from the HVNC shellcode, and a user interface that allows the operator to interact with the remote desktop. Currently only supports Windows.
4. BOF Application Launchers: A set of Beacon object files that launch applications on the new desktop.
https://github.com/WKL-Sec/HiddenDesktop
A Scarletta's Exklusive - The Xeno RAT Source Code + hVNC.
π» Share And Support Channelπ»
https://t.me/+ZFUM798YLi5mODUy
Cobalt Strike BOF Offering Hidden Desktop Features
+1
Examples Of Xeno RAT With hVNC & hRDP Features
+1
Example Of Pandora hVNC Feature In The Dedicated Website
+1
Example Of Venom RAT With hVNC Feature On Dedicated Website
Worm User Interface Showing Inclusion Of hVNC & hRDP Features
Popular Softwares on the Market
At the end we show you some HVNC RATs currently on the market.
The code for this can be found at https://github.com/fern89/hvnc/. Note that this HVNC is incredibly limited, and does not support things like closing, minimizing, moving around windows, and basically all the window-manager functionalities. For a more complex HVNC, you can refer to the HVNC found in C2 framework, or the TinyNuke implementation. Overall, this post merely is meant to serve as a beginnerβs introduction to HVNC, and our goal for this project is just to be able to open YouTube and play a rickroll.
Mouse
The mouse is more complicated, as you could be clicking on a window that is not in focus. So we start with a
WindowFromPoint call, and from there, recursively call ChildWindowFromPoint, as WindowFromPoint does not consider disabled or hidden windows, according to the Microsoft Docs.
POINT point;
point.x = x;
point.y = y;
hwd = WindowFromPoint(point);
for (HWND currHwnd = hwd;;){
hwd = currHwnd;
ScreenToClient(hwd, &point);
currHwnd = ChildWindowFromPoint(hwd, point);
if (currHwnd == NULL || currHwnd == hwd)
break;
}
ScreenToClient is used to convert global coordinates to the coordinates of the window, as each window is only aware of itself, and not the global coordinate system. Now, we just need to send a click to the window we found, with a PostMessage.
LPARAM lParam = MAKELPARAM(point.x, point.y); PostMessage(hwd, WM_LBUTTONDOWN, 0, lParam); Sleep(100); PostMessage(hwd, WM_LBUTTONUP, 0, lParam);To make things simple, I only implement single click, but it is trivial to make other clicks supported. Just like that, we have implemented a very simple HVNC! We can open Chrome, steal some passwords, whatever it is HVNC is used for.
Keyboard
The keyboard is relatively simple, as it can only really be sent to the topmost window. So we just get that, and send the keycode to it with a
PostMessage call.
HANDLE hwd = GetTopWindow(NULL);
PostMessage(hwd, WM_KEYDOWN, keycode, 0 );User input
Now, a desktop is useless if you cannot interact with it. So, we need a way to input user data. We assume we already have the instructions of what operation to do (ie keyboard or mouse action), as that is just yet another Winsock action.
