Thursday, August 4, 2016

php master page code

how to make master page in php
easy way to make master page in php

this work same like asp .net

first defined your header part
then defined your menu part
then defined your footer part

 make separate php file

 header.php
menu.php
footer.php

put your content in a file
==============
master.php

<body>
<div><?php include('header.php');?
></div>
<div><?php include('menu.php');?
></div>
<div><?php include($page_content);?
></div>
<div><?php include('footer.php');?
></div>
</body>

=============
header.php

<?php
<h1> your company name </h1>
?>

==================
menu.php
<?php
<a href="#" >home</a>
?>

=======

footer.php

<?php
<h1> your company name </h1>
?>

===== make your content file ===
home_.php
<?php
<h1> welcome your company name </h1>
?>

====== home.php  ====
<?php
$page_content = 'home_.php';
include('master.php');
?>


run your home.php

you see your header,menu,content and
footer part

Friday, July 1, 2016

how to access phpmyadmin bitnami

how to access phpmyadmin bitnami

how to access phpmyadmin bitnami using putty


easy step

1.download putty


open it

enter your target host

after  go ----->


goto - connection   -> ssh  -> tunnels

source port : 8888
destination : localhost:80

click on add button

click open

login in console

using your bitnami id password
=================================
login as: bitnami
bitnami1@llldce.org's password:
Welcome to Ubuntu 14.04.4 LTS (GNU/Linux 3.13.0-77-generic x86_64)
       ___ _ _                   _
      | _ |_) |_ _ _  __ _ _ __ (_)
      | _ \ |  _| ' \/ _` | '  \| |
      |___/_|\__|_|_|\__,_|_|_|_|_|

  *** Welcome to the Bitnami LAMP Stack 5.6.18-0     ***
  *** Bitnami Wiki:   https://wiki.bitnami.com/      ***
  *** Bitnami Forums: https://community.bitnami.com/ ***
Last login: Fri Jul  1 18:59:31 2016 from 123.000.000.000
bitnami@bitnami-lampstack-d80f:~$ ssh -N -L 8888:127.0.0.1:80 - "f:\bitnami\" bitnami@xyz.bitnamiapp.com
>



====================

now open your local browser

http://127.0.0.1:8888/phpmyadmin

now you get your phpmyadmin login screen





more info



https://drive.google.com/file/d/0BxdC7meFXcAxUW5lYXQ1MkNvN1U/view?usp=sharing





Tuesday, June 28, 2016

network layer esy to understand

TCP/IPThe Internet Protocol Suite, popularly known as the TCP/IP model, is a communication protocol that is used over the Internet. This model divides the entire networking functions into layers, where each layer performs a specific function.

This model gives a brief idea about the process of data formatting, transmission, and finally the reception. Each of these functions take place in the layers, as described by the model. TCP/IP is a four-layered structure, with each layer having their individual protocol. Let us have a look at the four layers:

Link Layer

As the name suggests, this layer includes the physical and logical connections from the host's link. It is also known as Network Access layer and Network Interface layer. It explains how the data is transmitted from the host, through the network. The physical connectors like the coaxial cables, twisted pair wires, the optical fiber, interface cards, etc., are a part of this layer. This layer can be used to connect different network types like ATM, Token ring, Ethernet, LAN, etc.

Internet Layer

This layer is also known as the Network Layer. The main function of this layer is to route the data to its destination. The data that is received by the link layer is made into data packets (IP datagrams). The data packets contain the source and the destination IP address or logical address. These packets are sent on any network and are delivered independently. This indicates that the data is not received in the same order as it was sent. The protocols at this layer are IP (Internet Protocol), ICMP (Internet Control Message Protocol), etc.

Transport Layer

This layer is responsible for providing datagram services to the Application layer. This layer allows the host and the destination devices to communicate with each other for exchanging messages, irrespective of the underlying network type. Error control, congestion control, flow control, etc., are handled by the transport layer. The protocol that this layer uses is TCP (Transmission Control Protocol) and UDP (User Datagram Protocol). TCP gives a reliable, end-to-end, connection-oriented data transfer, while UDP provides unreliable, connectionless data transfer between two computers.

Application Layer

It provides the user interface for communication. This is the layer where email, web browsers or FTP run. The protocols in this layer are FTP, SMTP, HTTP, etc.

Read more at Buzzle: OSI
Implementation of OSI model Reference model
Model around which Internet is developed This is a theoretical model
Has only 4 layers Has 7 layers
Considered more reliable Considered a reference tool
Protocols are not strictly defined Stricter boundaries for the protocols
Horizontal approach Vertical approach
Combines the session and presentation layer in the application layer Has separate session and presentation layer
Protocols were developed first and then the model was developed Model was developed before the development of protocols
Supports only connectionless communication in the network layer Supports connectionless and connection-oriented communication in the network layer
Protocol dependent standard Protocol independent standard
Read more at Buzzle: 

how to import more than 2 mb to 1024 mb data base file in phpmyadmin

how to import more than 2 mb to 1024 mb data base file in phpmyadmin


I tried and i got the error message saying the size is greater. I tried with php.ini and increased the size of upload

===================

change upload_max_filesize 2M  to 1024M

==================

; Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
  upload_max_filesize = 300M


Find:
===========================

post_max_size = 8M
upload_max_filesize = 2M
max_execution_time = 30
max_input_time = 60
memory_limit = 8M

==============================

Change to:

post_max_size = 1024M
upload_max_filesize = 1024M
max_execution_time = 5000
max_input_time = 5000
memory_limit = 1000M 

Sunday, June 19, 2016

check malware in windows using cmd

check malware in windows using cmd



  • Since you cannot see this file nor delete it (because the attributes that was set on these files are +s +h +r)
  • +s - meaning it is a system file (which also means that you cannot delete it just by using the delete command)
  • +h - means it is hidden (so you cannot delete it)

  • +r - means it is a read only file 



Microsoft Windows [Version 10.0.10240]
(c) 2015 Microsoft Corporation. All rights reserved.

C:\Users\admin>..
'..' is not recognized as an internal or external command,
operable program or batch file.

C:\Users\admin>cd..

C:\Users>cd..

C:\>attrib
A  SHR       C:\bootmgr
A  SH        C:\BOOTNXT
A            C:\HaxLogs.txt
A  SH   I    C:\hiberfil.sys
A  SH        C:\pagefile.sys
A  SH        C:\swapfile.sys

C:\>attrib +s
Not resetting hidden file - C:\bootmgr
Not resetting hidden file - C:\BOOTNXT
Access denied - C:\HaxLogs.txt
Not resetting hidden file - C:\hiberfil.sys
Not resetting hidden file - C:\pagefile.sys
Not resetting hidden file - C:\swapfile.sys

C:\>attrib +h
Not resetting system file - C:\bootmgr
Not resetting system file - C:\BOOTNXT
Access denied - C:\HaxLogs.txt
Not resetting system file - C:\hiberfil.sys
Not resetting system file - C:\pagefile.sys
Not resetting system file - C:\swapfile.sys

C:\>attrib +r
Not resetting hidden file - C:\bootmgr
Not resetting hidden file - C:\BOOTNXT
Access denied - C:\HaxLogs.txt
Not resetting hidden file - C:\hiberfil.sys
Not resetting hidden file - C:\pagefile.sys
Not resetting hidden file - C:\swapfile.sys

C:\>

Saturday, June 18, 2016

WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for 'jquery'. Please add a ScriptResourceMapping named jquery(case-sensitive).

WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for 'jquery'. Please add a ScriptResourceMapping named jquery(case-sensitive).




how to solve asp. net c# error

easy to solve

step 1. change your web config. file

put this code  in web config- 
<appSettings>
    <add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
  </appSettings>










web.config 

<?xml version="1.0"?>

<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->

<configuration>

    <system.web>
      <compilation debug="false" targetFramework="4.5" />
      <httpRuntime targetFramework="4.5" />
    </system.web>

<appSettings>
    <add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
  </appSettings>

</configuration>

