Wednesday, 5 March 2014

How to disable copying of text from your blogs' post

In your "html code" just copy below script:


<!-- Starting of script-->

<script src='demo-to-prevent-copy-paste-on-blogger_files/googleapis.js'>
</script>
<script type='text/javascript'>
if (typeof document.onselectstart!="undefined" )
{
document.onselectstart=new Function ("return false" );
} else
{
document.onmousedown=new Function ("return false" ); document.onmouseup=new Function ("return true" );
}
</script>

<!-- Ending of script-->

Computer Forensics Process

Below is the generalized way of computer forensics investigation process that can be followed:

Stage 1: Investigation Preparation
  • Identify the purpose of investigation.
  • Identity the resource required.
Stage 2: Evidence Acquisition
  • Identify the source of digital evidence.
  • preserve digital evidences.
Stage 3: Analysis of Evidence
  • Identify the tool and techniques to use
  • Process data.
  • Interpret Analysis result.
Stage 4: Result dessmination
  • report the findings.
  • present  the findings.

Tuesday, 4 February 2014

How to set proxy for your terminal in linux

open the following file:

 /root/etc/apt/apt.conf   (if it is not there, then create it) 

and then write following into it:

Acquire::http::proxy "http://your_user_name:Your_password@ip_address_of proxy:8080/";
Acquire::ftp::proxy "ftp://your_user_name:Your_password@ip_address_of proxy:8080/";
Acquire::https::proxy "https://your_user_name:Your_password@ip_address_of proxy:8080/";