Archivo de la categoría: Linux

How to remove malware belonging to the family Rootkit.Win32.TDSS (aka Tidserv, TDL4, TDSServ, Alureon

Run the latest version of GMER. http://www.gmer.net/ To remove it, you need to run a series of three scanners in this order: TDSSkiller http://support.kaspersky.com/viruses/solutions?qid=208280684 Combofix http://www.bleepingcomputer.com/download/anti-virus/combofix and Malwarebytes’ Antimalware http://download.cnet.com/Malwarebytes-Anti-Malware/3000-8022_4-10804572.html?tag=mncol;1 Note that TDL4 is often a blended threat, and has other secondary infections that can cause issues. One of the most common does search redirection… Leer más »

How secure is the TOR network for everyday internet browsing?

http://www.g-loaded.eu/2011/04/02/how-secure-is-the-tor-network-for-everyday-internet-browsing/ April 2nd, 2011 by George Notaras I recently read that the Free Software Foundation has given the Award for Projects of Social Benefit to the TOR Project. Congratulations! There are indeed some cases that the TOR network can be extremely useful to the societies. On the other hand, the fact that an organization like… Leer más »

cloudfare

http://www.cloudflare.com/ An Overview of CloudFlare CloudFlare protects and accelerates any website online. Once your website is a part of the CloudFlare community, its web traffic is routed through our intelligent global network. We automatically optimize the delivery of your web pages so your visitors get the fastest page load times and best performance. We also… Leer más »

How do you delete files completely?

Article Source Computer Forensics… Well what your asking is how to write over the data in a file so that it can not be recovered by people like me. I am a Forensic Computer Crime Investigator. I recover files for criminal investigations. The only way to make sure a file can not be recovered is… Leer más »

Btrfs butter file system linux

Btrfs is a new copy on write filesystem for Linux aimed at implementing advanced features while focusing on fault tolerance, repair and easy administration. Initially developed by Oracle, Btrfs is licensed under the GPL and open for contribution from anyone. https://btrfs.wiki.kernel.org/index.php/Main_Page https://btrfs.wiki.kernel.org/index.php/Getting_started

listar con ruta ls

Listar con ruta for i in `ls`; do echo $PWD/$i ; done Con parametros para logs for i in `ls *.log`; do echo $PWD/$i ; done Este es el bueno ls -dlR $PWD/*