martes, 6 de octubre de 2009

Task Manager Disabled – Fix it !

Many times when working on a computer that has been infected with a virus, Trojan, or piece of spyware I find myself with the Task Manager being disabled. Its the first priority of Malware creators to disable access to Task manager so that the user is not able to end the process of the running Malware.Until or unless you are working in an office,there is seldom any restriction placed over Task manager by home users.So, I will be mentioning 5 methods to re-enable task manager and restore it to former glory.
To open the Task Manager, you normally would do one of the following:


Press CTRL-ALT-DEL on the keyboard.
Press CTRL-SHIFT-ESC on the keyboard.
Right-click on a blank area on the start bar and choose Task Manager.
Click on Start, Run and type TASKMGR in the run box and press Enter .
And if instead of opening of Task manager you see the screen given below,then you need to re-enable the task manager.




First we’ll begin with the various registry modification methods for correcting this problem.
Method 1

Using the Group Policy Editor in Windows XP Professional .
Click Start, Run, type gpedit.msc and click OK.
Under User Configuration, Click on the plus (+) next to Administrative Templates.
Click on the plus (+) next System, then click on Ctrl+Alt+Delete Options.
Find Remove Task Manager in the right-hand pane and double click on it.
Choose the option “Not Configured” and click Ok.
Close the Group Policy Window .
Method 2

Change the Task Manager Option through the Run line .
Click on Start, Run and type the following command exactly and press Enter.
REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskMgr /t REG_DWORD /d 0 /f
It will restore your task manager and resolve your problem.
Method 3

Change Task Manager through a Registry REG file .
Click on Start, Run, and type Notepad and press Enter.
Copy and paste the given code into Notepad and save it to your desktop as taskmanager.reg
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
“DisableTaskMgr”=dword:00000000
Double click on the taskmanager.reg file to enter the information into the Windows registry.
Method 4
Delete the restriction in the registry manually

Click on Start, Run, and type REGEDIT and press Enter.
Navigate to the following branch
HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Policies\ System
In the right pane, find and delete the value named DisableTaskMgr.
Close the registry editor .

Method 5
Download and Run FixTaskManager program.
Click on the following links and download the program FixTaskManager to your Desktop
Download Fixtaskmanager


Double-click on the file FixTaskManager on your desktop and run it .
This will restore your Task manager.

Written by ZERO

Hack administrator from Guest account

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
Copy cmd.exe and paste it on desktop
rename cmd.exe to sethc.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 -

Go to registry editor and navigate to this key

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList]

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..

Originally written by ZERO

lunes, 5 de octubre de 2009

Compile and execute 32 bits application in 64 bits operating system

Compile and execute 32 bits application in 64 bits operating system: "

The world is going towards 64 bits machines and operating system for personal computer, but there are still some libs and software only support 32 bits. Therefore in this transition period, there is a needs to support both 64 bits and 32 bits applications.


Lately I been using x86_64 Fedora Linux. There are requirements for me execute some 32 bits binaries as well as compiling to produce 32 bits binaries.


First of all, I do not aware of any great different for me based on user experience while migrating from 32 bits to 64 bits Fedora. Maybe this is because the fedora repository is in the good shape, where everything that I had downloaded by using yum, will works perfectly.


Until one day I downloaded some legacy projects from the 3rd party website, that piece of software comes with 32 bits libs which needs 32 bits compilation. I started to realized that the binaries that I had compiled in my 64 bits environment is not working at 32 bits OS even though I am using the legacy version of gcc 3.4 compiler.


Fedora x86_64 allows you to run 32 bits software given that the dynamic libs is installed properly. I realized that my fedora does have two directories for lib, /lib and another one is /lib64. When I am searching for a particular lib using yum, let say libxml2, I realized that yum is actually returns me both 32 bits and 64 bits result.



yum search libxml2
...
libxml2.i386 : Library providing XML and HTML support
libxml2.x86_64 : Library providing XML and HTML support
...

By default if I execute “yum install libxml2″, yum will install the 64 bits one for me. In my case I want the 32 bits glibc, what I have to do is to specify the exact package name.


yum install libxml2.i386

After the installation, now I can run the 32 bits application that requires libxml2.


How about compiling 32 bits application in 64 bits operating system?


First of all, I need to make sure I had installed all the development packages of the 32 bits libs required. Let takes libxml2 as the example, I need to yum ‘libxml2-devel.i386′.


Next tell gcc that I am going to compile the codes into 32 bit binaries by specify the -m32 CFLAGS. Assume I wrote a simple hello.c.


gcc -m32 -o hello{,.c} -lxml2

