Re: [put-up-or-shut-up conference] let's do it?

21Nov2008 (UTC +8)

On 11/21/08, Michael Mondragon <1nb0x@...> wrote:
[..]
> Pero sana gawin natin weekends.

Yup, that's the general consensus. Working class folks tayo eh. It's
ideally on Saturday afternoons. Next one is about Dec 28 or
thereabout, and then a couple of days later... hopefully three
sessions during the long Christmas break.

We don't have a next venue yet though. Any volunteers out there? ;)
Puwede din inside a school campus, like UST, UP or something. Or a
public park in Makati.

Drexx Laggui  -- CISA, CISSP, CFE Associate, ISO27001 LA, CCSI, CSA
http://www.laggui.com  ( Singapore / Manila / California )
Computer forensics; Penetration testing; QMS & ISMS developers; K-Transfer
PGP fingerprint = 6E62 A089 E3EA 1B93 BFB4  8363 FFEC 3976 FF31 8A4E
_________________________________________________
Philippine Linux Users' Group (PLUG) Mailing List
http://lists.linux.org.ph/mailman/listinfo/plug
Searchable Archives: http://archives.free.net.ph

Re: [put-up-or-shut-up conference] let's do it?

21Nov2008 (UTC +8)

On 11/21/08, joebert jacaba <joebertj@...> wrote:
[...]
>  Next meeting would be after Christmas. Right Drexx?

Right on dude :)  Y'all pick up quick, and that's the company I'd like
to hang out with! We'll do this PUOSU Con about once a month.

Natawa nga ako sa iyo eh, tinamad kang mag cut-and-paste sa
msfconsole, kaya ka nag-grep at msfcli... you threw everything at
$TARGET in a span of a few seconds then just waited for a shell !!! Ha
ha ha!!! Tapos, binato mo din ng "Kill Bill" kaya nag-reboot, at
na-logout kaming lahat tuloy :D

Body count?
Jumbz's MS Windows 2003(?) Server and Domain Controller was penetrated
by Sujiro, while everybody took down the pathetic MS Windows 2000
Server with IIS. Joebert and Philip remote-controlled MS Win XP SP2,
and even had fun with me wrestling for control of the mouse pointer
and keyboard strokes.

Nagios (Linux based) remained standing, as well as OpenSolaris and
Solaris 10 x86. Asteeg talaga.

What's next?
It was a great initial skirmish. And to think that's only an
introduction for real infosec wargaming.

Sujiro was chosen by the <shift>RAND of my scientific calculator to
(Continue reading)

joebert jacaba | 21 Nov 07:55

Re: [put-up-or-shut-up conference] let's do it?

Oh yes I remember. I was playing on backtrack last night and that
seemed to stick.

On Fri, Nov 21, 2008 at 12:53 PM, Jumbz Tayamen
<jumbzdbombz@...> wrote:
> it's always nice to associate a face to the name. =)
>
> i wasnt on backtrack, i was on Fedora that had problems with ruby.
>
_________________________________________________
Philippine Linux Users' Group (PLUG) Mailing List
http://lists.linux.org.ph/mailman/listinfo/plug
Searchable Archives: http://archives.free.net.ph

Carlos Yu | 19 Nov 09:37

Re: Mobile Computing - Best Linux filesystem configuration

Hi Eric,

Good idea!  I think I have a spare SSD in my eePC.  I'll see if I can 
install the OS on the SSD and the songs/movies etc.. on the HDD.  Thanks.

eric rosel wrote:
> Hi Carlos,
>
> ...maybe replace the Toshiba laptop drive with a SSD?
> http://www.storagesearch.com/ssd-buyers-guide.html
>
> HTH,
> -eric
>
>   

_________________________________________________
Philippine Linux Users' Group (PLUG) Mailing List
http://lists.linux.org.ph/mailman/listinfo/plug
Searchable Archives: http://archives.free.net.ph

John Osena | 18 Nov 17:19
Favicon

linux bonding and then receiving martian sources in the logs

Hi All,

I have successfully set-up NIC bonding (load balanced round-robin) with the help from
http://www.cyberciti.biz/tips/linux-bond-or-team-multiple-network-interfaces-nic-into-single-interface.html
and it rocks! 

But now I'm getting lots of martian sources lines in the /var/log/messages. Here are the lines:

Nov 18 12:55:57 hostname kernel: martian source 192.168.1.11 from 192.168.1.11, on dev bond0
Nov 18 12:55:57 hostname kernel: ll header ff:ff:ff:ff:ff:ff:00:30:48:9b:26:60:08:06

Not sure what's going on here. Any help or directions will be highly appreciated.

My alternate solution is to log_martians = 0 in the sysctl.conf but I prefer to find the real solution.  

Thanks in advance.

Cheers!

 John Osena, RHCT, NCLP
Linux Registered User # 374301
Domains only P500/year at web.com.ph

_________________________________________________
Philippine Linux Users' Group (PLUG) Mailing List
http://lists.linux.org.ph/mailman/listinfo/plug
Searchable Archives: http://archives.free.net.ph

Ludwig Isaac Lim | 15 Nov 09:12
Favicon

Re: Perl Question on backticks and system() on Unix [A bit OT]


> 
> Message: 4
> Date: Sat, 15 Nov 2008 00:19:42 +0800
> From: "Sherwin Daganato" <sherwin@...>
> Subject: Re: [plug] Perl Question on backticks and system() on Unix [A
> 	bit	OT]