Friday, June 10, 2016

how to view email sender orignal public ip address

                                                         
                                                                                                                                                                                                     
Delivered-To: sanjaymakwan--@gmail.com
Received: by 10.200.35.171 with SMTP id q40csp290498qtq;
        Fri, 10 Jun 2016 10:33:57 -0700 (PDT)
X-Received: by 10.28.63.134 with SMTP id m128mr144906wma.97.1465580037428;
        Fri, 10 Jun 2016 10:33:57 -0700 (PDT)
Return-Path: <niren----@gmail.com>
Received: from mail-wm0-f43.google.com (mail-wm0-f43.google.com. [74.125.82.43])
        by mx.google.com with ESMTPS id on1si13487936wjc.56.2016.06.10.10.33.57
        for <sanjaymakw---@gmail.com>
        (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
        Fri, 10 Jun 2016 10:33:57 -0700 (PDT)
Received-SPF: pass (google.com: domain of nire----@gmail.com designates 74.125.82.-- as permitted sender) client-ip=74.125.82.43;
Authentication-Results: mx.google.com;
       dkim=pass header.i=@gmail.com;
       spf=pass (google.com: domain of niren@gmail.com designates 74.125.82.-- as permitted sender) smtp.mailfrom=nirenpa@gmail.com;
       dmarc=pass (p=NONE dis=NONE) header.from=gmail.com
Received: by mail-wm0-f43.google.com with SMTP id n184so80wmn.1
        for <sanjaymakw---@gmail.com>; Fri, 10 Jun 2016 10:33:57 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=gmail.com; s=20120113;
        h=mime-version:in-reply-to:references:from:date:message-id:subject:to;
        bh=51tayEgQ6hbLiAvkD/GQcv+edYynvXrYCu3lj5LFz5s=;
        b=y15eVck1sh+uSOPjPSs2z6LS2M/R6Ixso+cym2+H5ocrT85kxfddAkNC5SqdEsJeWQ
         m9082syNyaO9V+dZxqanlmQdDGoMLc18xGzgBs2mA4i14g+3oZ+lm3tXL8SFba47ipud
         87mekaP19OjDKQYKkhXXSCVgwwZ8tzMdXQTP//+JMyEKD4pyvFQV5dCgANvOVmI0SWpH
         7zJoSZDlnMGzFL1Ea6CF0hyrYk+fzGa92hTwwkZeb15KUh5gp6jJFVN9gHkr24IQlG6U
         DJxrza2g7mS/ZuT3mwuvBIbmhTitYxSKk8aR+Oh1btzrI3Re6mIOBDMFT3EtGKTwxzPp
         dOtw==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=1e100.net; s=20130820;
        h=x-gm-message-state:mime-version:in-reply-to:references:from:date
         :message-id:subject:to;
        bh=51tayEgQ6hbLiAvkD/GQcv+edYynvXrYCu3lj5LFz5s=;
        b=g8m+9LtIVtITvEFm52DK6ZfMAlC6sMl0G8b++DvwzdAuHoKeiOYNOz2/jdUE4Wej9z
         /Tyo7Bb5v5SuHyBhe80/7RuGLR2vdL6OvF5m8yLStYLf8Y5+T0W8hBa6Las5O3mVxGuG
         WCIMiUAWM98327gBA8EK3VCkKy4OhmzqogwsBPhQ4CHwHq02WNuahoGTdnHrnbBS4B9z
         pKIKsfaPDQWVgRt1ENcB8ZXOdblCAy02B5qqEyV9FCaH5U5SbYuBB/7ws/JOV6qbshjZ
         HWh2AIaTuaFw6ziDGX1R0kqLZ2kMuHT415eRoULl7U1Yru6v1BcvDEe/PU+KITvAzUBd
         jUrA==
X-Gm-Message-State: ALyK8tI3DqoQYKQp8RwZwaKOYPk78c1S/QSfkGU3gbnTozslKPbnKv2RFlLDjVP2at5r5TwojWvLIsIQJSK55Q==
X-Received: by 10.194.120.69 with SMTP id la5mr3561036wjb.152.1465580037001;
 Fri, 10 Jun 2016 10:33:57 -0700 (PDT)
MIME-Version: 1.0
Received: by 10.28.54.228 with HTTP; Fri, 10 Jun 2016 10:33:56 -0700 (PDT)
In-Reply-To: <CANTGwybEqVj6X6ajsRB0asb0nRwy3M=-eK_gc=m75BcTH5rzXw@mail.gmail.com>
References: <CANTGwybEqVj6X6ajsRB0asb0nRwy3M=-eK_gc=m75BcTH5rzXw@mail.gmail.com>
From: Niren Panchal <nirenpanchal.18@gmail.com>
Date: Fri, 10 Jun 2016 23:03:56 +0530
Message-ID: <CANTGwyZ3Z866RtNRmj-P6G_vysw1_kC0EUvTF24TRnUdWHLUJQ@mail.gmail.com>
Subject: Re:
To: sanjaymakwa---@gmail.com
Content-Type: multipart/alternative; boundary=089e011828287ed87f0534eff194

--089e011828287ed87f0534eff194
Content-Type: text/plain; charset=UTF-8

Name : Y
collage :  CLLAGE OF ENGINEERING

On Fri, Jun 10, 2016 at 11:02 PM, >
wrote:

> Name : Pail.com
> department : INFORMATION & TECHNOLOGY
> Collage : Gec
>
>
</div></div>
</blockquote></div><br></div>

--089e011828287ed87f0534eff194--


Monday, June 6, 2016

Binatine router dhcp client list binatone router wr1500n3







Binatine router
Router default password -> admin admin

dhcp client list binatone router wr1500n3







Tuesday, May 31, 2016

how to verify my blog in google webmaster tools


=> login you google account 

=> go to webmaster tools
https://www.google.com/webmasters/tools/home?hl=en

 =>add a properties 
=> copy past your link
=> select a verification method alternative - meta tag verification
copy html code
----------------

go  to Blogger.


Select the blog to update.



In the left menu, click Template.

Under “,” click Customize template .

copy your google verification meta tag html code and put in head section  


Click Save.

Wednesday, May 25, 2016

SECRET CODE : Smartphone Lenovo

 SECRET CODE : Smartphone Lenovo



# # # #537999#- Advanced Menu For Developers
# # # #0000# - Displays the version of the software
# # # #1111# - Factory Mode
# # # #2222# - check the serial number of the device
# # # #3333# - Lenovo Engineer Mode
# # # #7777# - Factory Reset (Factory Reset)
# # # #5993# - View of internal software
# # # #9536# - Displays the version of the equipment
# # # #8375# - Displays the version of the kernel
# # # #66336# - Displays the version of the modem
# # # #735 837# - Displays the version of SDK*
#06# - Show IMEI



Sunday, May 22, 2016

haking using cmd - step one information gathering






-a            Displays all connections and listening ports.

  -b            Displays the executable involved in creating each connection or

                listening port. In some cases well-known executables host

                multiple independent components, and in these cases the

                sequence of components involved in creating the connection

                or listening port is displayed. In this case the executable

                name is in [] at the bottom, on top is the component it called,

                and so forth until TCP/IP was reached. Note that this option

                can be time-consuming and will fail unless you have sufficient

                permissions.

  -e            Displays Ethernet statistics. This may be combined with the -s

                option.

  -f            Displays Fully Qualified Domain Names (FQDN) for foreign

                addresses.

  -n            Displays addresses and port numbers in numerical form.

  -o            Displays the owning process ID associated with each connection.

  -p proto      Shows connections for the protocol specified by proto; proto

                may be any of: TCP, UDP, TCPv6, or UDPv6.  If used with the -s

                option to display per-protocol statistics, proto may be any of:

                IP, IPv6, ICMP, ICMPv6, TCP, TCPv6, UDP, or UDPv6.

  -q            Displays all connections, listening ports, and bound

                nonlistening TCP ports. Bound nonlistening ports may or may not

                be associated with an active connection.

  -r            Displays the routing table.

  -s            Displays per-protocol statistics.  By default, statistics are

                shown for IP, IPv6, ICMP, ICMPv6, TCP, TCPv6, UDP, and UDPv6;

                the -p option may be used to specify a subset of the default.

  -t            Displays the current connection offload state.

  -x            Displays NetworkDirect connections, listeners, and shared

                endpoints.

  -y            Displays the TCP connection template for all connections.

                Cannot be combined with the other options.

  interval      Redisplays selected statistics, pausing interval seconds

                between each display.  Press CTRL+C to stop redisplaying

                statistics.  If omitted, netstat will print the current

                configuration information once.





netstat -t   (offload state)





netstat -s



(statistics)









:\Users\admin>netstat -a



Active Connections



  Proto  Local Address          Foreign Address        State

  TCP    0.0.0.0:53             www:0                  LISTENING

  TCP    0.0.0.0:80             www:0                  LISTENING

  TCP    0.0.0.0:135            www:0                  LISTENING

  TCP    0.0.0.0:445            www:0                  LISTENING

  TCP    0.0.0.0:1536           www:0                  LISTENING

  TCP    0.0.0.0:1537           www:0                  LISTENING

  TCP    0.0.0.0:1538           www:0                  LISTENING

  TCP    0.0.0.0:1539           www:0                  LISTENING

  TCP    0.0.0.0:1540           www:0                  LISTENING

  TCP    0.0.0.0:1541           www:0                  LISTENING

  TCP    0.0.0.0:1560           www:0                  LISTENING

  TCP    0.0.0.0:1590           www:0                  LISTENING

  TCP    0.0.0.0:1621           www:0                  LISTENING

  TCP    0.0.0.0:2383           www:0                  LISTENING

  TCP    0.0.0.0:3389           www:0                  LISTENING

  TCP    0.0.0.0:5580           www:0                  LISTENING

  TCP    127.0.0.1:1542         www:0                  LISTENING

  TCP    127.0.0.1:1542         www:1563               ESTABLISHED

  TCP    127.0.0.1:1542         www:1564               ESTABLISHED

  TCP    127.0.0.1:1542         www:1566               ESTABLISHED

  TCP    127.0.0.1:1542         www:28176              ESTABLISHED

  TCP    127.0.0.1:1542         www:28385              ESTABLISHED

  TCP    127.0.0.1:1542         www:54458              ESTABLISHED

  TCP    127.0.0.1:1561         www:1562               ESTABLISHED

  TCP    127.0.0.1:1562         www:1561               ESTABLISHED

  TCP    127.0.0.1:1563         www:1542               ESTABLISHED

  TCP    127.0.0.1:1564         www:1542               ESTABLISHED

  TCP    127.0.0.1:1566         www:1542               ESTABLISHED

  TCP    127.0.0.1:5939         www:0                  LISTENING

  TCP    127.0.0.1:6789         www:0                  LISTENING

  TCP    127.0.0.1:9990         www:0                  LISTENING

  TCP    127.0.0.1:23406        www:0                  LISTENING

  TCP    127.0.0.1:28176        www:1542               ESTABLISHED

  TCP    127.0.0.1:28385        www:1542               ESTABLISHED

  TCP    127.0.0.1:48485        www:48486              ESTABLISHED

  TCP    127.0.0.1:48486        www:48485              ESTABLISHED

  TCP    127.0.0.1:51041        www:7467               SYN_SENT

  TCP    127.0.0.1:54458        www:1542               ESTABLISHED

  TCP    127.0.0.1:65000        www:0                  LISTENING

  TCP    169.254.161.0:139      www:0                  LISTENING

  TCP    [::]:80                www:0                  LISTENING

  TCP    [::]:135               www:0                  LISTENING

  TCP    [::]:445               www:0                  LISTENING

  TCP    [::]:1536              www:0                  LISTENING

  TCP    [::]:1537              www:0                  LISTENING

  TCP    [::]:1538              www:0                  LISTENING

  TCP    [::]:1539              www:0                  LISTENING

  TCP    [::]:1540              www:0                  LISTENING

  TCP    [::]:1541              www:0                  LISTENING

  TCP    [::]:1560              www:0                  LISTENING

  TCP    [::]:1590              www:0                  LISTENING

  TCP    [::]:2383              www:0                  LISTENING

  TCP    [::]:3389              www:0                  LISTENING

  TCP    [::1]:1569             www:0                  LISTENING

  TCP    [::1]:1569             www:28171              ESTABLISHED

  TCP    [::1]:28171            www:1569               ESTABLISHED

  TCP    [::1]:51455            www:0                  LISTENING

  TCP    [fd1e:b8de:ef51:e332:a665:e8ea:9594:5322]:4487  www:0                  LISTENING

  UDP    0.0.0.0:53             *:*

  UDP    0.0.0.0:68             *:*

  UDP    0.0.0.0:500            *:*

  UDP    0.0.0.0:3389           *:*

  UDP    0.0.0.0:3702           *:*

  UDP    0.0.0.0:3702           *:*

  UDP    0.0.0.0:4500           *:*

  UDP    0.0.0.0:5355           *:*

  UDP    0.0.0.0:53078          *:*

  UDP    0.0.0.0:53080          *:*

  UDP    0.0.0.0:53619          *:*

  UDP    0.0.0.0:58645          *:*

  UDP    0.0.0.0:62882          *:*

  UDP    127.0.0.1:1900         *:*

  UDP    127.0.0.1:48700        *:*

  UDP    127.0.0.1:48701        *:*

  UDP    127.0.0.1:53079        *:*

  UDP    127.0.0.1:58650        *:*

  UDP    127.0.0.1:62227        *:*

  UDP    127.0.0.1:62228        *:*

  UDP    127.0.0.1:62229        *:*

  UDP    127.0.0.1:62230        *:*

  UDP    127.0.0.1:62231        *:*

  UDP    127.0.0.1:63455        *:*

  UDP    127.0.0.1:65000        *:*

  UDP    169.254.161.0:137      *:*

  UDP    169.254.161.0:138      *:*

  UDP    169.254.161.0:1900     *:*

  UDP    169.254.161.0:58649    *:*

  UDP    192.168.5.101:5353     *:*

  UDP    [::]:500               *:*

  UDP    [::]:3389              *:*

  UDP    [::]:3702              *:*

  UDP    [::]:3702              *:*

  UDP    [::]:4500              *:*

  UDP    [::]:5355              *:*

  UDP    [::]:53081             *:*

  UDP    [::]:58646             *:*

  UDP    [::]:62883             *:*

  UDP    [::1]:1900             *:*

  UDP    [::1]:5353             *:*

  UDP    [::1]:58648            *:*

  UDP    [fe80::1839:c5a9:13d3:4d40%28]:5353  *:*

  UDP    [fe80::d8ac:2c6c:9cb1:a100%10]:1900  *:*

  UDP    [fe80::d8ac:2c6c:9cb1:a100%10]:58647  *:*



C:\Users\admin>













C:\Users\admin>netstat -e

Interface Statistics



                           Received            Sent



Bytes                    1412285098        47608556

Unicast packets              484335          317049

Non-unicast packets         9410395           20415

Discards                          0               0

Errors                            0               0

Unknown protocols                 0



C:\Users\admin>



C:\Users\admin>netstat -f



Active Connections



  Proto  Local Address          Foreign Address        State

  TCP    127.0.0.1:1542         www.sanjay.com:1563    ESTABLISHED

  TCP    127.0.0.1:1542         www.sanjay.com:1564    ESTABLISHED

  TCP    127.0.0.1:1542         www.sanjay.com:1566    ESTABLISHED

  TCP    127.0.0.1:1542         www.sanjay.com:28176   ESTABLISHED

  TCP    127.0.0.1:1542         www.sanjay.com:28385   ESTABLISHED

  TCP    127.0.0.1:1542         www.sanjay.com:54458   ESTABLISHED

  TCP    127.0.0.1:1561         www.sanjay.com:1562    ESTABLISHED

  TCP    127.0.0.1:1562         www.sanjay.com:1561    ESTABLISHED

  TCP    127.0.0.1:1563         www.sanjay.com:1542    ESTABLISHED

  TCP    127.0.0.1:1564         www.sanjay.com:1542    ESTABLISHED

  TCP    127.0.0.1:1566         www.sanjay.com:1542    ESTABLISHED

  TCP    127.0.0.1:28176        www.sanjay.com:1542    ESTABLISHED

  TCP    127.0.0.1:28385        www.sanjay.com:1542    ESTABLISHED

  TCP    127.0.0.1:48485        www.sanjay.com:48486   ESTABLISHED

  TCP    127.0.0.1:48486        www.sanjay.com:48485   ESTABLISHED

  TCP    127.0.0.1:51300        www.sanjay.com:7467    SYN_SENT

  TCP    127.0.0.1:54458        www.sanjay.com:1542    ESTABLISHED

  TCP    [::1]:1569             www.sanjay.com:28171   ESTABLISHED

  TCP    [::1]:28171            www.sanjay.com:1569    ESTABLISHED



C:\Users\admin>

















C:\Users\admin>netstat -n



Active Connections



  Proto  Local Address          Foreign Address        State

  TCP    127.0.0.1:1542         127.0.0.1:1563         ESTABLISHED

  TCP    127.0.0.1:1542         127.0.0.1:1564         ESTABLISHED

  TCP    127.0.0.1:1542         127.0.0.1:1566         ESTABLISHED

  TCP    127.0.0.1:1542         127.0.0.1:28176        ESTABLISHED

  TCP    127.0.0.1:1542         127.0.0.1:28385        ESTABLISHED

  TCP    127.0.0.1:1542         127.0.0.1:54458        ESTABLISHED

  TCP    127.0.0.1:1561         127.0.0.1:1562         ESTABLISHED

  TCP    127.0.0.1:1562         127.0.0.1:1561         ESTABLISHED

  TCP    127.0.0.1:1563         127.0.0.1:1542         ESTABLISHED

  TCP    127.0.0.1:1564         127.0.0.1:1542         ESTABLISHED

  TCP    127.0.0.1:1566         127.0.0.1:1542         ESTABLISHED

  TCP    127.0.0.1:28176        127.0.0.1:1542         ESTABLISHED

  TCP    127.0.0.1:28385        127.0.0.1:1542         ESTABLISHED

  TCP    127.0.0.1:48485        127.0.0.1:48486        ESTABLISHED

  TCP    127.0.0.1:48486        127.0.0.1:48485        ESTABLISHED

  TCP    127.0.0.1:51495        127.0.0.1:7467         SYN_SENT

  TCP    127.0.0.1:54458        127.0.0.1:1542         ESTABLISHED

  TCP    [::1]:1569             [::1]:28171            ESTABLISHED

  TCP    [::1]:28171            [::1]:1569             ESTABLISHED

  TCP    [fe80::d8ac:2c6c:9cb1:a100%10]:80  [fe80::d8ac:2c6c:9cb1:a100%10]:51364  ESTABLISHED

  TCP    [fe80::d8ac:2c6c:9cb1:a100%10]:51364  [fe80::d8ac:2c6c:9cb1:a100%10]:80  ESTABLISHED



C:\Users\admin>





C:\Users\admin>netstat -o



Active Connections



  Proto  Local Address          Foreign Address        State           PID

  TCP    127.0.0.1:1542         www:1563               ESTABLISHED     3312

  TCP    127.0.0.1:1542         www:1564               ESTABLISHED     3312

  TCP    127.0.0.1:1542         www:1566               ESTABLISHED     3312

  TCP    127.0.0.1:1542         www:28176              ESTABLISHED     3312

  TCP    127.0.0.1:1542         www:28385              ESTABLISHED     3312

  TCP    127.0.0.1:1542         www:54458              ESTABLISHED     3312

  TCP    127.0.0.1:1561         www:1562               ESTABLISHED     3604

  TCP    127.0.0.1:1562         www:1561               ESTABLISHED     3604

  TCP    127.0.0.1:1563         www:1542               ESTABLISHED     3604

  TCP    127.0.0.1:1564         www:1542               ESTABLISHED     3604

  TCP    127.0.0.1:1566         www:1542               ESTABLISHED     3604

  TCP    127.0.0.1:28176        www:1542               ESTABLISHED     3604

  TCP    127.0.0.1:28385        www:1542               ESTABLISHED     3604

  TCP    127.0.0.1:48485        www:48486              ESTABLISHED     4092

  TCP    127.0.0.1:48486        www:48485              ESTABLISHED     4092

  TCP    127.0.0.1:51531        www:7467               SYN_SENT        2956

  TCP    127.0.0.1:54458        www:1542               ESTABLISHED     3604

  TCP    [::1]:1569             www:28171              ESTABLISHED     3604

  TCP    [::1]:28171            www:1569               ESTABLISHED     6976

  TCP    [fe80::d8ac:2c6c:9cb1:a100%10]:80  www:51364              ESTABLISHED     4

  TCP    [fe80::d8ac:2c6c:9cb1:a100%10]:51364  www:http               ESTABLISHED     12932



C:\Users\admin>



















C:\Users\admin>netstat -p tcp



Active Connections



  Proto  Local Address          Foreign Address        State

  TCP    127.0.0.1:1542         www:1563               ESTABLISHED

  TCP    127.0.0.1:1542         www:1564               ESTABLISHED

  TCP    127.0.0.1:1542         www:1566               ESTABLISHED

  TCP    127.0.0.1:1542         www:28176              ESTABLISHED

  TCP    127.0.0.1:1542         www:28385              ESTABLISHED

  TCP    127.0.0.1:1542         www:54458              ESTABLISHED

  TCP    127.0.0.1:1561         www:1562               ESTABLISHED

  TCP    127.0.0.1:1562         www:1561               ESTABLISHED

  TCP    127.0.0.1:1563         www:1542               ESTABLISHED

  TCP    127.0.0.1:1564         www:1542               ESTABLISHED

  TCP    127.0.0.1:1566         www:1542               ESTABLISHED

  TCP    127.0.0.1:28176        www:1542               ESTABLISHED

  TCP    127.0.0.1:28385        www:1542               ESTABLISHED

  TCP    127.0.0.1:48485        www:48486              ESTABLISHED

  TCP    127.0.0.1:48486        www:48485              ESTABLISHED

  TCP    127.0.0.1:51687        www:7467               SYN_SENT

  TCP    127.0.0.1:54458        www:1542               ESTABLISHED



C:\Users\admin>netstat -p udp



Active Connections



  Proto  Local Address          Foreign Address        State



C:\Users\admin>netstat -p ip



Active Connections



  Proto  Local Address          Foreign Address        State



C:\Users\admin>netstat -p tcpv6



Active Connections



  Proto  Local Address          Foreign Address        State

  TCP    [::1]:1569             www:28171              ESTABLISHED

  TCP    [::1]:28171            www:1569               ESTABLISHED







C:\Users\admin>netstat -p udpv6



Active Connections



  Proto  Local Address          Foreign Address        State



C:\Users\admin>











C:\Users\admin>netstat -r

===========================================================================

Interface List

 25...b8 88 e3 91 92 ee ......Qualcomm Atheros AR8162/8166/8168 PCI-E Fast Ethernet Controller (NDIS 6.30)

 28...c0 14 3d cf 04 89 ......Broadcom 802.11n Network Adapter

  6...c2 14 3d cf 04 89 ......Microsoft Wi-Fi Direct Virtual Adapter

 31...c0 14 3d cf 04 89 ......Microsoft Hosted Network Virtual Adapter

 10...02 60 3e f7 9b 01 ......BlackBerry Virtual Private Network

 21...00 ff 90 04 a3 88 ......TeamViewer VPN Adapter

  1...........................Software Loopback Interface 1

 24...00 00 00 00 00 00 00 e0 Microsoft ISATAP Adapter

 11...00 00 00 00 00 00 00 e0 Microsoft Teredo Tunneling Adapter

===========================================================================



IPv4 Route Table

===========================================================================

Active Routes:

Network Destination        Netmask          Gateway       Interface  Metric

        127.0.0.0        255.0.0.0         On-link         127.0.0.1    306

        127.0.0.1  255.255.255.255         On-link         127.0.0.1    306

  127.255.255.255  255.255.255.255         On-link         127.0.0.1    306

      169.254.0.0      255.255.0.0         On-link     169.254.161.0    261

    169.254.161.0  255.255.255.255         On-link     169.254.161.0    261

  169.254.255.255  255.255.255.255         On-link     169.254.161.0    261

        224.0.0.0        240.0.0.0         On-link         127.0.0.1    306

        224.0.0.0        240.0.0.0         On-link     169.254.161.0    261

  255.255.255.255  255.255.255.255         On-link         127.0.0.1    306

  255.255.255.255  255.255.255.255         On-link     169.254.161.0    261

===========================================================================

Persistent Routes:

  None



IPv6 Route Table

===========================================================================

Active Routes:

 If Metric Network Destination      Gateway

  1    306 ::1/128                  On-link

 10    261 fd00::/8                 On-link

 10    261 fd1e:b8de:ef51:e332:a665:e8ea:9594:5322/128

                                    On-link

 10    261 fe80::/64                On-link

 10    261 fe80::d8ac:2c6c:9cb1:a100/128

                                    On-link

  1    306 ff00::/8                 On-link

 10    261 ff00::/8                 On-link

===========================================================================

Persistent Routes:

  None



C:\Users\admin>





C:\Users\admin>netstat -s



IPv4 Statistics



  Packets Received                   = 2832005

  Received Header Errors             = 0

  Received Address Errors            = 1237588

  Datagrams Forwarded                = 15967

  Unknown Protocols Received         = 1

  Received Packets Discarded         = 209408

  Received Packets Delivered         = 2069451

  Output Requests                    = 1377266

  Routing Discards                   = 0

  Discarded Output Packets           = 7125

  Output Packet No Route             = 293

  Reassembly Required                = 0

  Reassembly Successful              = 0

  Reassembly Failures                = 0

  Datagrams Successfully Fragmented  = 0

  Datagrams Failing Fragmentation    = 0

  Fragments Created                  = 0



IPv6 Statistics



  Packets Received                   = 214942

  Received Header Errors             = 0

  Received Address Errors            = 309

  Datagrams Forwarded                = 0

  Unknown Protocols Received         = 0

  Received Packets Discarded         = 11840

  Received Packets Delivered         = 222364

  Output Requests                    = 36097

  Routing Discards                   = 0

  Discarded Output Packets           = 108

  Output Packet No Route             = 111

  Reassembly Required                = 0

  Reassembly Successful              = 0

  Reassembly Failures                = 0

  Datagrams Successfully Fragmented  = 0

  Datagrams Failing Fragmentation    = 0

  Fragments Created                  = 0



ICMPv4 Statistics



                            Received    Sent

  Messages                  372         1110

  Errors                    0           0

  Destination Unreachable   347         785

  Time Exceeded             0           0

  Parameter Problems        0           0

  Source Quenches           0           0

  Redirects                 0           0

  Echo Replies              24          1

  Echos                     1           324

  Timestamps                0           0

  Timestamp Replies         0           0

  Address Masks             0           0

  Address Mask Replies      0           0

  Router Solicitations      0           0

  Router Advertisements     0           0



ICMPv6 Statistics



                            Received    Sent

  Messages                  442         671

  Errors                    0           0

  Destination Unreachable   39          47

  Packet Too Big            0           0

  Time Exceeded             0           0

  Parameter Problems        0           0

  Echos                     0           0

  Echo Replies              0           0

  MLD Queries               0           0

  MLD Reports               0           0

  MLD Dones                 0           0

  Router Solicitations      0           188

  Router Advertisements     68          0

  Neighbor Solicitations    142         259

  Neighbor Advertisements   193         177

  Redirects                 0           0

  Router Renumberings       0           0



TCP Statistics for IPv4



  Active Opens                        = 112835

  Passive Opens                       = 1570

  Failed Connection Attempts          = 572976

  Reset Connections                   = 2939

  Current Connections                 = 16

  Segments Received                   = 1453495

  Segments Sent                       = 1032659

  Segments Retransmitted              = 144675



TCP Statistics for IPv6



  Active Opens                        = 4308

  Passive Opens                       = 3104

  Failed Connection Attempts          = 1135

  Reset Connections                   = 5516

  Current Connections                 = 2

  Segments Received                   = 122788

  Segments Sent                       = 120622

  Segments Retransmitted              = 2274



UDP Statistics for IPv4



  Datagrams Received    = 391876

  No Ports              = 20916

  Receive Errors        = 193709

  Datagrams Sent        = 195148



UDP Statistics for IPv6



  Datagrams Received    = 221047

  No Ports              = 11355

  Receive Errors        = 486

  Datagrams Sent        = 19684



C:\Users\admin>









C:\Users\admin>netstat -t



Active Connections



  Proto  Local Address          Foreign Address        State           Offload State



  TCP    127.0.0.1:1542         www:1563               ESTABLISHED     InHost

  TCP    127.0.0.1:1542         www:1564               ESTABLISHED     InHost

  TCP    127.0.0.1:1542         www:1566               ESTABLISHED     InHost

  TCP    127.0.0.1:1542         www:28176              ESTABLISHED     InHost

  TCP    127.0.0.1:1542         www:28385              ESTABLISHED     InHost

  TCP    127.0.0.1:1542         www:54458              ESTABLISHED     InHost

  TCP    127.0.0.1:1561         www:1562               ESTABLISHED     InHost

  TCP    127.0.0.1:1562         www:1561               ESTABLISHED     InHost

  TCP    127.0.0.1:1563         www:1542               ESTABLISHED     InHost

  TCP    127.0.0.1:1564         www:1542               ESTABLISHED     InHost

  TCP    127.0.0.1:1566         www:1542               ESTABLISHED     InHost

  TCP    127.0.0.1:28176        www:1542               ESTABLISHED     InHost

  TCP    127.0.0.1:28385        www:1542               ESTABLISHED     InHost

  TCP    127.0.0.1:48485        www:48486              ESTABLISHED     InHost

  TCP    127.0.0.1:48486        www:48485              ESTABLISHED     InHost

  TCP    127.0.0.1:51928        www:7467               SYN_SENT        InHost

  TCP    127.0.0.1:54458        www:1542               ESTABLISHED     InHost

  TCP    [::1]:1569             www:28171              ESTABLISHED     InHost

  TCP    [::1]:28171            www:1569               ESTABLISHED     InHost



C:\Users\admin>





C:\Users\admin>netstat -y



Active Connections



  Proto  Local Address          Foreign Address        State           Template



TCP    127.0.0.1:1542         www:1563               ESTABLISHED        Internet

TCP    127.0.0.1:1542         www:1564               ESTABLISHED        Internet

TCP    127.0.0.1:1542         www:28176              ESTABLISHED        Internet

TCP    127.0.0.1:1542         www:28385              ESTABLISHED        Internet

TCP    127.0.0.1:1542         www:54458              ESTABLISHED        Internet

TCP    127.0.0.1:1542         www:1566               ESTABLISHED        Internet

TCP    127.0.0.1:1561         www:1562               ESTABLISHED        Internet

TCP    127.0.0.1:1562         www:1561               ESTABLISHED        Internet

TCP    127.0.0.1:1563         www:1542               ESTABLISHED        Internet

TCP    127.0.0.1:1564         www:1542               ESTABLISHED        Internet

TCP    127.0.0.1:1566         www:1542               ESTABLISHED        Internet

TCP    127.0.0.1:28176        www:1542               ESTABLISHED        Internet

TCP    127.0.0.1:28385        www:1542               ESTABLISHED        Internet

TCP    127.0.0.1:48485        www:48486              ESTABLISHED        Internet

TCP    127.0.0.1:48486        www:48485              ESTABLISHED        Internet

TCP    127.0.0.1:51959        www:7467               SYN_SENT           Internet

TCP    127.0.0.1:54458        www:1542               ESTABLISHED        Internet



C:\Users\admin>









































































































































































































































:\Users\admin>netstat -a



Active Connections



  Proto  Local Address          Foreign Address        State

  TCP    0.0.0.0:53             www:0                  LISTENING

  TCP    0.0.0.0:80             www:0                  LISTENING

  TCP    0.0.0.0:135            www:0                  LISTENING

  TCP    0.0.0.0:445            www:0                  LISTENING

  TCP    0.0.0.0:1536           www:0                  LISTENING

  TCP    0.0.0.0:1537           www:0                  LISTENING

  TCP    0.0.0.0:1538           www:0                  LISTENING

  TCP    0.0.0.0:1539           www:0                  LISTENING

  TCP    0.0.0.0:1540           www:0                  LISTENING

  TCP    0.0.0.0:1541           www:0                  LISTENING

  TCP    0.0.0.0:1560           www:0                  LISTENING

  TCP    0.0.0.0:1590           www:0                  LISTENING

  TCP    0.0.0.0:1621           www:0                  LISTENING

  TCP    0.0.0.0:2383           www:0                  LISTENING

  TCP    0.0.0.0:3389           www:0                  LISTENING

  TCP    0.0.0.0:5580           www:0                  LISTENING

  TCP    127.0.0.1:1542         www:0                  LISTENING

  TCP    127.0.0.1:1542         www:1563               ESTABLISHED

  TCP    127.0.0.1:1542         www:1564               ESTABLISHED

  TCP    127.0.0.1:1542         www:1566               ESTABLISHED

  TCP    127.0.0.1:1542         www:28176              ESTABLISHED

  TCP    127.0.0.1:1542         www:28385              ESTABLISHED

  TCP    127.0.0.1:1542         www:54458              ESTABLISHED

  TCP    127.0.0.1:1561         www:1562               ESTABLISHED

  TCP    127.0.0.1:1562         www:1561               ESTABLISHED

  TCP    127.0.0.1:1563         www:1542               ESTABLISHED

  TCP    127.0.0.1:1564         www:1542               ESTABLISHED

  TCP    127.0.0.1:1566         www:1542               ESTABLISHED

  TCP    127.0.0.1:5939         www:0                  LISTENING

  TCP    127.0.0.1:6789         www:0                  LISTENING

  TCP    127.0.0.1:9990         www:0                  LISTENING

  TCP    127.0.0.1:23406        www:0                  LISTENING

  TCP    127.0.0.1:28176        www:1542               ESTABLISHED

  TCP    127.0.0.1:28385        www:1542               ESTABLISHED

  TCP    127.0.0.1:48485        www:48486              ESTABLISHED

  TCP    127.0.0.1:48486        www:48485              ESTABLISHED

  TCP    127.0.0.1:51041        www:7467               SYN_SENT

  TCP    127.0.0.1:54458        www:1542               ESTABLISHED

  TCP    127.0.0.1:65000        www:0                  LISTENING

  TCP    169.254.161.0:139      www:0                  LISTENING

  TCP    [::]:80                www:0                  LISTENING

  TCP    [::]:135               www:0                  LISTENING

  TCP    [::]:445               www:0                  LISTENING

  TCP    [::]:1536              www:0                  LISTENING

  TCP    [::]:1537              www:0                  LISTENING

  TCP    [::]:1538              www:0                  LISTENING

  TCP    [::]:1539              www:0                  LISTENING

  TCP    [::]:1540              www:0                  LISTENING

  TCP    [::]:1541              www:0                  LISTENING

  TCP    [::]:1560              www:0                  LISTENING

  TCP    [::]:1590              www:0                  LISTENING

  TCP    [::]:2383              www:0                  LISTENING

  TCP    [::]:3389              www:0                  LISTENING

  TCP    [::1]:1569             www:0                  LISTENING

  TCP    [::1]:1569             www:28171              ESTABLISHED

  TCP    [::1]:28171            www:1569               ESTABLISHED

  TCP    [::1]:51455            www:0                  LISTENING

  TCP    [fd1e:b8de:ef51:e332:a665:e8ea:9594:5322]:4487  www:0                  LISTENING

  UDP    0.0.0.0:53             *:*

  UDP    0.0.0.0:68             *:*

  UDP    0.0.0.0:500            *:*

  UDP    0.0.0.0:3389           *:*

  UDP    0.0.0.0:3702           *:*

  UDP    0.0.0.0:3702           *:*

  UDP    0.0.0.0:4500           *:*

  UDP    0.0.0.0:5355           *:*

  UDP    0.0.0.0:53078          *:*

  UDP    0.0.0.0:53080          *:*

  UDP    0.0.0.0:53619          *:*

  UDP    0.0.0.0:58645          *:*

  UDP    0.0.0.0:62882          *:*

  UDP    127.0.0.1:1900         *:*

  UDP    127.0.0.1:48700        *:*

  UDP    127.0.0.1:48701        *:*

  UDP    127.0.0.1:53079        *:*

  UDP    127.0.0.1:58650        *:*

  UDP    127.0.0.1:62227        *:*

  UDP    127.0.0.1:62228        *:*

  UDP    127.0.0.1:62229        *:*

  UDP    127.0.0.1:62230        *:*

  UDP    127.0.0.1:62231        *:*

  UDP    127.0.0.1:63455        *:*

  UDP    127.0.0.1:65000        *:*

  UDP    169.254.161.0:137      *:*

  UDP    169.254.161.0:138      *:*

  UDP    169.254.161.0:1900     *:*

  UDP    169.254.161.0:58649    *:*

  UDP    192.168.5.101:5353     *:*

  UDP    [::]:500               *:*

  UDP    [::]:3389              *:*

  UDP    [::]:3702              *:*

  UDP    [::]:3702              *:*

  UDP    [::]:4500              *:*

  UDP    [::]:5355              *:*

  UDP    [::]:53081             *:*

  UDP    [::]:58646             *:*

  UDP    [::]:62883             *:*

  UDP    [::1]:1900             *:*

  UDP    [::1]:5353             *:*

  UDP    [::1]:58648            *:*

  UDP    [fe80::1839:c5a9:13d3:4d40%28]:5353  *:*

  UDP    [fe80::d8ac:2c6c:9cb1:a100%10]:1900  *:*

  UDP    [fe80::d8ac:2c6c:9cb1:a100%10]:58647  *:*



C:\Users\admin>













C:\Users\admin>netstat -e

Interface Statistics



                           Received            Sent



Bytes                    1412285098        47608556

Unicast packets              484335          317049

Non-unicast packets         9410395           20415

Discards                          0               0

Errors                            0               0

Unknown protocols                 0



C:\Users\admin>



C:\Users\admin>netstat -f



Active Connections



  Proto  Local Address          Foreign Address        State

  TCP    127.0.0.1:1542         www.sanjay.com:1563    ESTABLISHED

  TCP    127.0.0.1:1542         www.sanjay.com:1564    ESTABLISHED

  TCP    127.0.0.1:1542         www.sanjay.com:1566    ESTABLISHED

  TCP    127.0.0.1:1542         www.sanjay.com:28176   ESTABLISHED

  TCP    127.0.0.1:1542         www.sanjay.com:28385   ESTABLISHED

  TCP    127.0.0.1:1542         www.sanjay.com:54458   ESTABLISHED

  TCP    127.0.0.1:1561         www.sanjay.com:1562    ESTABLISHED

  TCP    127.0.0.1:1562         www.sanjay.com:1561    ESTABLISHED

  TCP    127.0.0.1:1563         www.sanjay.com:1542    ESTABLISHED

  TCP    127.0.0.1:1564         www.sanjay.com:1542    ESTABLISHED

  TCP    127.0.0.1:1566         www.sanjay.com:1542    ESTABLISHED

  TCP    127.0.0.1:28176        www.sanjay.com:1542    ESTABLISHED

  TCP    127.0.0.1:28385        www.sanjay.com:1542    ESTABLISHED

  TCP    127.0.0.1:48485        www.sanjay.com:48486   ESTABLISHED

  TCP    127.0.0.1:48486        www.sanjay.com:48485   ESTABLISHED

  TCP    127.0.0.1:51300        www.sanjay.com:7467    SYN_SENT

  TCP    127.0.0.1:54458        www.sanjay.com:1542    ESTABLISHED

  TCP    [::1]:1569             www.sanjay.com:28171   ESTABLISHED

  TCP    [::1]:28171            www.sanjay.com:1569    ESTABLISHED



C:\Users\admin>

















C:\Users\admin>netstat -n



Active Connections



  Proto  Local Address          Foreign Address        State

  TCP    127.0.0.1:1542         127.0.0.1:1563         ESTABLISHED

  TCP    127.0.0.1:1542         127.0.0.1:1564         ESTABLISHED

  TCP    127.0.0.1:1542         127.0.0.1:1566         ESTABLISHED

  TCP    127.0.0.1:1542         127.0.0.1:28176        ESTABLISHED

  TCP    127.0.0.1:1542         127.0.0.1:28385        ESTABLISHED

  TCP    127.0.0.1:1542         127.0.0.1:54458        ESTABLISHED

  TCP    127.0.0.1:1561         127.0.0.1:1562         ESTABLISHED

  TCP    127.0.0.1:1562         127.0.0.1:1561         ESTABLISHED

  TCP    127.0.0.1:1563         127.0.0.1:1542         ESTABLISHED

  TCP    127.0.0.1:1564         127.0.0.1:1542         ESTABLISHED

  TCP    127.0.0.1:1566         127.0.0.1:1542         ESTABLISHED

  TCP    127.0.0.1:28176        127.0.0.1:1542         ESTABLISHED

  TCP    127.0.0.1:28385        127.0.0.1:1542         ESTABLISHED

  TCP    127.0.0.1:48485        127.0.0.1:48486        ESTABLISHED

  TCP    127.0.0.1:48486        127.0.0.1:48485        ESTABLISHED

  TCP    127.0.0.1:51495        127.0.0.1:7467         SYN_SENT

  TCP    127.0.0.1:54458        127.0.0.1:1542         ESTABLISHED

  TCP    [::1]:1569             [::1]:28171            ESTABLISHED

  TCP    [::1]:28171            [::1]:1569             ESTABLISHED

  TCP    [fe80::d8ac:2c6c:9cb1:a100%10]:80  [fe80::d8ac:2c6c:9cb1:a100%10]:51364  ESTABLISHED

  TCP    [fe80::d8ac:2c6c:9cb1:a100%10]:51364  [fe80::d8ac:2c6c:9cb1:a100%10]:80  ESTABLISHED



C:\Users\admin>





C:\Users\admin>netstat -o



Active Connections



  Proto  Local Address          Foreign Address        State           PID

  TCP    127.0.0.1:1542         www:1563               ESTABLISHED     3312

  TCP    127.0.0.1:1542         www:1564               ESTABLISHED     3312

  TCP    127.0.0.1:1542         www:1566               ESTABLISHED     3312

  TCP    127.0.0.1:1542         www:28176              ESTABLISHED     3312

  TCP    127.0.0.1:1542         www:28385              ESTABLISHED     3312

  TCP    127.0.0.1:1542         www:54458              ESTABLISHED     3312

  TCP    127.0.0.1:1561         www:1562               ESTABLISHED     3604

  TCP    127.0.0.1:1562         www:1561               ESTABLISHED     3604

  TCP    127.0.0.1:1563         www:1542               ESTABLISHED     3604

  TCP    127.0.0.1:1564         www:1542               ESTABLISHED     3604

  TCP    127.0.0.1:1566         www:1542               ESTABLISHED     3604

  TCP    127.0.0.1:28176        www:1542               ESTABLISHED     3604

  TCP    127.0.0.1:28385        www:1542               ESTABLISHED     3604

  TCP    127.0.0.1:48485        www:48486              ESTABLISHED     4092

  TCP    127.0.0.1:48486        www:48485              ESTABLISHED     4092

  TCP    127.0.0.1:51531        www:7467               SYN_SENT        2956

  TCP    127.0.0.1:54458        www:1542               ESTABLISHED     3604

  TCP    [::1]:1569             www:28171              ESTABLISHED     3604

  TCP    [::1]:28171            www:1569               ESTABLISHED     6976

  TCP    [fe80::d8ac:2c6c:9cb1:a100%10]:80  www:51364              ESTABLISHED     4

  TCP    [fe80::d8ac:2c6c:9cb1:a100%10]:51364  www:http               ESTABLISHED     12932



C:\Users\admin>



















C:\Users\admin>netstat -p tcp



Active Connections



  Proto  Local Address          Foreign Address        State

  TCP    127.0.0.1:1542         www:1563               ESTABLISHED

  TCP    127.0.0.1:1542         www:1564               ESTABLISHED

  TCP    127.0.0.1:1542         www:1566               ESTABLISHED

  TCP    127.0.0.1:1542         www:28176              ESTABLISHED

  TCP    127.0.0.1:1542         www:28385              ESTABLISHED

  TCP    127.0.0.1:1542         www:54458              ESTABLISHED

  TCP    127.0.0.1:1561         www:1562               ESTABLISHED

  TCP    127.0.0.1:1562         www:1561               ESTABLISHED

  TCP    127.0.0.1:1563         www:1542               ESTABLISHED

  TCP    127.0.0.1:1564         www:1542               ESTABLISHED

  TCP    127.0.0.1:1566         www:1542               ESTABLISHED

  TCP    127.0.0.1:28176        www:1542               ESTABLISHED

  TCP    127.0.0.1:28385        www:1542               ESTABLISHED

  TCP    127.0.0.1:48485        www:48486              ESTABLISHED

  TCP    127.0.0.1:48486        www:48485              ESTABLISHED

  TCP    127.0.0.1:51687        www:7467               SYN_SENT

  TCP    127.0.0.1:54458        www:1542               ESTABLISHED



C:\Users\admin>netstat -p udp



Active Connections



  Proto  Local Address          Foreign Address        State



C:\Users\admin>netstat -p ip



Active Connections



  Proto  Local Address          Foreign Address        State



C:\Users\admin>netstat -p tcpv6



Active Connections



  Proto  Local Address          Foreign Address        State

  TCP    [::1]:1569             www:28171              ESTABLISHED

  TCP    [::1]:28171            www:1569               ESTABLISHED







C:\Users\admin>netstat -p udpv6



Active Connections



  Proto  Local Address          Foreign Address        State



C:\Users\admin>











C:\Users\admin>netstat -r

===========================================================================

Interface List

 25...b8 88 e3 91 92 ee ......Qualcomm Atheros AR8162/8166/8168 PCI-E Fast Ethernet Controller (NDIS 6.30)

 28...c0 14 3d cf 04 89 ......Broadcom 802.11n Network Adapter

  6...c2 14 3d cf 04 89 ......Microsoft Wi-Fi Direct Virtual Adapter

 31...c0 14 3d cf 04 89 ......Microsoft Hosted Network Virtual Adapter

 10...02 60 3e f7 9b 01 ......BlackBerry Virtual Private Network

 21...00 ff 90 04 a3 88 ......TeamViewer VPN Adapter

  1...........................Software Loopback Interface 1

 24...00 00 00 00 00 00 00 e0 Microsoft ISATAP Adapter

 11...00 00 00 00 00 00 00 e0 Microsoft Teredo Tunneling Adapter

===========================================================================



IPv4 Route Table

===========================================================================

Active Routes:

Network Destination        Netmask          Gateway       Interface  Metric

        127.0.0.0        255.0.0.0         On-link         127.0.0.1    306

        127.0.0.1  255.255.255.255         On-link         127.0.0.1    306

  127.255.255.255  255.255.255.255         On-link         127.0.0.1    306

      169.254.0.0      255.255.0.0         On-link     169.254.161.0    261

    169.254.161.0  255.255.255.255         On-link     169.254.161.0    261

  169.254.255.255  255.255.255.255         On-link     169.254.161.0    261

        224.0.0.0        240.0.0.0         On-link         127.0.0.1    306

        224.0.0.0        240.0.0.0         On-link     169.254.161.0    261

  255.255.255.255  255.255.255.255         On-link         127.0.0.1    306

  255.255.255.255  255.255.255.255         On-link     169.254.161.0    261

===========================================================================

Persistent Routes:

  None



IPv6 Route Table

===========================================================================

Active Routes:

 If Metric Network Destination      Gateway

  1    306 ::1/128                  On-link

 10    261 fd00::/8                 On-link

 10    261 fd1e:b8de:ef51:e332:a665:e8ea:9594:5322/128

                                    On-link

 10    261 fe80::/64                On-link

 10    261 fe80::d8ac:2c6c:9cb1:a100/128

                                    On-link

  1    306 ff00::/8                 On-link

 10    261 ff00::/8                 On-link

===========================================================================

Persistent Routes:

  None



C:\Users\admin>





C:\Users\admin>netstat -s



IPv4 Statistics



  Packets Received                   = 2832005

  Received Header Errors             = 0

  Received Address Errors            = 1237588

  Datagrams Forwarded                = 15967

  Unknown Protocols Received         = 1

  Received Packets Discarded         = 209408

  Received Packets Delivered         = 2069451

  Output Requests                    = 1377266

  Routing Discards                   = 0

  Discarded Output Packets           = 7125

  Output Packet No Route             = 293

  Reassembly Required                = 0

  Reassembly Successful              = 0

  Reassembly Failures                = 0

  Datagrams Successfully Fragmented  = 0

  Datagrams Failing Fragmentation    = 0

  Fragments Created                  = 0



IPv6 Statistics



  Packets Received                   = 214942

  Received Header Errors             = 0

  Received Address Errors            = 309

  Datagrams Forwarded                = 0

  Unknown Protocols Received         = 0

  Received Packets Discarded         = 11840

  Received Packets Delivered         = 222364

  Output Requests                    = 36097

  Routing Discards                   = 0

  Discarded Output Packets           = 108

  Output Packet No Route             = 111

  Reassembly Required                = 0

  Reassembly Successful              = 0

  Reassembly Failures                = 0

  Datagrams Successfully Fragmented  = 0

  Datagrams Failing Fragmentation    = 0

  Fragments Created                  = 0



ICMPv4 Statistics



                            Received    Sent

  Messages                  372         1110

  Errors                    0           0

  Destination Unreachable   347         785

  Time Exceeded             0           0

  Parameter Problems        0           0

  Source Quenches           0           0

  Redirects                 0           0

  Echo Replies              24          1

  Echos                     1           324

  Timestamps                0           0

  Timestamp Replies         0           0

  Address Masks             0           0

  Address Mask Replies      0           0

  Router Solicitations      0           0

  Router Advertisements     0           0



ICMPv6 Statistics



                            Received    Sent

  Messages                  442         671

  Errors                    0           0

  Destination Unreachable   39          47

  Packet Too Big            0           0

  Time Exceeded             0           0

  Parameter Problems        0           0

  Echos                     0           0

  Echo Replies              0           0

  MLD Queries               0           0

  MLD Reports               0           0

  MLD Dones                 0           0

  Router Solicitations      0           188

  Router Advertisements     68          0

  Neighbor Solicitations    142         259

  Neighbor Advertisements   193         177

  Redirects                 0           0

  Router Renumberings       0           0



TCP Statistics for IPv4



  Active Opens                        = 112835

  Passive Opens                       = 1570

  Failed Connection Attempts          = 572976

  Reset Connections                   = 2939

  Current Connections                 = 16

  Segments Received                   = 1453495

  Segments Sent                       = 1032659

  Segments Retransmitted              = 144675



TCP Statistics for IPv6



  Active Opens                        = 4308

  Passive Opens                       = 3104

  Failed Connection Attempts          = 1135

  Reset Connections                   = 5516

  Current Connections                 = 2

  Segments Received                   = 122788

  Segments Sent                       = 120622

  Segments Retransmitted              = 2274



UDP Statistics for IPv4



  Datagrams Received    = 391876

  No Ports              = 20916

  Receive Errors        = 193709

  Datagrams Sent        = 195148



UDP Statistics for IPv6



  Datagrams Received    = 221047

  No Ports              = 11355

  Receive Errors        = 486

  Datagrams Sent        = 19684



C:\Users\admin>









C:\Users\admin>netstat -t



Active Connections



  Proto  Local Address          Foreign Address        State           Offload State



  TCP    127.0.0.1:1542         www:1563               ESTABLISHED     InHost

  TCP    127.0.0.1:1542         www:1564               ESTABLISHED     InHost

  TCP    127.0.0.1:1542         www:1566               ESTABLISHED     InHost

  TCP    127.0.0.1:1542         www:28176              ESTABLISHED     InHost

  TCP    127.0.0.1:1542         www:28385              ESTABLISHED     InHost

  TCP    127.0.0.1:1542         www:54458              ESTABLISHED     InHost

  TCP    127.0.0.1:1561         www:1562               ESTABLISHED     InHost

  TCP    127.0.0.1:1562         www:1561               ESTABLISHED     InHost

  TCP    127.0.0.1:1563         www:1542               ESTABLISHED     InHost

  TCP    127.0.0.1:1564         www:1542               ESTABLISHED     InHost

  TCP    127.0.0.1:1566         www:1542               ESTABLISHED     InHost

  TCP    127.0.0.1:28176        www:1542               ESTABLISHED     InHost

  TCP    127.0.0.1:28385        www:1542               ESTABLISHED     InHost

  TCP    127.0.0.1:48485        www:48486              ESTABLISHED     InHost

  TCP    127.0.0.1:48486        www:48485              ESTABLISHED     InHost

  TCP    127.0.0.1:51928        www:7467               SYN_SENT        InHost

  TCP    127.0.0.1:54458        www:1542               ESTABLISHED     InHost

  TCP    [::1]:1569             www:28171              ESTABLISHED     InHost

  TCP    [::1]:28171            www:1569               ESTABLISHED     InHost



C:\Users\admin>





C:\Users\admin>netstat -y



Active Connections



  Proto  Local Address          Foreign Address        State           Template



TCP    127.0.0.1:1542         www:1563               ESTABLISHED        Internet

TCP    127.0.0.1:1542         www:1564               ESTABLISHED        Internet

TCP    127.0.0.1:1542         www:28176              ESTABLISHED        Internet

TCP    127.0.0.1:1542         www:28385              ESTABLISHED        Internet

TCP    127.0.0.1:1542         www:54458              ESTABLISHED        Internet

TCP    127.0.0.1:1542         www:1566               ESTABLISHED        Internet

TCP    127.0.0.1:1561         www:1562               ESTABLISHED        Internet

TCP    127.0.0.1:1562         www:1561               ESTABLISHED        Internet

TCP    127.0.0.1:1563         www:1542               ESTABLISHED        Internet

TCP    127.0.0.1:1564         www:1542               ESTABLISHED        Internet

TCP    127.0.0.1:1566         www:1542               ESTABLISHED        Internet

TCP    127.0.0.1:28176        www:1542               ESTABLISHED        Internet

TCP    127.0.0.1:28385        www:1542               ESTABLISHED        Internet

TCP    127.0.0.1:48485        www:48486              ESTABLISHED        Internet

TCP    127.0.0.1:48486        www:48485              ESTABLISHED        Internet

TCP    127.0.0.1:51959        www:7467               SYN_SENT           Internet

TCP    127.0.0.1:54458        www:1542               ESTABLISHED        Internet



C:\Users\admin>