RE: HackFest Linux Security Series: Happy Valentines Day - How to Create a Linux Virus in Five Minutes "Required Reading for the Enlightened MailLister"

2009-02-14 Thread Lisa Kachold
Click on this attachment and save it to your desktop and we can test if this works?Just kidding! But if you are game, let me know and we can actually prove it with a lab?obnosis.com | wiki.obnosis.com| (503)754-4452PLUG HACKFESTS 2nd Saturday Each mo...@noon - 3PM> Subject: Re: HackFest Linux

RE: HackFest Linux Security Series: Happy Valentines Day - How to Create a Linux Virus in Five Minutes "Required Reading for the Enlightened MailLister"

2009-02-14 Thread Lisa Kachold
Don't need to run as root, you are a sudoer? All one needs to do it run it from the desktop in KDE or Gnome and it will happily prompt you for access!obnosis.com | wiki.obnosis.com| (503)754-4452PLUG HACKFESTS 2nd Saturday Each mo...@noon - 3PM> Date: Fri, 13 Feb 2009 22:53:16 -0700> Subject:

HackFest Today Room 107 at UAT.edu

2009-02-14 Thread Lisa Kachold
The shiny new UAT HackFest (InstallFest) lab room #107 includes bootable workstations, power and networking!Show up today (bring your LiveCD's) and help me check it out!Open Presentation format - Loosely called Patch Procrastinators Recovery Group!Noon - 3PM!obnosis.com | wiki.obnosis.com| (503

Re: HackFest Today Room 107 at UAT.edu

2009-02-14 Thread mike havens
I sure wish I could be there! On Sat, Feb 14, 2009 at 12:12 PM, Lisa Kachold wrote: > The shiny new UAT HackFest (InstallFest) lab room #107 includes bootable > workstations, power and networking! > Show up today (bring your LiveCD's) and help me check it out! > > > Open Presentation format - Lo

.cpp linking problem

2009-02-14 Thread unixprgrm...@gmail.com
I am trying to link library xy.a composed of x.o containing function x() and y.o containing function y() with d.o giving executable d I call both x() and y() from d.cpp. When I comment out the function call to y() in d.cpp it links just fine with library xy.a giving executable d BUT when I uncomm

Access Control Lists

2009-02-14 Thread Tameek Henderson
Hey gang, I'm trying to set an access control on a file but I keep receiving an error that the operation is not supported. Here is the command I give: $setfacl -m u:linux77:rwx file.txt Here is the exact error: Setfacl: file.txt: Operation not supported Help! :-p Tameek Henderson 646.42

Re: .cpp linking problem

2009-02-14 Thread Jon M. Hanson
It sounds like you're getting the same header file included multiple times. If you look at the system header files you will see something like the following: #ifndef _STDIO_H #define _STDIO_H [Header file code here] #endif So the first time stdio.h is included the header file code will be

Re: Access Control Lists

2009-02-14 Thread Alan Dayley
On Sat, Feb 14, 2009 at 8:03 PM, Tameek Henderson wrote: > Hey gang, > > I'm trying to set an access control on a file but I keep receiving an error > that the operation is not supported. Here is the command I give: > > $setfacl -m u:linux77:rwx file.txt > > Here is the exact error: > > Setfacl:

Re: Access Control Lists

2009-02-14 Thread Tameek Henderson
Nope, it's definitly ext3 on Ubuntu which supports ACL by default. --Original Message-- From: Alan Dayley To: tameekhender...@gmail.com To: plug-discuss@lists.plug.phoenix.az.us Sent: Feb 14, 2009 8:19 PM Subject: Re: Access Control Lists On Sat, Feb 14, 2009 at 8:03 PM, Tameek Hender

RE: Access Control Lists

2009-02-14 Thread Bob Elzer
I'm not sure since I don't use ACL's but the manual say it should be the UID not the name of the user (linux77). -Original Message- From: plug-discuss-boun...@lists.plug.phoenix.az.us [mailto:plug-discuss-boun...@lists.plug.phoenix.az.us] On Behalf Of Tameek Henderson Sent: Saturday, Feb

Re: Access Control Lists

2009-02-14 Thread Tameek Henderson
I tried it with the UID and still no dice. Hmmm... --Original Message-- From: Bob Elzer To: tameekhender...@gmail.com To: plug-discuss@lists.plug.phoenix.az.us Sent: Feb 14, 2009 8:32 PM Subject: RE: Access Control Lists I'm not sure since I don't use ACL's but the manual say it shou

Re: Access Control Lists

2009-02-14 Thread Jason
Since it's Ubuntu, have you tried running it as sudo? $sudo setfacl -m u:linux77:rwx file.txt On Sun, 2009-02-15 at 03:42 +, Tameek Henderson wrote: > I tried it with the UID and still no dice. Hmmm... > > > > > > --Original Message-- > From: Bob Elzer > To: tameekhender...@gmai

Re: Access Control Lists

2009-02-14 Thread Jason
I tried the same thing and got the same results as you. So, that's not it at all. Then I did a search... http://www.linuxquestions.org/questions/mandriva-30/setfacl-test-operation-not-supported-266804/ Notice that you may need to mount the filesystem with acl support. On Sat, 2009-02-14 at 2

Re: Access Control Lists

2009-02-14 Thread koder
Add this link as well, it is specific to Ubuntu 8.04 and contains a caution about acl usage under Ubuntu: http://beginlinux.com/server_training/server-managment-topics/1038-ubuntu-804-access-control-lists I tried the same thing and got the same results as you. So, that's not it at all. Then

Re: Access Control Lists

2009-02-14 Thread Tameek Henderson
Ok that did it! I had to edit my /etc/fstab file and acl to the file system options then remount. Thanks guys! Tameek Henderson 646.427.3205 http://www.linkedin.com/pub/5/116/522 Sent via BlackBerry from T-Mobile -Original Message- From: Jason Date: Sat, 14 Feb 2009 21:26:46 T

Re: .cpp linking problem

2009-02-14 Thread Joseph Sinclair
It's hard to troubleshoot the exact problem without code, but this most often happens when a variable is declared *and* defined directly in a .h file. The solution, usually, is to *declare* the variable as "extern type blah;" in the include file and *define* the variable in one .c file as "type b