How to enable RUN ? if any viruses diabled your RUN!

Engineer, Developer, Information Security Researcher, Code Digging, Software Exploitation, Web App Penetration testing, and Reverse Engineering, Browser Tech, Scraping, Automation, Hacking
Search for a command to run...

Engineer, Developer, Information Security Researcher, Code Digging, Software Exploitation, Web App Penetration testing, and Reverse Engineering, Browser Tech, Scraping, Automation, Hacking
No comments yet. Be the first to comment.
1. Download the latest kernel from kernel.org Code: wget http://www.kernel.org/pub/linux/kernel/v2.4/linux-2.4.19.tar.gz tar zxvf linux-2.4.19.tar.gz cd linux-2.4.19 2. Configure the kernel options This is where you select all the features yo...

No one among us knowingly Delete important files in their hard disk but some times it may happen accidentally........and then start :-( :sad: about it........now i am posting a way to prevent them from getting deleted accidentally. This can be done i...
If you’re lucky enough to find a command execution vulnerability during a penetration test, pretty soon afterward you’ll probably want an interactive shell. If it’s not possible to add a new account / SSH key / .rhosts file and just log in, your next...

Few of the time, we need to alter some particular text in multiple files, and opening and editing each file at a time is a killer. Here is a sweet simple command that uses the "Power of PERL" to make our life easier. Command:- perl -pi -w -e 's/faceb...

Click on "Prev" or "Next" Button to Read A debugger or debugging tool is a computer program that is used to test and debug other programs (the "target" program). The code to be examined might alternatively be running on an instruction set simulator...

How to enable RUN ? if any viruses diabled your RUN!
How to enable RUN ? if any viruses diabled your RUN, here’s the method to enable/disable RUN?
If you are a computer user,then you might habe also heard about virus!there are few virus which do havoc on prey computer and changes its behaviour drastically!I also use computer and had got some strange response from computer
for example when tried to hit “win+R” it shown a message stating that “Run has been disabled by administrator”. So i made a simple trick to solve this Problem.
Most of the viruses are now disabling the RUN command in Windows
This is achieving through the registry open the regedit.exe in your WINDOWS folder, then navigate to the following,
Quote:[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies
\Explorer]
“NoRun”=dword:1
Then change the DWORD value as 0 to enable , 1 to disable.
You can also do it through REG file( ie , file with extension .reg ) its code will be as like below.
Copy the below registry script and save it as a .reg file ( eg : dxm.reg )
Quote:REGEDIT4
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies
\Explorer]
“NoRun”=dword:0
; 0 to enable
If you have any problem with the above methods the follow the below it will definitely work.
Save the below script as a bat file (eg: dxm.bat) and execute it ……Enjoy !!!!!!
Quote:ECHO REGEDIT4 > Enable-Run.REG
echo. >> Enable-Run.reg
echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies
\Explorer] >> Enable-Run.reg
echo “NoRun”=dword:0 >> Enable-Run.reg
start /w regedit /s Enable-Run.reg
After running this file , a registry file is created with name “
Enable-Run
“, now just run this file and restart your computer , Now ur problem is solved!!!