Now I need to produce the binary that can be run under Red Hat es4. I know the default version of gcc for RHES4 is 3.4 which I need gcc34 in my fedora. ( I need to yum another package ‘compat-gcc-34.x86_64′ for that) . With that now I can compile the codes at my x86_64 fedora to produce binary that can run at RHES4.


gcc34 -m32 -o hello{,.c} -lxml2

Related Posts
compile c and c++ source code
There are plenty of c and c++ compiler under unix based operating system, but the most famous one should be GNU gcc comp...

sha-1 checksum
What is sha-1 checksum? I heard about md5 checksum, did sha-1 makes any different?

Sha-1 is another algorithm that is...

Bit shifting can be done in python just like in c
It was amazing to discover that I can do bit shifting in python just like in c, the syntax makes no different at all. Le...

"

miércoles, 23 de septiembre de 2009

Create Charts in Excel 2007 the Easy Way with Chart Advisor

Create Charts in Excel 2007 the Easy Way with Chart Advisor: "

Creating charts in Excel spreadsheets is a great way to represent data in a visually appealing way, but can be too time consuming finding the appropriate one. Today we take a look at Chart Advisor from Microsoft Office Labs which makes the process more efficient.


Note: Remember this is a prototype and under development and may not work perfectly with your system. 


Install Chart Advisor 


Because this is an Office Labs prototype you will need to participate in Usage Metrics and Auto Update. Continue through the installation wizard to complete the process.


1-ca 


After the installation is complete open Excel and you will see it under the Insert tab in the ribbon.


2-ca


Using Chart Advisor


Here we will take a look at using Chart Advisor. Open up an Excel spreadsheet and select the data you want to to create a chart on. In this example we’re using monthly sales figures for tools and supplies. After you have highlighted the cells click on Chart Advisor under the Insert tab.


4-ca


Give it an moment while Chart Advisor analyzes the data and recommends appropriate charts.


1-1ca 


Hover over the different suggestions at the top to get a more detailed view of how it will look.


7-ca


The amount of charts you have to choose from will be determined by the data cells you select. Also notice they are sorted by relevance.


3-ca


Just hover the pointer over the percentage box on each suggestion to get a detailed formula of why it got its score.


5-ca


You can filter data to further modify the charts.


6-ca


You can further tweak the chart under Modify Chart and change data positions, exclude data, etc.


8-ca


When done configuring the chart just click the Insert Chart button to place it into the spreadsheet.


9-ca 


If you are looking for a way to speed up how you create charts and graphs in your Excel presentations then you might want to check out this add-on.


Download Chart Advisor from Office Labs



Tomado de: howtogeek.com

sábado, 19 de septiembre de 2009

La historia del hacking en una imagen

La historia del hacking en una imagen: "

Y para sorpresa de muchos no aparecen imágenes de Operación Swordfish. La acabo de ver en Daboblog y la fuente original es Focus.com. Ojo para los puristas porque se mezcla hacking puro con crackers así que después de echarle un ojo nada mejor que complentar la clase de cibercultura con el ya mítico artículo de Microsiervos de Diferencias entre hacker y cracker.



hack


"

ToYcon: convertir imágenes a iconos

ToYcon: convertir imágenes a iconos: "

Ya hemos hablado por aquí de cómo crear iconos para Windows con IconArt y de cómo cambiar los iconos en Mac OS X. Hoy os traigo una aplicación hipersencilla para transformar imágenes en .jpg, .png y otros a iconos (extensión .ico) para usarlos donde queráis.


La aplicación se llama ToYCon:
Descargar ToyCon

Primero tenemos que descomprimir el archivo que nos hemos descargado y luego buscar dentro de la carpeta el archivo ToyCon.exe


screenshot007


Al abrirlo aparecerá una pequeña caja en nuestro escritorio. Lo único que tenemos que hacer es hacer click en la imagen que queramos transformar a icono y sin soltar arrastrarla a la caja. Automáticamente se creará el icono:


screenshot0081


Hipersencillo y sobre todo: seguro. Es increíble la cantidad de porquería que se encuentra en internet relacionada con el mundo de los iconos.


"

Como borrar un virus y no morir en el intento

Como borrar un virus y no morir en el intento: "
Esta es sin duda de las preguntas más comunes que un informático puede recibir. ¿Puedes borrar los virus de mi PC? No existe nada complicado en hacerlo, pero por increíble que parezca, ¡no saben como hacerlo!. Mucho menos si el virus es realmente de aquellos que se resisten a morir. Acá una pequeña guía, para los no informáticos, de lo que se debe y no debe hacerse para limpiar una PC de manera adecuada y así no tener que llamar a un informático para que nos resuelva el problema (y de paso te ahorras un dinero)