> 
> On Fri, Nov 14, 2008 at 6:25 PM, Ludwig Isaac Lim <ludz_lim@...>wrote:
> >
> >
> >    The following code below doesn't work:
> >    `/usr/bin/clear`;
> >
> 
> Orly is right. The output of clear(1), which is just escape sequence/s,
> will not reach the terminal because Perl will capture it. Stick with
> system() or just use print().
> 
> On my Mac and Linux, clear(1) is just the equivalent of
>     perl -e 'print "\33[H\33[2J"'
> 
> Remove "\33[H" if you don't want the cursor move to line 1 (*home*).
>

    Orly, Sherwin :  Thanks a lot!

    Sherwin, as a test (checking if control characters are the same thoughout the Unix family), I
tried running the following below on HP-UX and it worked:
(Continue reading)

Ludwig Isaac Lim | 14 Nov 11:25
Favicon

Perl Question on backticks and system() on Unix [A bit OT]


Hi:

    I'm not sure if the phenomenon occurs in Linux, but occurred in the HP-UX machine that I'm
using.

    The following code below doesn't work:
    `/usr/bin/clear`;
    if ($? != 0) {
        die "$!";
    }
    print "exit\n";

   Note:
   a) The screen doesn't clear but "die" is not executed (i.e. "exit" in printed on screen) )

    system("clear");   # This one works.

   I'm just curious why `/usr/bin/clear` or `clear` doesn't work, yet system("clear") works given
the fact that using backticks for other shell command works.

    I know this code is not portable, but portability is not an issue here =) Just curious.

    Thanks.

Regards,
Ludwig

      
_________________________________________________
(Continue reading)

Michael F. Mondragon | 14 Nov 01:17
Gravatar

Re: [put-up-or-shut-up conference] let's do it?

Hi pips,

I'm not available up until Dec. 15 due to training I'll be conducting
in India and some sort of stuff.  But if in case, I'll be proxied by
my friend (Jun) who'll bring those images instead.  He's available on
weekends.  Just post the date of the event.

Thanks,
Michael

On Thu, Nov 13, 2008 at 9:08 PM, Sujiru <xsujiru@...> wrote:
> Just waiting for your word on when it's gonna be. I'll bring a win2k sp4 standard install image created by
vmware server ver 1.0.6 (not sure about compatibility issues). I'm free on most weekends but willing to
take a day off from work to attend =)
>
> http://wehavedayjobs.blogspot.com
>
>
> --- On Thu, 11/13/08, Drexx Laggui [personal] <drexxl@...> wrote:
>
>> From: Drexx Laggui [personal] <drexxl@...>
>> Subject: Re: [plug] [put-up-or-shut-up conference] let's do it?
>> To: "Jumbz Tayamen" <jumbzdbombz@...>, "Michael F.
Mondragon" <iam@...>, "Jefrey Cayab"
<jeffreyecayab@...>, "joebert jacaba"
<joebertj@...>, "Salvador III Manaois."
<badzmanaois@...>, "Sujiru" <xsujiru@...>
>> Date: Thursday, November 13, 2008, 9:07 AM
>> 13Nov2008 (UTC +8)
>>
(Continue reading)

Danny Ching | 14 Nov 00:28
Gravatar

Office Live and MS Office 14 on LINUX

Not only will Office live work on multiple platforms

(somewhere down the article)....
MS Office 14 will run on LINUX!? I think Hell just froze over. hehehe

http://www.computerworld.com/action/article.do?command=viewArticleBasic&articleId=9120143


Whadya think people?
--
Regards,
Danny Ching

_________________________________________________
Philippine Linux Users' Group (PLUG) Mailing List
http://lists.linux.org.ph/mailman/listinfo/plug
Searchable Archives: http://archives.free.net.ph
plug bert | 12 Nov 05:35
Favicon

strange network problem

Hello All,

   i've been getting some strange problems from our ISP lately. We were given a set of ip addresses along with
our subscription, and we've used one to set up a VPN going to our remote office.

   Right now i'm getting 1- 1.2second ping times; based on the traceroute results, we're getting 100-120ms
ping times going to the intermediate routers, but are getting 1 second ping times to our remote office.

  The odd thing is that our remote office reports no problems pinging our immediate gateway, but they're also
getting 1 second ping times pinging our vpn server. 

   Any ideas on what the problem might be? My guess is that there could be some bandwidth/traffic control
settings that may be messing up the connection.

tia

      
_________________________________________________
Philippine Linux Users' Group (PLUG) Mailing List
http://lists.linux.org.ph/mailman/listinfo/plug
Searchable Archives: http://archives.free.net.ph

Marvin Pascual | 12 Nov 02:18

Introduction to Free Software

A first book has been published by the SELF Project. "Introduction to
Free Software" has been produced together with the Universitat Oberta
de Catalunya (UOC) with a number of recognised authors on the subjects
of Free Software. The book provides an introduction to the inspiring
world of Free Software, covering its main concepts, some of the most
successful free software projects, the specifics of their development
and the legal basis that free software licenses provide for the
protection of users' freedoms. It also contains a large directory of
glossary, bibliography and links to help the reader explore deeper
into this field.

For more info, please visit the website at http://tinyurl.com/6f8xuo

Regards,

Marvin
_________________________________________________
Philippine Linux Users' Group (PLUG) Mailing List
http://lists.linux.org.ph/mailman/listinfo/plug
Searchable Archives: http://archives.free.net.ph


Gmane