Posts

Showing posts from May 5, 2011

Linux Checking connected Ip Address and How many Connection

netstat -ntu | grep ':' | awk '{print $5}' | sed 's/::ffff://' | cut -f1 -d ':' | sort | uniq -c | sort -nr This command will check what Ip Addresses are connected to the machine and how many connection. This was a code used in dosdeflate an anti ddos program written for linux. Check google for dosdeflate.

You need Meta Tags, Always Use Them

After the title you need to edit the html (geez edit the html im a noob!) yes you are but you need this to do things very easy just backup the file. In the design tab click edit html below is my html <head>     <meta content='Title of your blog' name='title'/>      <meta content='IE=EmulateIE7' http-equiv='X-UA-Compatible'/>     <b:if cond='data:blog.isMobile'>       <meta content='width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0' name='viewport'/>     <b:else/>       <meta content='width=1100' name='viewport'/>     </b:if>     <b:include data='blog' name='all-head-content'/>     <title><data:blog.pageTitle/></title>    <meta content='the description of your site' name='description'/>     <meta content='keyword keyword keyword' name='keywords'/> <m

Check for open ports on computer

1. Linux         Create a file on console steps below --------------------------- $ nano portscan.sh -------------------------------- #!/bin/bash nmap -sS -O ip.address.off.the.server Save the file $chmod 777 portscan.sh ------------------------------------------------------------------ Basically you can just run the command much simpler $ nmap -sS -O ip.address.off.the.server It will output PORT     STATE SERVICE 22/tcp   open  ssh 80/tcp   open  http 443/tcp  open  https 1241/tcp open  nessus ----------------------------------------------------------------- --- the scanning is for open ports since all ports are closed in linux --- in windows create a batch file c:\>copy con portscan.bat paste inside:         netstat -a | find "LISTENING" save the file -- NOTE THIS IS if you are inside the machine ---