Skip to main content

Windows

HOW TO KNOW THAT A FILE IS A VIRUS OR A TROJAN






As in the mordern world hacker are getting smarter and smarter.They are distributing virus and trojans and we are happily downloading it,As that executable is of our use but at the same time it is bad for your operating system,


Internet provide many facilities to check the presence of virus in the particular file and it is very easy too.


You just have to upload your file to check for virus on any one of the following sites :-


1. https://www.virustotal.com/      (best one)
2. http://virscan.org/
3. http://www.jotti.com/


This may help you a lot..




THANKS...










GET LATEST ACTIVATORS PACK FOR WINDOWS 7/xp/VISTA 100% WORKING






Window xp/7/vista activator collection

click here  to download.

I hope it will be useful.

HAVE A NICE DAY

Enhanced by Zemanta

Comments


  1. Thanks for sharing post. You are very articulate and explain your ideas and opinions clearly leaving no room for miscommunication. Please Kindly check My web: SMM panel

    ReplyDelete
  2. Thanks for sharing post. Hi, I am Jyoti shash, I am working as a SMM panel. Here, you will easily get the point that owning an SMM panel and provide SMM service is a legal thing, which means it is not a crime. It is very secure on our platform as well as they are resistant to DDoS-attack. Along with this, it also keeps updated from time to time to boost services.

    ReplyDelete

Post a Comment

Popular posts from this blog

show image in asp.net form from database

In order to show image from database to webform first add an image control in webpage.   <asp:Image ID="imgStudentImage" runat="server" Height="157px" Width="160px" /> Then add new webform to read image from database for example displayimage.aspx and in code behind model write the following code. public string str = //your string     public SqlConnection conn;     public SqlCommand sql = new SqlCommand();     public SqlDataReader dr;     public string strSQL;     protected void Page_Load(object sender, EventArgs e)     {         conn = new SqlConnection(str);         conn.Open();         long id = Convert.ToInt64(Request.QueryString["mId"]);         strSQL = "";         strSQL = strSQL + " SELECT snap from S...

Export Doc,Access,Image,CSV,Excel,Pdf,XML,HTML,Text,Print of Gridview in Asp.net

First import itextsharp.dll in the solution and use three namespces (basically for pdf) using iTextSharp.text; using iTextSharp.text.pdf; using iTextSharp.text.html.simpleparser;          Then Use the following code :- on each button  click  protected void Page_Load(object sender, EventArgs e)         {             if (!Page.IsPostBack)             {                 BindGridDetails(GridView1);             }         }                 protected DataTable BindGridDetails(GridView GridView1)         {   ...

im2col function in MATLAB explanation

Let us suppose we have A=[1 1;2 2] 1 1 2 2 ... ok Now img2col syntax  == im2col(A,[m n],block_type) Where block type = ('distinct','sliding') distinct places 0's in the final output,,,for padding, sliding,,repeats from the very first matrix element. after all elements read out. Now.. Now [m n] -- very important .... Number of Rows to show = M*N (if m=2 ,, n=2 then each column has 4 elements..) and Number of element fetch to repeat is M in row... That means,, OUTPUT OF THIS - im2col(A,[2 2], 'sliding') ans =      1      2      1      2 -- if  A=[1 1 1;2 2 2] A =      1     1     1      2     2     2 then im2col(A,[2 2], 'sliding') ans = contains 4 rows....as 2*2 ...   and fetch 2 elements as M=2 here... and slidin...