en
Feedback
☘️ { π”–π” π”žπ”―π”©π”’π”±π”±π”ž'𝔰 𝔏𝔬𝔲𝔫𝔀𝔒 } ☘️

☘️ { π”–π” π”žπ”―π”©π”’π”±π”±π”ž'𝔰 𝔏𝔬𝔲𝔫𝔀𝔒 } ☘️

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 more
No 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.

‼️THRILLED TO ANNOUCE TO YOU THE BEST PHP SENDER [SOURCE] ‼️ πŸ—£πŸ’¬1024 SENDER Seamlessly designed to improved your campaigns i
‼️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 install 
Run Sender.bat or SenderGCLI

HVNC 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

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.