Jump to content
prosoft

Batch command competition

Recommended Posts

You must find a batch command to disable in windows xp sp2 the DEP (Data Execution Prevention) service.The command must be executed from Start>Run>cmd or from a batch file (.bat) like other command (eg: netsh firewall show config, netstat ..)

- Click on Start - Run, then enter “cmd.exe” in the Open field and click OK or hit Enter.

- When Command Console opens, type “cd C:\” then Enter. You should see “C:\>”

- Type “notepad.exe boot.ini” then Enter

- When the boot.ini file opens in Notepad, change “/noexecute=optin” to “/execute=optin” and Save.

- Close Notepad. Return to the Command Console window.

- Type “exit” then Enter.

Link to comment
Share on other sites

The script have two options:

E - Enable Data Execution Prevention

D - Disable Data Execution Prevention

And the Batch http://pastebin.com/f42125692

@echo off
:: 29.08.2009 <> 29.08.2009 | cmiN
:: Challenge [Batch] Bcc DEP [prosoft] @ rstcenter.com


:main

cd %systemroot%
cd ..
echo E - Enable Data Execution Prevention
echo D - Disable Data Execution Prevention
set /p answer=
if "%answer%"=="E" (
set status=noexecute
goto replace
)
if "%answer%"=="D" (
set status=execute
goto replace
)
echo Invalid option!
pause >nul
exit


:replace

type nul>boot.tmp
for /f "tokens=1,2* delims==" %%a in (boot.ini) do (
if "%%b"=="" (
echo %%a>>boot.tmp
) else (
for /f "tokens=1,2 delims=/" %%x in ("%%b") do (
if "%%y"=="noexecute" (
if "%%c"=="" (
echo %%a=%%x/%status%>>boot.tmp
) else (
echo %%a=%%x/%status%=%%c>>boot.tmp
)
) else (
if "%%y"=="execute" (
if "%%c"=="" (
echo %%a=%%x/%status%>>boot.tmp
) else (
echo %%a=%%x/%status%=%%c>>boot.tmp
)
) else (
if "%%c"=="" (
echo %%a=%%b>>boot.tmp
) else (
echo %%a=%%b=%%c>>boot.tmp
)
)
)
)
)
)
attrib -s -h -r boot.ini
del boot.ini /f /q
ren boot.tmp boot.ini
attrib +r +h +s boot.ini
echo Ready.
pause >nul
exit

If you want to do this without pressing a key delete from lines [10:23].

But I can't believe it's so easy in Python:


import os

os.chdir(os.getenv("systemroot")[:3])
os.system("attrib -s -h -r boot.ini")
with open("boot.ini", "r") as f:
x = f.read().replace("noexecute", "execute")
open("boot.ini", "w").write(x)
os.system("attrib +r +h +s boot.ini")

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...