1.- ¿De que estoy infectado, un virus o un Spyware? El común de los usuarios no puede distinguir entre ambos. Por esta razón en muchas ocasiones los antivirus no pueden detectar el bendito progama que nos abre ventanas por doquier, porque sencillamente este no es un virus, sino un spyware. Si buscamos la definición de Spyware veremos que este tipo de programas se encargan de capturar información acerca de nuestros hábitos en internet, direcciones visitadas, etc. Por eso considero básico no solo pasar un buen antivirus, sino además un buen anti-Spyware. Un buen Antispyware, y gratuito encima, es el Ad-Aware en su versión free. Puedes descargarlo desde :

http://download.cnet.com/Ad-Aware-Anniversary-Edition/3000-8022_4-10045910.html?part=dl-ad-aware&subj=dl&tag=top5


2.- ¿Basta pasar el antivirus o el AntiSpyware? No, no basta. Antes deberíamos tomar otras acciones previas antes de pasar estos programas. Como primer paso debemos revisar que esta corriendo en la memoria de nuestra PC. Existen muchas formas de ver esto. La más típica es presionando Ctrl+Alt+Spr y escogiendo 'Administrador de tareas'. Ahí podemos ver que programas están corriendo en la PC. Pero no es nada cómodo y preciso. Recomiendo usar el Process Explorer. Puedes bajarlo desde acá :

http://download.sysinternals.com/Files/ProcessExplorer.zip


Esta sencilla aplicación pero muy útil te permite visualizar de manera rápida lo que está corriendo en tu PC.

Como último paso previo a pasar el antivirus o antispyware, debemos desactivar la opción llamada 'Restaurar Sistema'. Cuando esta opción está activada, guarda los archivos del sistema y drivers de nuestra PC, como si de un backup se tratara. Pero ¿que pasa si nuestros archivos del sistema están infectados? Por eso necesitamos desabilitar esta opción para los virus no puedan 'ocultarse' en los backups creados por la opción 'Restaurar Sistema'. Para deshabilitarlo debes ir al Panel de Control, busca la opción Sistema y marca la ficha 'Restaurar Sistema'. Busca el check 'Desactivar resturar sistema en todas las unidades' y marcalo. Solo después de esto puedes pasar un antivirus o antispyware.


3.- Limpia tu USB No tienen ni idea cuantos trabajos bien realizados se van al tacho porque solo se contemplo una fuente de peligro (la PC infectada) pero no otras posibles fuentes (por ejemplo, un USB). Caso típico, una PC es completamente desinfectada, pero apenas el usuario coloca su USB, ¡la infección vuelve! Resultado : Horas de trabajo perdido, molestias y desconfianza con el informático que realizó el trabajo.


4.- ¿Conoces a tu enemigo? Algunas virus se ponen 'tercos' y son difíciles de eliminar. Por más que uno da todos los pasos previos mencionados en este post, el miserable no muere. Si consigues el nombre del virus (el antivirus debería darte el nombre) nunca está demás buscar en internet información acerca de este. Quizá exista una solución específica para eliminarlo o alguna herramienta en concreto que solucione el problema.


5.- ¿Que antivirus me recomiendas?
Pregunta difícil. Quizá deberías hacerte un par de preguntas previamente. La primera, ¿Es mi PC lo suficientemente fuerte? ¿Tiene la suficiente memoria? La segunda pregunta sería ¿Estoy dispuesto a pagar por un antivirus?

Yo por lo general solo recomiendo los siguientes :

- AVG Free : Buen antivirus, incluso en su versión free, lo uso hace ya muchos años en 'n' computadores. Recomendable en PC's con poca potencia y si no estas dispuesto a pagar por un antivirus.

- Kaspersky : Otro buen antivirus, pero es de pago y es un poco 'pesado' para la PC, es decir, consume bastante memoria de la máquina. Reco
mendable si tienes un 'maquinón' y estas dispuesto a pagar.

- NOD32 : Muy buen antivirus. Corre en máquinas con poca potencia. Vale cada centavo que pagues. Elije el que más te convenga.

Mi recomendación : AVG, gratuito, liviano y eficiente. Puedes descargarlo desde acá :

http://download.cnet.com/AVG-Anti-Virus-Free-Edition/3000-2239_4-10320142.html?part=dl-10044820&subj=dl&tag=button&cdlPid=11014801

O desde :

http://free.avg.com/

6.- La solución final ¿Que pasa si has intentado todo y a pesar de todo el virus sigue vivo? Contempla la opción de formatear el equipo. En mi experiencia personal, a veces es mejor rendirse y formatear el equipo, acción que puede llevar un día entero, a perder dos días tratando de reparar los problemos ocasionados por el virus.


Escrito por:

Alberto Peves M

"
 
Locations of visitors to this page