Category Archives: Network

Solving round robin DNS name with SSH Server hosts

Howdy, Recently I had a little issue with  DNS round robin pointing to different SSH Servers ( different fingerprints ) conflicting with known_hosts file. Follow a little script I wrote to test expect. Follow the example (; ———————cut———————- #!/usr/bin/expect — puts “Which server do you want connect?” … Continue reading

Posted in Network, Tools | Tagged , , , | Comments Off on Solving round robin DNS name with SSH Server hosts

Remote Packet sniff using SSH and Wireshark to analysis

Hello there ! In this brief tutorial, I will show how capture remote traffic through ssh and analysis with wireshark. the basic to do this is: $ mkfifo /tmp/remoteif $ ssh root@yourserver “tcpdump -ni pflog0 -w – host 10.20.30.40” > … Continue reading

Posted in Network | Tagged , , , | Leave a comment

simple statefull firewall with iptables

Today, I was very very nervous ! Believe ! I’m ! So, I decided paste this simple script that I did a long time ago, but BELIEVE ! WORK and  is EFFECTIVE ! Brief resume, of why I’m posting this … Continue reading

Posted in Network | Tagged , | Leave a comment

Things to do with SSH

From Wikipedia: Secure Shell (SSH) is a network protocol for secure data communication, remote shell services or command execution and other secure network services between two networked computers that it connects via a secure channel over an insecure network: a … Continue reading

Posted in Information, Network | Tagged , , , | Leave a comment

BACKTRACK-LINUX ON MOTOROLA ATRIX 4G

Hello there, Last week, I bought an Atrix 4g and I would wanted run bt5 arm. Now I’m here, writing a little tutorial to do this. Basically it is easy, but need some tricks. Let’s go … First, if you … Continue reading

Posted in Network, Tools | Tagged , , , , | Leave a comment

How to block TOR Network with OpenBSD and PF

1 – Fetch tor master nodes ( Used for tor clients fetch exit node list ) * Trick viewed on Network Security Hacks – #hack 53 Download tor source: and edit the following file. mybox@knights ~/tor-0.2.1.26 $ vi src/or/config.c look … Continue reading

Posted in Network, OpenBSD | Tagged , , | Leave a comment

Configuring WPAD under OpenBSD

Hello there, First of all, what is wpad ? WPAD is acronym to Web Proxy Autodiscovey Protocol, it is reponsible for automatic detecting of proxy under web browsers. I will assume that you know OpenBSD, know configure a basic DHCP … Continue reading

Posted in Network, OpenBSD | Tagged , , , | Leave a comment

Stay Anonymous

Proxychains is a beautiful tool that permit you use more of two proxy to connect on target. This tool can be founded at: http://proxychains.sourceforge.net Can be installed on gentoo using : # emerge proxychains Debian based distros # apt-get install … Continue reading

Posted in Network, Tools | Tagged , , | Leave a comment

Capture Packets at Cisco IOS

Cisco IOS routers have built in sniffer. It is called EPC ( Embedded Packet Capture ). The capture is store using PCAP format ( Tcpdump format ). so after capture you can analyze the packet with Wireshark, can submit file … Continue reading

Posted in Network | Tagged , , | Leave a comment

Testing Network with Iperf

Iperf is an traffic generator. It is distributed under BSD License . Iperf has a client and server functionality, and can measure the throughput between the two ends, either unidirectonally or bi-directionally. It is open source software and runs on … Continue reading

Posted in Network, Tools | Tagged , , , , , | Leave a comment