Sep 292011
 

A new Humble Indie Bundle is started yesterday, a great and new opportunity to know and buy new indie game for a cheap price.

This time the offer it’s a bit different from the former edition, there is just 1 videogame in the main bundle: Frozen Synapse, but If you beat the promotion average you will also get the Humble Frozenbyte Bundle which includes the games Trine, Shadowgrounds Survivor, Shadowgrounds, the game prototype Jack Claw and a preorder for Splot which is currently in development.

As of writing, that means you’ll have to part with $4.51 to get Trine, Shadowgrounds, Shadowgrounds: Survivor, Splot and Jack Claw — a fair deal considering Frozen Synapse alone usually cost around $25 on Steam.

Continue reading »

Flattr this!

Sep 192011
 

Article by James Hawkins

This is the second part of our guide on Nmap, you can find the first part here, in this part of the tutorial we’ll see other configurations that you can use with Nmap to avoid firewalls or debug the information obtained.
Continue reading »

Flattr this!

Sep 182011
 

trisquelYesterday has been released the version 5.0 of Trisquel, an Ubuntu based GNU/Linux Distribution.
In their announcement:

In what we can now call it a tradition, we celebrate the Software Freedom Day by publishing our latest release: Trisquel GNU/Linux 5.0 STS, codename Dagda.

Continue reading »

Flattr this!

Sep 162011
 

Article by James Hawkins

As we all know, Nmap (Network Mapper) is a stealth port scanner widely used by network security experts (including forensics & Pen-testing Experts). In this article we’ll see the different types of Nmap Scans, its techniques, understanding the purpose and goals of each scan , its advantages or disadvantages over other scanning tools, which could be better at evading firewalls & IDS (To a certain extent) and much more. In this first part, I have made my best to explain the basic scanning techniques, Host discovery options, port scanning options, techniques used in detecting Operating system & services running on the system.
i also give Nmap as already installed on your system.
Continue reading »

Flattr this!

Sep 142011
 

This is my personal Top 8 of worst suggestions I’ve read, took or gave to other Linux users so far, feel free to add your as comment.

Legend: Q: Question, BA: The bad answer, GA : What could have been a good answer

1) Q: I have a file i can’t read/write/execute with the user i want!

Bad: “chmod 666 file” – This makes the file editable and destroyable by anyone.
Worse: “chmod 777 file” – This makes the file editable by anyone AND sets execute permissions for anyone. This means that any user can edit the file to do something malicious for the next user to (accidentally?) execute it.
Worst: “chmod 7777 file” – Also gives setuid and setgid permission. With this you’ve just given any user permission to fubar your machine, especially if the file is owned by root.

GA: Check which user and group have permission to do the operations you need on that file, subscribe the user to that group and/or change the owner or the group of that file. Continue reading »

Flattr this!