Monday, June 9, 2008

Hacking Stuff

Don't learn to Hack .................................Hack to learn.........
Here is the grt conference material to learn hacking.
http://www.metasploit.com/research/conferences/

Network Security

http://www.nessus.org/download/index.php

UNIX

All About vi
http://www.lagmonster.org/docs/vi.html

IDE For Programming Languages

Python
http://wingware.com/products?gclid=CNmirOfZ6JMCFRcbegod52RF9g

C++ Guide

http://www.cppreference.com/

Documentation for Programming Languages

Python
http://docs.python.org/download.html

J2ME
http://java.sun.com/javame/reference/apis.jsp#api
Online Documentation
http://java.sun.com/javame/reference/apis/jsr118/
Documentation for Download
http://jcp.org/aboutJava/communityprocess/final/jsr118/

Top Downloads from Sun Microsystem

http://www.sun.com/download/index.jsp?tab=5

J2ME Code Downloads

http://java.sun.com/docs/books/j2mewireless/examples/README.html

About Java

Hey check this out whether java is really going to gooooooooooooooo.
http://littletutorials.com/2008/05/28/13-reasons-java-die-old-age/#more-38

Computer E-Books

http://www.sharewareebooks.com/eBooks/Computer/

Hot Downloads

Product Downloads
Hi check out the link for grt Google Downloads
http://hack2007.50webs.com/Software_downloads.htm

Desk Top App Downloads
http://www.thinkdigit.com/download.php

Sunday, June 8, 2008

Mobile Technologies

Hi check out for the grt material to learn about Mobile Technologies.
http://www.developershome.com/

Tuesday, June 3, 2008

Compiler

http://cc.codegear.com/download.aspx?id=24778&prot=http

C & C++ Compilers

Hey the best of all compilers with Intellisense feature..............
http://www.mg-india.com/Intel/Index.html

Spyware Doctor

Hey check it works fine...............
http://www.pctools.com/spyware-doctor/download/

Anti Virus & Spyware Tools

Hey check this Antivirus .........It works fine it deletes all NewFolder.exe ..............Check out......
http://ca-anti-virus.en.softonic.com/download

http://www.virusheat.com/?aff=1012

The Boot Sector

The Boot Sector
The boot sector on a disk is always the first sector on the first track on the first head. When the computer is powered on (or reset), the BIOS starts up and does the POST. It initializes all of it's data, then it looks for a valid boot sector. First it looks at the A: drive, then it looks to C:. If it doesn't find it then interrupt 18h is called, which, on original IBM PCs, started the ROM BASIC. A valid boot sector (to the BIOS) is one that has 0AA55h at offset 510 in the boot sector.
When the BIOS finds the boot sector, it reads that sector (512 bytes) off of the disk and into memory at 0:7C00h. Then it jumps to 0:7C00h and the boot sector code gets control. At this point, all that has been initialized is the BIOS data area (40h:0) and the BIOS interrupts (10h - 1Ah). At this point, memory is mostly unused, but not neccesarily cleared to 0.
Below is an example shell that I use when writing boot sector code: ;Generic boot sector shell. Written by Chris Lattner 1995
;Code+Data MUST be less than 510 bytes long!
_Text SEGMENT PUBLIC USE16
assume CS:_Text, DS:_Text
org 0
EntryPoint:
db 0EAh ;jmp far SEG:OFS ;Currently we are at 0:7C00
dw OFFSET AfterData, 7C0h ;This makes us be at 7C0:0
;Put any data here!
AfterData:
push CS
pop DS ; update DS to be 7C0 instead of 0
;Put code here!

jmp $ ; Hang out...
org 510 ; Make the file 512 bytes long
dw 0AA55h ; Add the boot signature
_Text ENDS
END
To use this code, you must compile it with either MASM or TASM. Link it together as a COM file if you can (Tasm v4 complains about illegal COM entry point). Then write the 512 byte file in sector 1 of a floppy (With some suitable disk tool) to test it out... If you can't compile it as a COM file, compile it as an EXE, but only write out the last 512 bytes of the file (eg. skip the EXE file header). Pop the disk in, reset you computer, and watch the magic!