Skip to main content

IPtables, SVN, and NMAP

I reviewed some material on IPtables, SVN, and NMAP just for the sake of keeping my mind busy. Here are some useful notes:

  1. IPtables - best resource found at HERE
  2. SVN - best, as in the quickest and simplest intro could be found HERE
  3. NMAP - I honestly don't see in using it for more than port-scanning in a few instances. Anyway, here are a few other options that might come in handy at some point.
nmap -sT/sS/sX/sF/...[-P0] IPADDRESS(range) == to check which ports are open
nmap -sP IPADDRESS(range) == a simple ping scan for availability
nmap -sO IPADDRESS(range) == check what IP protocols are available
nmap -sV IPADDRESS(range) == a scan with version detection
Other useful flags:
-O
== detects OS, part of -v (verbosity) flag as well
-A == detects OS and versions
-v == request high verbosity/detail
-F == performs a fast scan of only a few common ports

Installing Perl modules

Perl modules may be installed using the CPAN module or from source.
SOURCE

From CPAN

perl -MCPAN -e shell (to get an interactive CPAN shell)
perl -MCPAN -e 'install Time::JulianDay' (if you know the name of the module, you can install it directly without interacting with the CPAN shell)

Typing just perl -MCPAN -e 'install PerlMol', I managed to install the PerlMol module from scratch.

Manual installation

1. Download the Perl module from CPAN or other site.
2. Extract the tarball.
3. Run perl Makefile.PL
4. Run make
5. Run make test
6. Run make install

Checking for existence of a Perl module

perl -e 'use module' checks if the module is installed.

For example, I checked if I have the Trig module by typing this prompt:
perl -e 'use Math::Trig'

Comments

Popular posts from this blog

Correlation Between Taxes and Social/Economic Programs

I have always wondered if the taxes people pay correlate with the availability of social and economic programs and safety nets, not to mention the military programs that protect them. This idea comes in light of the notion that Europeans are highly taxed compared to their American counterparts, but they seem to have access to free (or almost free) education and health care while the US provides neither. The Europeans live and work at a more leisurely pace than Americans and they have the comfort of knowing that their government has put safety nets in case a disaster. The Europeans do a lot to ensure that all their citizens have comparable opportunities, and thus you are less likely to see a huge gap between the poor and the rich. Perhaps the lack of incentive to excel has stifled entrepreneurship and innovation in Europe to some extent. In fact, Europe has historically high unemployment rates than the US and the size of government there is significantly larger than that of the US....

Obama, McCain and Campaign Financing

Obama and McCain had at one point both agreed to take public financing in September 2007 if they were their respective party's nominee. At the time, they were both long shots to get their party's nomination, but oddly enough they have both made it to the general election. As for their promise to take public financing, McCain decided to keep his promise while Obama opted to finance his campaign through his own fundraising. In doing so, he became the first ever presidential candidate to forego public financing during the general election. In February 2008, McCain started criticizing Obama for not keeping his promise to take public financing. How legitimate are McCain's accusations? That's what I wanted to discuss. According to The New York Times campaign finance page , Obama and McCain raised $401m and ~$150m, respectively, prior to earning their party's nomination. The public financing package is $84m over two months (Sept-Nov). For McCain, whose averaged $7....

Plea to Barack on Foreign Aid

Barack Obama has been my candidate of choice from the beginning. I have outlined a few of the reasons I support him . One I didn't mention is the issue of foreign aid. As I discussed earlier, US government's foreign aid as a % of its GDP is one of the lowest for any developed nation. Economic Aid to Developing Countries - The Stats To make it worse, much of the aid is given to two sources: Military and economic aid to Israel and Egypt to keep some peace in the Middle East Colombia, Peru and Bolivia to fight drug The tiny bit that is left goes to countries where the US has foreign policy interests. The aid is used for political leverage. Here is where Barack Obama comes into the picture. He has said that diplomacy and restoration of American image in the world would be the pillars of his foreign policy. One way to improve America's image in the world is to provide more foreign aid, particularly one that is not directly used for political leveraging. Obama promised ...